mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-24 18:49:00 +01:00
Hook up prototype paste with imports for JS/TS (#204665)
* Hook up prototype paste with imports for JS/TS For https://github.com/microsoft/TypeScript/pull/57262 but with proposed changes to ts protocol * Support new api * Update
This commit is contained in:
@@ -13,7 +13,8 @@
|
||||
"multiDocumentHighlightProvider",
|
||||
"mappedEditsProvider",
|
||||
"codeActionAI",
|
||||
"codeActionRanges"
|
||||
"codeActionRanges",
|
||||
"documentPaste"
|
||||
],
|
||||
"capabilities": {
|
||||
"virtualWorkspaces": {
|
||||
@@ -1316,6 +1317,20 @@
|
||||
"default": true,
|
||||
"markdownDescription": "%typescript.workspaceSymbols.excludeLibrarySymbols%",
|
||||
"scope": "window"
|
||||
},
|
||||
"javascript.experimental.updateImportsOnPaste": {
|
||||
"scope": "resource",
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "%configuration.updateImportsOnPaste%",
|
||||
"tags": ["experimental"]
|
||||
},
|
||||
"typescript.experimental.updateImportsOnPaste": {
|
||||
"scope": "resource",
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "%configuration.updateImportsOnPaste%",
|
||||
"tags": ["experimental"]
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user