// 将键绑定放在此文件中以覆盖默认值
[
{
"key": "ctrl+alt+z",
"command": "expand_region",
"when": "editorTextFocus"
},
{
"key": "ctrl+w",
"command": "-expand_region",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+z",
"command": "expand_region",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+d",
"command": "editor.action.deleteLines",
"when": "textInputFocus && !editorReadonly"
},
{
"key": "ctrl+shift+k",
"command": "-editor.action.deleteLines",
"when": "textInputFocus && !editorReadonly"
},
{
"key": "ctrl+d",
"command": "editor.action.copyLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "shift+alt+down",
"command": "-editor.action.copyLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "alt+j",
"command": "editor.action.addSelectionToNextFindMatch",
"when": "editorFocus"
},
{
"key": "ctrl+d",
"command": "-editor.action.addSelectionToNextFindMatch",
"when": "editorFocus"
},
{
"key": "ctrl+alt+b",
"command": "undo_expand_region",
"when": "editorHasSelection && editorTextFocus"
},
{
"key": "ctrl+shift+w",
"command": "-undo_expand_region",
"when": "editorHasSelection && editorTextFocus"
},
{
"key": "ctrl+space",
"command": "-toggleSuggestionDetails",
"when": "suggestWidgetVisible && textInputFocus"
},
{
"key": "ctrl+space",
"command": "-editor.action.triggerSuggest",
"when": "editorHasCompletionItemProvider && textInputFocus && !editorReadonly"
},
{
"key": "ctrl+i",
"command": "-toggleSuggestionDetails",
"when": "suggestWidgetVisible && textInputFocus"
},
{
"key": "ctrl+shift+u",
"command": "editor.action.transformToUppercase"
},
{
"key": "ctrl+u",
"command": "editor.action.transformToLowercase"
}
]