install.fairie/home/dot_config/Code/User/keybindings.json

49 lines
1.2 KiB
JSON
Raw Normal View History

2022-11-29 22:26:34 -08:00
[
{
"command": "selectNextQuickFix",
"key": "tab",
2022-11-29 22:26:34 -08:00
"when": "editorFocus && quickFixWidgetVisible"
},
{
"command": "selectPrevQuickFix",
"key": "shift+tab",
2022-11-29 22:26:34 -08:00
"when": "editorFocus && quickFixWidgetVisible"
},
{
"command": "selectNextSuggestion",
"key": "tab",
2022-11-29 22:26:34 -08:00
"when": "editorTextFocus && suggestWidgetMultipleSuggestions && suggestWidgetVisible"
},
{
"command": "selectPrevSuggestion",
"key": "shift+tab",
2022-11-29 22:26:34 -08:00
"when": "editorTextFocus && suggestWidgetMultipleSuggestions && suggestWidgetVisible"
},
{
"command": "editor.action.inlineSuggest.commit",
"key": "ctrl+j",
2022-11-29 22:26:34 -08:00
"when": "inlineSuggestionHasIndentationLessThanTabSize && inlineSuggestionVisible && !editorTabMovesFocus"
},
{
"command": "-editor.action.inlineSuggest.commit",
"key": "tab",
2022-11-29 22:26:34 -08:00
"when": "inlineSuggestionHasIndentationLessThanTabSize && inlineSuggestionVisible && !editorTabMovesFocus"
},
{
"command": "workbench.action.nextEditor",
"key": "alt+right"
2022-11-29 22:26:34 -08:00
},
{
"command": "-workbench.action.nextEditor",
"key": "ctrl+pagedown"
2022-11-29 22:26:34 -08:00
},
{
"command": "workbench.action.previousEditor",
"key": "alt+left"
2022-11-29 22:26:34 -08:00
},
{
"command": "-workbench.action.previousEditor",
"key": "ctrl+pageup"
2022-11-29 22:26:34 -08:00
}
]