欢迎访问悦橙教程(wld5.com),关注java教程。悦橙教程  java问答|  每日更新
页面导航 : > > > 文章正文

VSCode 自定义按键 上下左右,vscode按键

来源: javaer 分享于  点击 15088 次 点评:3

VSCode 自定义按键 上下左右,vscode按键


// Place your key bindings in this file to overwrite the defaults // alt + i, j, k,l [{ "key": "alt+j", "command": "cursorLeft" }, { "key": "alt+j ", "command": "list.collapse", "when": "listFocus" }, { "key": "alt+k", "command": "cursorDown" }, { "key": "alt+k", "command": "repl.action.historyNext", "when": "editorTextFocus && inDebugRepl && onLastDebugReplLine" }, { "key": "alt+k", "command": "settings.action.focusSettingsFile", "when": "inSettingsSearch" }, { "key": "alt+k", "command": "showNextParameterHint", "when": "editorTextFocus && parameterHintsMultipleSignatures && parameterHintsVisible" }, { "key": "alt+k", "command": "selectNextSuggestion", "when": "editorTextFocus && suggestWidgetMultipleSuggestions && suggestWidgetVisible" }, { "key": "alt+k", "command": "keybindings.editor.focusKeybindings", "when": "inKeybindings && inKeybindingsSearch" }, { "key": "alt+k", "command": "keybindings.editor.focusKeybindings", "when": "inKeybindings && inKeybindingsSearch" }, { "key": "alt+k", "command": "search.focus.nextInputBox", "when": "inputBoxFocus && searchViewletVisible" }, { "key": "alt+k", "command": "workbench.action.interactivePlayground.arrowDown", "when": "interactivePlaygroundFocus && !editorTextFocus" }, { "key": "alt+l", "command": "cursorRight" }, { "key": "alt+l", "command": "repl.action.acceptSuggestion", "when": "editorTextFocus && inDebugRepl && suggestWidgetVisible" }, { "key": "alt+l", "command": "list.expand", "when": "listFocus" }, { "key": "alt+i", "command": "cursorUp" }, { "key": "alt+i", "command": "repl.action.historyPrevious", "when": "editorTextFocus && inDebugRepl && onLastDebugReplLine" }, { "key": "alt+i", "command": "showPrevParameterHint", "when": "editorTextFocus && parameterHintsMultipleSignatures && parameterHintsVisible" }, { "key": "alt+i", "command": "selectPrevSuggestion", "when": "editorTextFocus && suggestWidgetMultipleSuggestions && suggestWidgetVisible" }, { "key": "alt+i", "command": "list.focusUp", "when": "listFocus" }, { "key": "alt+i", "command": "search.action.focusSearchFromResults", "when": "firstMatchFocus && searchViewletVisible" }, { "key": "alt+i", "command": "search.action.focusSearchFromResults", "when": "firstMatchFocus && searchViewletVisible" }, { "key": "alt+i", "command": "workbench.action.interactivePlayground.arrowUp", "when": "interactivePlaygroundFocus && !editorTextFocus" } ]

相关文章

    暂无相关文章

用户点评