diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-06-24 13:18:45 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-06-24 13:18:45 +0200 |
commit | 1b0d7941e1d2b4d9286f808a836d0353732ef5cc (patch) | |
tree | 89b6cc92af881a654d7ed6350d0005bdfd64b139 /modules/by-name/nv/nvim/mappings/default.nix | |
parent | pkgs/yt: 1.6.0 -> 1.6.1 (diff) | |
download | nixos-config-1b0d7941e1d2b4d9286f808a836d0353732ef5cc.zip |
modules/nvim/mappings: Remove overlapping <Space>c mapping
Diffstat (limited to '')
-rw-r--r-- | modules/by-name/nv/nvim/mappings/default.nix | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/modules/by-name/nv/nvim/mappings/default.nix b/modules/by-name/nv/nvim/mappings/default.nix index 4997f66c..683b0465 100644 --- a/modules/by-name/nv/nvim/mappings/default.nix +++ b/modules/by-name/nv/nvim/mappings/default.nix @@ -189,12 +189,13 @@ in { action = "\"_dP"; options.desc = "keep the cut thing in the base register"; } - { - mode = ["n"]; - key = "<leader>c"; - action = "\"_c"; - options.desc = "change without saving to register"; - } + # Overlaps with the femaco mapping (`<Space>cc`). + # { + # mode = ["n"]; + # key = "<leader>c"; + # action = "\"_c"; + # options.desc = "change without saving to register"; + # } { mode = ["n"]; |