Created
June 16, 2023 01:32
-
-
Save frankie7413/c3d99cda86b30d522a5f389d72fc037e to your computer and use it in GitHub Desktop.
VS code tmux like navigation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"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