From 1b0d7941e1d2b4d9286f808a836d0353732ef5cc Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Tue, 24 Jun 2025 13:18:45 +0200 Subject: modules/nvim/mappings: Remove overlapping c mapping --- modules/by-name/nv/nvim/mappings/default.nix | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'modules/by-name/nv') 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 = "c"; - action = "\"_c"; - options.desc = "change without saving to register"; - } + # Overlaps with the femaco mapping (`cc`). + # { + # mode = ["n"]; + # key = "c"; + # action = "\"_c"; + # options.desc = "change without saving to register"; + # } { mode = ["n"]; -- cgit 1.4.1