added configuration for vscode
This commit is contained in:
80
code/.config/Code/User/keybindings.json
Executable file
80
code/.config/Code/User/keybindings.json
Executable file
@@ -0,0 +1,80 @@
|
||||
// Place your key bindings in this file to override the defaultsauto[]
|
||||
[
|
||||
{
|
||||
"key": "ctrl+u",
|
||||
"command": "-cursorUndo",
|
||||
"when": "textInputFocus"
|
||||
},
|
||||
{
|
||||
"key": "ctrl+u",
|
||||
"command": "editor.action.transformToUppercase"
|
||||
},
|
||||
{
|
||||
"key": "ctrl+l",
|
||||
"command": "editor.action.transformToLowercase"
|
||||
},
|
||||
{
|
||||
"key": "ctrl+d",
|
||||
"command": "-editor.action.addSelectionToNextFindMatch",
|
||||
"when": "editorFocus"
|
||||
},
|
||||
{
|
||||
"key": "ctrl+d",
|
||||
"command": "editor.action.deleteLines",
|
||||
"when": "textInputFocus && !editorReadonly"
|
||||
},
|
||||
{
|
||||
"key": "ctrl+shift+k",
|
||||
"command": "-editor.action.deleteLines",
|
||||
"when": "textInputFocus && !editorReadonly"
|
||||
},
|
||||
{
|
||||
"key": "ctrl+shift+d",
|
||||
"command": "-workbench.view.debug",
|
||||
"when": "viewContainer.workbench.view.debug.enabled"
|
||||
},
|
||||
{
|
||||
"key": "ctrl+shift+d",
|
||||
"command": "deleteAllRight"
|
||||
},
|
||||
{
|
||||
"key": "ctrl+l",
|
||||
"command": "-notebook.centerActiveCell",
|
||||
"when": "notebookEditorFocused"
|
||||
},
|
||||
{
|
||||
"key": "ctrl+l",
|
||||
"command": "-expandLineSelection",
|
||||
"when": "textInputFocus"
|
||||
},
|
||||
{
|
||||
"key": "shift+alt+f5",
|
||||
"command": "workbench.action.editor.previousChange",
|
||||
"when": "editorTextFocus && !textCompareEditorActive"
|
||||
},
|
||||
{
|
||||
"key": "shift+alt+f5",
|
||||
"command": "-workbench.action.editor.previousChange",
|
||||
"when": "editorTextFocus && !textCompareEditorActive"
|
||||
},
|
||||
{
|
||||
"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"
|
||||
}
|
||||
]
|
||||
Reference in New Issue
Block a user