Visual studio code快捷键-命令
Posted LogiCoal
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Visual studio code快捷键-命令相关的知识,希望对你有一定的参考价值。
// 通过将键绑定放入键绑定文件中来覆盖键绑定。 [ { "key": "shift+escape", "command": "closeReferenceSearchEditor", "when": "inReferenceSearchEditor && !config.editor.stablePeek" }, { "key": "escape", "command": "closeReferenceSearchEditor", "when": "inReferenceSearchEditor && !config.editor.stablePeek" }, { "key": "shift+escape", "command": "cancelSelection", "when": "editorHasSelection && editorTextFocus" }, { "key": "escape", "command": "cancelSelection", "when": "editorHasSelection && editorTextFocus" }, { "key": "ctrl+end", "command": "cursorBottom", "when": "editorTextFocus" }, { "key": "ctrl+shift+end", "command": "cursorBottomSelect", "when": "editorTextFocus" }, { "key": "ctrl+shift+alt+down", "command": "cursorColumnSelectDown", "when": "editorTextFocus" }, { "key": "ctrl+shift+alt+left", "command": "cursorColumnSelectLeft", "when": "editorTextFocus" }, { "key": "ctrl+shift+alt+pagedown", "command": "cursorColumnSelectPageDown", "when": "editorTextFocus" }, { "key": "ctrl+shift+alt+pageup", "command": "cursorColumnSelectPageUp", "when": "editorTextFocus" }, { "key": "ctrl+shift+alt+right", "command": "cursorColumnSelectRight", "when": "editorTextFocus" }, { "key": "ctrl+shift+alt+up", "command": "cursorColumnSelectUp", "when": "editorTextFocus" }, { "key": "down", "command": "cursorDown", "when": "editorTextFocus" }, { "key": "ctrl+shift+down", "command": "cursorDownSelect", "when": "editorTextFocus" }, { "key": "shift+down", "command": "cursorDownSelect", "when": "editorTextFocus" }, { "key": "end", "command": "cursorEnd", "when": "editorTextFocus" }, { "key": "shift+end", "command": "cursorEndSelect", "when": "editorTextFocus" }, { "key": "home", "command": "cursorHome", "when": "editorTextFocus" }, { "key": "shift+home", "command": "cursorHomeSelect", "when": "editorTextFocus" }, { "key": "left", "command": "cursorLeft", "when": "editorTextFocus" }, { "key": "shift+left", "command": "cursorLeftSelect", "when": "editorTextFocus" }, { "key": "pagedown", "command": "cursorPageDown", "when": "editorTextFocus" }, { "key": "shift+pagedown", "command": "cursorPageDownSelect", "when": "editorTextFocus" }, { "key": "pageup", "command": "cursorPageUp", "when": "editorTextFocus" }, { "key": "shift+pageup", "command": "cursorPageUpSelect", "when": "editorTextFocus" }, { "key": "right", "command": "cursorRight", "when": "editorTextFocus" }, { "key": "shift+right", "command": "cursorRightSelect", "when": "editorTextFocus" }, { "key": "ctrl+home", "command": "cursorTop", "when": "editorTextFocus" }, { "key": "ctrl+shift+home", "command": "cursorTopSelect", "when": "editorTextFocus" }, { "key": "ctrl+u", "command": "cursorUndo", "when": "editorTextFocus" }, { "key": "up", "command": "cursorUp", "when": "editorTextFocus" }, { "key": "ctrl+shift+up", "command": "cursorUpSelect", "when": "editorTextFocus" }, { "key": "shift+up", "command": "cursorUpSelect", "when": "editorTextFocus" }, { "key": "ctrl+right", "command": "cursorWordEndRight", "when": "editorTextFocus" }, { "key": "ctrl+shift+right", "command": "cursorWordEndRightSelect", "when": "editorTextFocus" }, { "key": "ctrl+left", "command": "cursorWordStartLeft", "when": "editorTextFocus" }, { "key": "ctrl+shift+left", "command": "cursorWordStartLeftSelect", "when": "editorTextFocus" }, { "key": "shift+backspace", "command": "deleteLeft", "when": "editorTextFocus" }, { "key": "backspace", "command": "deleteLeft", "when": "editorTextFocus" }, { "key": "delete", "command": "deleteRight", "when": "editorTextFocus" }, { "key": "ctrl+backspace", "command": "deleteWordLeft", "when": "editorTextFocus" }, { "key": "ctrl+delete", "command": "deleteWordRight", "when": "editorTextFocus" }, { "key": "ctrl+a", "command": "editor.action.selectAll" }, { "key": "ctrl+i", "command": "expandLineSelection", "when": "editorTextFocus" }, { "key": "shift+tab", "command": "outdent", "when": "editorTextFocus && !editorTabMovesFocus" }, { "key": "ctrl+shift+z", "command": "redo", "when": "editorTextFocus" }, { "key": "ctrl+y", "command": "redo", "when": "editorTextFocus" }, { "key": "ctrl+down", "command": "scrollLineDown", "when": "editorTextFocus" }, { "key": "ctrl+up", "command": "scrollLineUp", "when": "editorTextFocus" }, { "key": "ctrl+pagedown", "command": "scrollPageDown", "when": "editorTextFocus" }, { "key": "ctrl+pageup", "command": "scrollPageUp", "when": "editorTextFocus" }, { "key": "tab", "command": "tab", "when": "editorTextFocus && !editorTabMovesFocus" }, { "key": "ctrl+z", "command": "undo", "when": "editorTextFocus" }, { "key": "shift+escape", "command": "removeSecondaryCursors", "when": "editorHasMultipleSelections && editorTextFocus" }, { "key": "escape", "command": "removeSecondaryCursors", "when": "editorHasMultipleSelections && editorTextFocus" }, { "key": "ctrl+f", "command": "actions.find" }, { "key": "ctrl+k ctrl+c", "command": "editor.action.addCommentLine", "when": "editorTextFocus" }, { "key": "ctrl+d", "command": "editor.action.addSelectionToNextFindMatch", "when": "editorFocus" }, { "key": "shift+alt+a", "command": "editor.action.blockComment", "when": "editorTextFocus" }, { "key": "ctrl+f2", "command": "editor.action.changeAll", "when": "editorTextFocus" }, { "key": "ctrl+insert", "command": "editor.action.clipboardCopyAction" }, { "key": "ctrl+c", "command": "editor.action.clipboardCopyAction" }, { "key": "shift+delete", "command": "editor.action.clipboardCutAction" }, { "key": "ctrl+x", "command": "editor.action.clipboardCutAction" }, { "key": "shift+insert", "command": "editor.action.clipboardPasteAction" }, { "key": "ctrl+v", "command": "editor.action.clipboardPasteAction" }, { "key": "ctrl+/", "command": "editor.action.commentLine", "when": "editorTextFocus" }, { "key": "shift+alt+down", "command": "editor.action.copyLinesDownAction", "when": "editorTextFocus" }, { "key": "shift+alt+up", "command": "editor.action.copyLinesUpAction", "when": "editorTextFocus" }, { "key": "ctrl+k ctrl+k", "command": "editor.action.defineKeybinding", "when": "editorFocus" }, { "key": "ctrl+shift+k", "command": "editor.action.deleteLines", "when": "editorTextFocus" }, { "key": "shift+alt+f", "command": "editor.action.format", "when": "editorTextFocus" }, { "key": "f12", "command": "editor.action.goToDeclaration", "when": "editorTextFocus" }, { "key": "ctrl+shift+.", "command": "editor.action.inPlaceReplace.down", "when": "editorTextFocus" }, { "key": "ctrl+shift+,", "command": "editor.action.inPlaceReplace.up", "when": "editorTextFocus" }, { "key": "ctrl+]", "command": "editor.action.indentLines", "when": "editorTextFocus" }, { "key": "ctrl+alt+up", "command": "editor.action.insertCursorAbove", "when": "editorTextFocus" }, { "key": "shift+alt+i", "vscode: Visual Studio Code 常用快捷键vscode: Visual Studio Code 常用快捷键
vscode: Visual Studio Code 常用快捷键