aboutsummaryrefslogtreecommitdiffstats
path: root/.config/Code/User
diff options
context:
space:
mode:
authorkj_sh6042026-06-04 23:50:15 -0400
committerkj_sh6042026-06-04 23:50:15 -0400
commit36d1e7eb5c9465e1b6e1e5d062e4ed2277c3af39 (patch)
tree17d654c396ce8a524c28e26db9b5a2338f0599f2 /.config/Code/User
parenta790230e2ecd5279536d12f80bf240ab498e545e (diff)
refactor: add a similar keymap for :bnext :bprev
Diffstat (limited to '')
-rw-r--r--.config/Code/User/keybindings.json29
1 files changed, 8 insertions, 21 deletions
diff --git a/.config/Code/User/keybindings.json b/.config/Code/User/keybindings.json
index 02eef97..2bad03e 100644
--- a/.config/Code/User/keybindings.json
+++ b/.config/Code/User/keybindings.json
@@ -40,27 +40,6 @@
"command": "workbench.action.splitEditorDown",
"when": "vim.active && vim.mode == 'Normal'"
},
- // splits navigation
- {
- "key": "alt+h",
- "command": "workbench.action.focusLeftGroup",
- "when": "vim.active && vim.mode == 'Normal'"
- },
- {
- "key": "alt+j",
- "command": "workbench.action.focusBelowGroup",
- "when": "vim.active && vim.mode == 'Normal'"
- },
- {
- "key": "alt+k",
- "command": "workbench.action.focusAboveGroup",
- "when": "vim.active && vim.mode == 'Normal'"
- },
- {
- "key": "alt+l",
- "command": "workbench.action.focusRightGroup",
- "when": "vim.active && vim.mode == 'Normal'"
- },
// alternate close
{
"key": "alt+q",
@@ -286,5 +265,13 @@
{
"key": "shift+alt+]",
"command": "workbench.action.nextPanelView"
+ },
+ {
+ "key": "alt+j",
+ "command": "workbench.action.nextEditor"
+ },
+ {
+ "key": "alt+k",
+ "command": "workbench.action.previousEditor"
}
]