Skip to content

Commit

Permalink
Update VSCode settings
Browse files Browse the repository at this point in the history
  • Loading branch information
n1amr committed Sep 1, 2023
1 parent 8ba8f10 commit 10f55ce
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 8 deletions.
59 changes: 52 additions & 7 deletions config/vscode/User/keybindings.windows.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// Keybindings (Windows only)
// Keybindings (Windows)
// Last update: 2023-03-07 19:12:04 +02:00
[
{
"key": "ctrl+shift+q",
Expand Down Expand Up @@ -227,14 +228,58 @@
"when": "editorTextFocus && vim.active && !inDebugRepl",
"command": "-extension.vim_backspace"
},
{
"key": "delete",
"command": "No Operation",
"when": "editorTextFocus && !inDebugRepl && vim.active && vim.mode == 'Normal'"
},
{
"key": "delete",
"command": "No Operation",
"when": "editorTextFocus && !inDebugRepl && vim.active && vim.mode == 'Visual'"
},
{
"key": "backspace",
"command": "extension.vim_shift+backspace",
"when": "editorTextFocus && !inDebugRepl && vim.active && vim.mode == 'Normal'"
},
{
"key": "backspace",
"command": "extension.vim_shift+backspace",
"when": "editorTextFocus && !inDebugRepl && vim.active && vim.mode == 'Visual'"
},
{
"key": "backspace",
"command": "extension.vim_ctrl+h",
"when": "editorTextFocus && !inDebugRepl && vim.active && vim.mode == 'SearchInProgressMode'"
},
{
"key": "backspace",
"when": "editorTextFocus && vim.active && vim.use<shift+BS> && !inDebugRepl && vim.mode == 'CommandlineInProgress' || editorTextFocus && vim.active && vim.use<shift+BS> && !inDebugRepl && vim.mode == 'SearchInProgressMode'",
"command": "extension.vim_shift+backspace"
"command": "extension.vim_ctrl+h",
"when": "editorTextFocus && !inDebugRepl && vim.active && vim.mode == 'CommandlineInProgress'"
},
{
"key": "shift+backspace",
"when": "editorTextFocus && vim.active && vim.use<shift+BS> && !inDebugRepl && vim.mode == 'CommandlineInProgress' || editorTextFocus && vim.active && vim.use<shift+BS> && !inDebugRepl && vim.mode == 'SearchInProgressMode'",
"command": "-extension.vim_shift+backspace"
}
"key": "ctrl+shift+p",
"command": "workbench.action.showCommands"
},
{
"key": "ctrl+shift+n",
"command": "vscode.newWindow"
},
{
"key": "alt+left",
"command": "workbench.action.navigateBack"
},
{
"key": "alt+right",
"command": "workbench.action.navigateForward"
},
{
"key": "alt+v",
"command": "toggleVim"
},
{
"key": "ctrl+shift+d",
"command": "-data.preview"
},
]
3 changes: 2 additions & 1 deletion config/vscode/User/settings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// User Settings (All Platforms)
// Last update: 2023-08-22 17:01:00 +03:00
// Last update: 2023-09-01 18:35:38 +02:00
{
// ##################
// ### Behavior ###
Expand Down Expand Up @@ -210,6 +210,7 @@
"--experimental",
"--aggressive",
],
"python.defaultInterpreterPath": "${env:PYENV_ROOT}/versions/3.7.10/bin/python",
"python.pythonPath": "${env:PYENV_ROOT}/versions/3.7.13/bin/python",
// "python.pythonPath": "${env:HOME}/.pyenv/shims/python", // TODO: Remove
// "python.pythonPath": "${env:HOME}/.pyenv/versions/3.7.13/bin/python", // TODO: Remove
Expand Down

0 comments on commit 10f55ce

Please sign in to comment.