|
67 | 67 | "onCommand:python.viewOutput", |
68 | 68 | "onCommand:python.execSelectionInTerminal", |
69 | 69 | "onCommand:python.execSelectionInDjangoShell", |
70 | | - "onCommand:python.buildWorkspaceSymbols", |
71 | 70 | "onCommand:python.startREPL", |
72 | 71 | "onCommand:python.goToPythonObject", |
73 | 72 | "onCommand:python.reportIssue", |
|
308 | 307 | "command": "python.analysis.restartLanguageServer", |
309 | 308 | "title": "%python.command.python.analysis.restartLanguageServer.title%" |
310 | 309 | }, |
311 | | - { |
312 | | - "category": "Python", |
313 | | - "command": "python.buildWorkspaceSymbols", |
314 | | - "title": "%python.command.python.buildWorkspaceSymbols.title%" |
315 | | - }, |
316 | 310 | { |
317 | 311 | "category": "Python", |
318 | 312 | "command": "python.clearPersistentStorage", |
|
380 | 374 | "command": "python.launchTensorBoard", |
381 | 375 | "title": "%python.command.python.launchTensorBoard.title%" |
382 | 376 | }, |
383 | | - { |
384 | | - "category": "Python Refactor", |
385 | | - "command": "python.refactorExtractMethod", |
386 | | - "title": "%python.command.python.refactorExtractMethod.title%" |
387 | | - }, |
388 | | - { |
389 | | - "category": "Python Refactor", |
390 | | - "command": "python.refactorExtractVariable", |
391 | | - "title": "%python.command.python.refactorExtractVariable.title%" |
392 | | - }, |
393 | 377 | { |
394 | 378 | "category": "Python", |
395 | 379 | "command": "python.refreshTensorBoard", |
|
1275 | 1259 | "description": "Path to folder with a list of Virtual Environments (e.g. ~/.pyenv, ~/Envs, ~/.virtualenvs).", |
1276 | 1260 | "scope": "machine", |
1277 | 1261 | "type": "string" |
1278 | | - }, |
1279 | | - "python.workspaceSymbols.ctagsPath": { |
1280 | | - "default": "ctags", |
1281 | | - "description": "Fully qualified path to the ctags executable (else leave as ctags, assuming it is in current path).", |
1282 | | - "scope": "resource", |
1283 | | - "type": "string" |
1284 | | - }, |
1285 | | - "python.workspaceSymbols.enabled": { |
1286 | | - "default": false, |
1287 | | - "description": "Set to 'true' to enable ctags to provide Workspace Symbols.", |
1288 | | - "scope": "resource", |
1289 | | - "type": "boolean" |
1290 | | - }, |
1291 | | - "python.workspaceSymbols.exclusionPatterns": { |
1292 | | - "default": [ |
1293 | | - "**/site-packages/**" |
1294 | | - ], |
1295 | | - "description": "Pattern used to exclude files and folders from ctags See http://ctags.sourceforge.net/ctags.html.", |
1296 | | - "items": { |
1297 | | - "type": "string" |
1298 | | - }, |
1299 | | - "scope": "resource", |
1300 | | - "type": "array" |
1301 | | - }, |
1302 | | - "python.workspaceSymbols.rebuildOnFileSave": { |
1303 | | - "default": true, |
1304 | | - "description": "Whether to re-build the tags file on when changes made to python files are saved.", |
1305 | | - "scope": "resource", |
1306 | | - "type": "boolean" |
1307 | | - }, |
1308 | | - "python.workspaceSymbols.rebuildOnStart": { |
1309 | | - "default": true, |
1310 | | - "description": "Whether to re-build the tags file on start (defaults to true).", |
1311 | | - "scope": "resource", |
1312 | | - "type": "boolean" |
1313 | | - }, |
1314 | | - "python.workspaceSymbols.tagFilePath": { |
1315 | | - "default": "${workspaceFolder}/.vscode/tags", |
1316 | | - "description": "Fully qualified path to tag file (exuberant ctag file), used to provide workspace symbols.", |
1317 | | - "scope": "resource", |
1318 | | - "type": "string" |
1319 | 1262 | } |
1320 | 1263 | }, |
1321 | 1264 | "title": "Python", |
|
1826 | 1769 | "group": "Python", |
1827 | 1770 | "when": "editorFocus && editorLangId == python" |
1828 | 1771 | }, |
1829 | | - { |
1830 | | - "command": "python.refactorExtractMethod", |
1831 | | - "group": "Refactor", |
1832 | | - "title": "Refactor: Extract Method", |
1833 | | - "when": "editorHasSelection && editorLangId == python && !notebookEditorFocused" |
1834 | | - }, |
1835 | | - { |
1836 | | - "command": "python.refactorExtractVariable", |
1837 | | - "group": "Refactor", |
1838 | | - "title": "Refactor: Extract Variable", |
1839 | | - "when": "editorHasSelection && editorLangId == python && !notebookEditorFocused" |
1840 | | - }, |
1841 | 1772 | { |
1842 | 1773 | "command": "python.sortImports", |
1843 | 1774 | "group": "Refactor", |
|
0 commit comments