diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-10-23 12:42:16 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-10-23 12:42:16 +0200 |
commit | 61a5e18cb8189d7fa2aab52481b801a2f5026f71 (patch) | |
tree | ffa23995eec7998920a79f35d26f12b2a13310cd | |
parent | build(build): Introduce a convenient build script (diff) | |
download | nixos-config-61a5e18cb8189d7fa2aab52481b801a2f5026f71.tar.gz nixos-config-61a5e18cb8189d7fa2aab52481b801a2f5026f71.zip |
fix(modules/legacy/conf/nvim/mappings): Use the better `<C-Tab>` and `<S-C-Tab>` mappings
They are now possible, as alacritty has gained support for these.
-rw-r--r-- | modules/home.legacy/conf/nvim/mappings/default.nix | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/modules/home.legacy/conf/nvim/mappings/default.nix b/modules/home.legacy/conf/nvim/mappings/default.nix index af800d22..40f1a377 100644 --- a/modules/home.legacy/conf/nvim/mappings/default.nix +++ b/modules/home.legacy/conf/nvim/mappings/default.nix @@ -40,17 +40,13 @@ options.desc = "confirm the selected item"; } - # FIXME: Add the below keymappings, when alacritty gets support for the kitty - # keyboard protocol <2023-08-29> { - # "<C-Tab>" - key = "ztn"; + key = "<C-Tab>"; action = "<cmd>tabnext<CR>"; options.desc = "cycle to the next tab"; } { - # "<S-C-Tab>" - key = "ztp"; + key = "<S-C-Tab>"; action = "<cmd>tabprevious<CR>"; options.desc = "cycle to the previous tab"; } |