某大神绝招“流出”,速看(vscode 配置快捷键)
发布于 8 年前 作者 kylezhang 4571 次浏览 来自 分享

// Place your key bindings in this file to overwrite the defaults

// Place your key bindings in this file to overwrite the defaults
[
	{ "key": "ctrl+f12",                   "command": "editor.action.goToDeclaration",
                                     "when": "editorTextFocus" },
	{ "key": "shift+space",            "command": "editor.action.triggerSuggest",
                                     "when": "editorTextFocus" },
	{ "key": "cmd+1",           "command": "workbench.view.explorer" },
	{ "key": "cmd+2",           "command": "workbench.view.search" },
	{ "key": "cmd+3",           "command": "workbench.view.git" },
	{ "key": "cmd+4",           "command": "workbench.view.debug" },
	{ "key": "f9",                   "command": "workbench.action.debug.stepOver",
                                     "when": "inDebugMode" },
	{ "key": "ctrl+g",                "command": "workbench.action.gotoLine" }
]

回到顶部