Working on sharing models for same custom editor

This commit is contained in:
Matt Bierner
2019-11-23 15:00:16 -08:00
parent b52f1c7dae
commit f3d70dbf92
5 changed files with 22 additions and 16 deletions

View File

@@ -457,7 +457,7 @@ export class ExtHostWebviews implements ExtHostWebviewsShape {
panel?._undoEdits(edits);
}
$redoEdits(handle: WebviewPanelHandle, edits: string[]): void {
$applyEdits(handle: WebviewPanelHandle, edits: string[]): void {
const panel = this.getWebviewPanel(handle);
panel?._redoEdits(edits);
}