diff options
author | Soispha <soispha@vhack.eu> | 2023-08-30 16:04:51 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-08-30 16:04:51 +0200 |
commit | 328946f9edb0bc2575549eff5bff9a3cb5965e6d (patch) | |
tree | 4aa42a013dc7e8266ba33c92875cb2a137033d56 /hm/soispha | |
parent | Feat(hm/conf/nvim/mappings): Add mapping to go to file (<enter>) (diff) | |
download | nixos-config-328946f9edb0bc2575549eff5bff9a3cb5965e6d.zip |
Fix(hm/conf/nvim/mappings): Add missing "change without register" map
Diffstat (limited to 'hm/soispha')
-rw-r--r-- | hm/soispha/conf/nvim/mappings/default.nix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/hm/soispha/conf/nvim/mappings/default.nix b/hm/soispha/conf/nvim/mappings/default.nix index 4ff0198a..cacd5f72 100644 --- a/hm/soispha/conf/nvim/mappings/default.nix +++ b/hm/soispha/conf/nvim/mappings/default.nix @@ -181,6 +181,10 @@ action = "\"_dP"; desc = "keep the cut thing in the base register"; }; + "<leader>c" = { + action = "\"_c"; + desc = "change without saving to register"; + }; "<leader>d" = { action = "\"_d"; |