Skip to content

Instantly share code, notes, and snippets.

@ixacik
Last active May 4, 2024 11:12
Show Gist options
  • Select an option

  • Save ixacik/f2f263e9d8dfda4e261dc7d582b0f59a to your computer and use it in GitHub Desktop.

Select an option

Save ixacik/f2f263e9d8dfda4e261dc7d582b0f59a to your computer and use it in GitHub Desktop.

Revisions

  1. ixacik revised this gist May 4, 2024. No changes.
  2. ixacik revised this gist May 4, 2024. No changes.
  3. ixacik revised this gist May 4, 2024. 1 changed file with 3 additions and 3 deletions.
    6 changes: 3 additions & 3 deletions keybindings.json
    Original file line number Diff line number Diff line change
    @@ -24,7 +24,7 @@
    {
    "key": "space e",
    "command": "workbench.files.action.focusFilesExplorer",
    "when": "!sideBarFocus"
    "when": "vim.mode == 'Normal' && !sideBarFocus && !inQuickOpen"
    },
    {
    "key": "space e",
    @@ -83,12 +83,12 @@
    {
    "key": "space f",
    "command": "workbench.action.quickOpen",
    "when": "vim.mode == 'Normal' && ( editorFocus || explorerFocus )"
    "when": "vim.mode == 'Normal' && !inQuickOpen"
    },
    {
    "key": "space f",
    "command": "workbench.action.quickOpen",
    "when": "!editorFocus"
    "when": "!editorFocus && !inQuickOpen"
    },
    {
    "key": "space g d",
  4. ixacik revised this gist May 4, 2024. 1 changed file with 12 additions and 12 deletions.
    24 changes: 12 additions & 12 deletions keybindings.json
    Original file line number Diff line number Diff line change
    @@ -24,19 +24,14 @@
    {
    "key": "space e",
    "command": "workbench.files.action.focusFilesExplorer",
    "when": "vim.mode == 'Normal' && !explorerFocus && editorTextFocus"
    "when": "!sideBarFocus"
    },
    {
    "key": "space e",
    "command": "workbench.action.focusActiveEditorGroup",
    "when": "sideBarFocus && !editorFocus"
    },
    {
    // use the same shortcut for when there are no open windows
    "key": "space e",
    "command": "workbench.files.action.focusFilesExplorer",
    "when": "!editorIsOpen && !explorerFocus"
    "command": "multiCommand.closeAndFocusEditor",
    "when": "sideBarFocus"
    },
    //
    {
    "key": "tab",
    "command": "workbench.action.nextEditorInGroup",
    @@ -88,7 +83,12 @@
    {
    "key": "space f",
    "command": "workbench.action.quickOpen",
    "when": "vim.mode == 'Normal' && ( editorFocus || explorerFocus || !editorIsOpen)"
    "when": "vim.mode == 'Normal' && ( editorFocus || explorerFocus )"
    },
    {
    "key": "space f",
    "command": "workbench.action.quickOpen",
    "when": "!editorFocus"
    },
    {
    "key": "space g d",
    @@ -182,6 +182,6 @@
    },
    {
    "key": "alt+;",
    "command": "workbench.action.openQuickChat.copilot"
    "command": "workbench.action.openQuickChat"
    }
    ]
    ]
  5. ixacik revised this gist May 1, 2024. 1 changed file with 22 additions and 9 deletions.
    31 changes: 22 additions & 9 deletions keybindings.json
    Original file line number Diff line number Diff line change
    @@ -24,13 +24,19 @@
    {
    "key": "space e",
    "command": "workbench.files.action.focusFilesExplorer",
    "when": "!explorerFocus"
    "when": "vim.mode == 'Normal' && !explorerFocus && editorTextFocus"
    },
    {
    "key": "space e",
    "command": "workbench.action.focusActiveEditorGroup",
    "when": "sideBarFocus && !editorFocus"
    },
    {
    // use the same shortcut for when there are no open windows
    "key": "space e",
    "command": "workbench.files.action.focusFilesExplorer",
    "when": "!editorIsOpen && !explorerFocus"
    },
    {
    "key": "tab",
    "command": "workbench.action.nextEditorInGroup",
    @@ -42,6 +48,12 @@
    "when": "(vim.mode == 'Normal' || vim.mode == 'Visual') && (editorTextFocus || !inputFocus)"
    },

    // Hovering functionality
    {
    "key": "space h",
    "command": "editor.action.showHover",
    "when": "vim.mode == 'Normal' && editorTextFocus && vim.active && !inDebugRepl"
    },
    // Coding
    {
    "key": "shift-j",
    @@ -53,11 +65,6 @@
    "command": "editor.action.moveLinesUpAction",
    "when": "vim.mode != 'Insert' && editorTextFocus"
    },
    {
    "key": "shift-k",
    "command": "editor.action.showHover",
    "when": "vim.mode == 'Normal' && editorTextFocus"
    },
    {
    "key": "space c a",
    "command": "editor.action.codeAction",
    @@ -79,9 +86,9 @@
    "when": "vim.mode == 'Normal' && editorTextFocus"
    },
    {
    "key": "space space",
    "key": "space f",
    "command": "workbench.action.quickOpen",
    "when": "vim.mode == 'Normal' && (editorTextFocus || !inputFocus)"
    "when": "vim.mode == 'Normal' && ( editorFocus || explorerFocus || !editorIsOpen)"
    },
    {
    "key": "space g d",
    @@ -109,6 +116,12 @@
    "when": "(vim.mode == 'Normal' || vim.mode == 'Visual') && (editorTextFocus || !inputFocus)"
    },

    {
    "key": "enter",
    "command": "search.action.focusSearchList",
    "when": "!editorFocus && inputFocus && searchViewletVisible && !inQuickOpen"
    },

    // File Explorer
    {
    "key": "r",
    @@ -171,4 +184,4 @@
    "key": "alt+;",
    "command": "workbench.action.openQuickChat.copilot"
    }
    ]
    ]
  6. ixacik created this gist Apr 30, 2024.
    174 changes: 174 additions & 0 deletions keybindings.json
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,174 @@
    [
    // Navigation
    {
    "key": "ctrl-h",
    "command": "workbench.action.navigateLeft"
    },
    {
    "key": "ctrl-l",
    "command": "workbench.action.navigateRight"
    },
    {
    "key": "ctrl-k",
    "command": "workbench.action.navigateUp"
    },
    {
    "key": "ctrl-j",
    "command": "workbench.action.navigateDown"
    },
    {
    "key": "space ,",
    "command": "workbench.action.showAllEditors",
    "when": "vim.mode == 'Normal' && (editorTextFocus || !inputFocus)"
    },
    {
    "key": "space e",
    "command": "workbench.files.action.focusFilesExplorer",
    "when": "!explorerFocus"
    },
    {
    "key": "space e",
    "command": "workbench.action.focusActiveEditorGroup",
    "when": "sideBarFocus && !editorFocus"
    },
    {
    "key": "tab",
    "command": "workbench.action.nextEditorInGroup",
    "when": "(vim.mode == 'Normal' || vim.mode == 'Visual') && (editorTextFocus || !inputFocus)"
    },
    {
    "key": "shift-tab",
    "command": "workbench.action.previousEditorInGroup",
    "when": "(vim.mode == 'Normal' || vim.mode == 'Visual') && (editorTextFocus || !inputFocus)"
    },

    // Coding
    {
    "key": "shift-j",
    "command": "editor.action.moveLinesDownAction",
    "when": "vim.mode != 'Insert' && editorTextFocus"
    },
    {
    "key": "shift-k",
    "command": "editor.action.moveLinesUpAction",
    "when": "vim.mode != 'Insert' && editorTextFocus"
    },
    {
    "key": "shift-k",
    "command": "editor.action.showHover",
    "when": "vim.mode == 'Normal' && editorTextFocus"
    },
    {
    "key": "space c a",
    "command": "editor.action.codeAction",
    "when": "vim.mode == 'Normal' && editorTextFocus"
    },
    {
    "key": "space c r",
    "command": "editor.action.rename",
    "when": "vim.mode == 'Normal' && editorTextFocus"
    },
    {
    "key": "space c s",
    "command": "workbench.action.gotoSymbol",
    "when": "vim.mode == 'Normal' && editorTextFocus"
    },
    {
    "key": "space b d",
    "command": "workbench.action.closeActiveEditor",
    "when": "vim.mode == 'Normal' && editorTextFocus"
    },
    {
    "key": "space space",
    "command": "workbench.action.quickOpen",
    "when": "vim.mode == 'Normal' && (editorTextFocus || !inputFocus)"
    },
    {
    "key": "space g d",
    "command": "editor.action.revealDefinition",
    "when": "vim.mode == 'Normal' && editorTextFocus"
    },
    {
    "key": "space g r",
    "command": "editor.action.goToReferences",
    "when": "vim.mode == 'Normal' && editorTextFocus"
    },
    {
    "key": "space s g",
    "command": "workbench.action.findInFiles",
    "when": "vim.mode == 'Normal' && (editorTextFocus || !inputFocus)"
    },
    {
    "key": "space g g",
    "command": "workbench.view.scm",
    "when": "vim.mode == 'Normal' && (editorTextFocus || !inputFocus)"
    },
    {
    "key": "ctrl-n",
    "command": "editor.action.addSelectionToNextFindMatch",
    "when": "(vim.mode == 'Normal' || vim.mode == 'Visual') && (editorTextFocus || !inputFocus)"
    },

    // File Explorer
    {
    "key": "r",
    "command": "renameFile",
    "when": "filesExplorerFocus && foldersViewVisible && !explorerResourceIsRoot && !explorerResourceReadonly && !inputFocus"
    },
    {
    "key": "c",
    "command": "filesExplorer.copy",
    "when": "filesExplorerFocus && foldersViewVisible && !explorerResourceIsRoot && !explorerResourceReadonly && !inputFocus"
    },
    {
    "key": "p",
    "command": "filesExplorer.paste",
    "when": "filesExplorerFocus && foldersViewVisible && !explorerResourceIsRoot && !explorerResourceReadonly && !inputFocus"
    },
    {
    "key": "x",
    "command": "filesExplorer.cut",
    "when": "filesExplorerFocus && foldersViewVisible && !explorerResourceIsRoot && !explorerResourceReadonly && !inputFocus"
    },
    {
    "key": "d",
    "command": "deleteFile",
    "when": "filesExplorerFocus && foldersViewVisible && !explorerResourceIsRoot && !explorerResourceReadonly && !inputFocus"
    },
    {
    "key": "a",
    "command": "explorer.newFile",
    "when": "filesExplorerFocus && foldersViewVisible && !explorerResourceIsRoot && !explorerResourceReadonly && !inputFocus"
    },
    {
    "key": "shift-a",
    "command": "explorer.newFolder",
    "when": "filesExplorerFocus && foldersViewVisible && !explorerResourceIsRoot && !explorerResourceReadonly && !inputFocus"
    },
    {
    "key": "s",
    "command": "explorer.openToSide",
    "when": "filesExplorerFocus && foldersViewVisible && !explorerResourceIsRoot && !explorerResourceReadonly && !inputFocus"
    },
    {
    "key": "shift-s",
    "command": "runCommands",
    "when": "filesExplorerFocus && foldersViewVisible && !explorerResourceIsRoot && !explorerResourceReadonly && !inputFocus",
    "args": {
    "commands": [
    "workbench.action.splitEditorDown",
    "explorer.openAndPassFocus",
    "workbench.action.closeOtherEditors"
    ]
    }
    },
    {
    "key": "enter",
    "command": "explorer.openAndPassFocus",
    "when": "filesExplorerFocus && foldersViewVisible && !explorerResourceIsRoot && !explorerResourceReadonly && !inputFocus"
    },
    {
    "key": "alt+;",
    "command": "workbench.action.openQuickChat.copilot"
    }
    ]