display variables provided by extension

This commit is contained in:
aamunger
2023-11-15 10:00:12 -08:00
committed by Aaron Munger
parent c282c5a98d
commit 6f6d0a7e18
8 changed files with 56 additions and 14 deletions

View File

@@ -20,7 +20,7 @@ declare module 'vscode' {
interface NotebookVariableProvider {
onDidChangeVariables: Event<void>;
/** When variablesReference is undefined, this is requesting global Variables. When a variable is passed, it's requesting child props of that Variable. */
/** When parent is undefined, this is requesting global Variables. When a variable is passed, it's requesting child props of that Variable. */
provideVariables(notebook: NotebookDocument, parent: Variable | undefined, kind: VariablesRequestKind, start: number, token: CancellationToken): AsyncIterable<VariablesResult>;
}