Skip to content

Instantly share code, notes, and snippets.

@frankie7413
Created June 16, 2023 01:32
Show Gist options
  • Save frankie7413/c3d99cda86b30d522a5f389d72fc037e to your computer and use it in GitHub Desktop.
Save frankie7413/c3d99cda86b30d522a5f389d72fc037e to your computer and use it in GitHub Desktop.
VS code tmux like navigation
[
{
"key": "ctrl+k",
"command": "workbench.action.navigateUp"
},
{
"key": "ctrl+j",
"command": "workbench.action.navigateDown"
},
{
"key": "ctrl+k",
"command": "workbench.files.action.focusOpenEditorsView",
"when": "sideBarFocus && explorerViewletVisible"
},
{
"key": "ctrl+j",
"command": "workbench.files.action.focusFilesExplorer",
"when": "sideBarFocus && explorerViewletVisible && !filesExplorerFocus"
},
{
"key": "ctrl+h",
"command": "workbench.action.navigateLeft"
},
{
"key": "ctrl+h",
"command": "workbench.action.previousPanelView",
"when": "panelFocus"
},
{
"key": "ctrl+l",
"command": "workbench.action.navigateRight",
"when": "!terminalFocus"
},
{
"key": "ctrl+l",
"command": "workbench.action.nextPanelView",
"when": "panelFocus && !terminalFocus"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment