Trying to hook up basic save for custom editors

This commit is contained in:
Matt Bierner
2019-11-18 11:18:12 -08:00
parent 942287eb44
commit 8bbe3157f0
8 changed files with 42 additions and 16 deletions

View File

@@ -594,6 +594,7 @@ export interface ExtHostWebviewsShape {
$resolveWebviewEditor(resource: UriComponents, newWebviewHandle: WebviewPanelHandle, viewType: string, title: string, position: EditorViewColumn, options: modes.IWebviewOptions & modes.IWebviewPanelOptions): Promise<void>;
$undoEdits(handle: WebviewPanelHandle, edits: string[]): void;
$redoEdits(handle: WebviewPanelHandle, edits: string[]): void;
$onSave(handle: WebviewPanelHandle): Promise<void>;
}
export interface MainThreadUrlsShape extends IDisposable {