Skip to content

Commit

Permalink
add vscode settings and keybindings
Browse files Browse the repository at this point in the history
  • Loading branch information
kucera-lukas committed Jun 10, 2023
1 parent f96d7a9 commit f97d90b
Show file tree
Hide file tree
Showing 4 changed files with 440 additions and 0 deletions.
1 change: 1 addition & 0 deletions home/dot_config/git/ignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
.tool-versions
.cache
.coverage
.vscode
venv*
htmlcov
coverage.xml
Expand Down
92 changes: 92 additions & 0 deletions home/dot_config/private_Code/User/keybindings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
[
{
"key": "ctrl+shift+/",
"command": "editor.action.blockComment",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+a",
"command": "-editor.action.blockComment",
"when": "editorTextFocus && !editorReadonly"
},
{
"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"
},
{
"key": "alt+left",
"command": "workbench.action.quickInputBack",
"when": "inQuickOpen"
},
{
"key": "ctrl+alt+-",
"command": "-workbench.action.quickInputBack",
"when": "inQuickOpen"
},
{
"key": "ctrl+shift+tab",
"command": "workbench.action.focusLeftGroup"
},
{
"key": "ctrl+k ctrl+left",
"command": "-workbench.action.focusLeftGroup"
},
{
"key": "ctrl+tab",
"command": "workbench.action.focusRightGroup"
},
{
"key": "ctrl+k ctrl+right",
"command": "-workbench.action.focusRightGroup"
},
{
"key": "ctrl+c ctrl+t",
"command": "editor.action.transformToTitlecase"
},
{
"key": "ctrl+c ctrl+l",
"command": "editor.action.transformToLowercase"
},
{
"key": "ctrl+c ctrl+u",
"command": "editor.action.transformToUppercase"
},
{
"key": "ctrl+c ctrl+s",
"command": "editor.action.transformToSnakecase"
},
{
"key": "ctrl+c ctrl+k",
"command": "editor.action.transformToKebabcase"
},
{
"key": "ctrl+c ctrl+c",
"command": "editor.action.transformToCamelcase"
},
{
"key": "ctrl+shift+alt+meta+enter",
"command": "github.copilot.generate",
"when": "editorTextFocus && github.copilot.activated && !inInteractiveInput && !interactiveEditorFocused"
},
{
"key": "ctrl+enter",
"command": "-github.copilot.generate",
"when": "editorTextFocus && github.copilot.activated && !inInteractiveInput && !interactiveEditorFocused"
}
]
Loading

0 comments on commit f97d90b

Please sign in to comment.