aboutsummaryrefslogtreecommitdiffstats
path: root/modules/by-name
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-06-24 13:18:45 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-06-24 13:18:45 +0200
commit1b0d7941e1d2b4d9286f808a836d0353732ef5cc (patch)
tree89b6cc92af881a654d7ed6350d0005bdfd64b139 /modules/by-name
parentpkgs/yt: 1.6.0 -> 1.6.1 (diff)
downloadnixos-config-1b0d7941e1d2b4d9286f808a836d0353732ef5cc.zip
modules/nvim/mappings: Remove overlapping <Space>c mapping
Diffstat (limited to 'modules/by-name')
-rw-r--r--modules/by-name/nv/nvim/mappings/default.nix13
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"];