This issue track the API proposal for editor insets. The current proposal is this
|
export interface WebviewEditorInset { |
|
readonly editor: TextEditor; |
|
readonly line: number; |
|
readonly height: number; |
|
readonly webview: Webview; |
|
readonly onDidDispose: Event<void>; |
|
dispose(): void; |
|
} |
|
|
|
export namespace window { |
|
export function createWebviewTextEditorInset(editor: TextEditor, line: number, height: number, options?: WebviewOptions): WebviewEditorInset; |
|
} |
|
|
This issue track the API proposal for editor insets. The current proposal is this
vscode/src/vs/vscode.proposed.d.ts
Lines 135 to 147 in ffe3749