initial commit
This commit is contained in:
37
vscode/.config/Code/User/keybindings.json
Normal file
37
vscode/.config/Code/User/keybindings.json
Normal file
@@ -0,0 +1,37 @@
|
||||
// VSCode keybindings
|
||||
[
|
||||
// navigate back/forward with Alt+Left/Right (like browser)
|
||||
{
|
||||
"key": "alt+left",
|
||||
"command": "workbench.action.navigateBack",
|
||||
"when": "canNavigateBack"
|
||||
},
|
||||
{
|
||||
"key": "ctrl+alt+-",
|
||||
"command": "-workbench.action.navigateBack",
|
||||
"when": "canNavigateBack"
|
||||
},
|
||||
{
|
||||
"key": "alt+right",
|
||||
"command": "workbench.action.navigateForward",
|
||||
"when": "canNavigateForward"
|
||||
},
|
||||
{
|
||||
"key": "ctrl+shift+-",
|
||||
"command": "-workbench.action.navigateForward",
|
||||
"when": "canNavigateForward"
|
||||
},
|
||||
// shift+enter in terminal sends a line continuation
|
||||
{
|
||||
"key": "shift+enter",
|
||||
"command": "workbench.action.terminal.sendSequence",
|
||||
"args": { "text": "\\\r\n" },
|
||||
"when": "terminalFocus"
|
||||
},
|
||||
// disable default inlay hint escape binding
|
||||
{
|
||||
"key": "escape",
|
||||
"command": "-inlayHints.stopReadingLineWithHint",
|
||||
"when": "isReadingLineWithInlayHints"
|
||||
}
|
||||
]
|
||||
Reference in New Issue
Block a user