From 4669b199c00967610c87eefb6f65f2bf062677a2 Mon Sep 17 00:00:00 2001 From: Kevin MacMartin Date: Sun, 17 Mar 2024 17:46:43 -0400 Subject: [PATCH] Re-commit the "Remove the keybinding to have Y copy to the end of the line as this is default in neovim" without the accidental bundle removal --- vim/config/keyboard.vim | 4 ---- 1 file changed, 4 deletions(-) diff --git a/vim/config/keyboard.vim b/vim/config/keyboard.vim index 2b91694..bfd29b8 100644 --- a/vim/config/keyboard.vim +++ b/vim/config/keyboard.vim @@ -93,7 +93,6 @@ " p | (N) -> view the paste buffers and register contents " P | (V) -> save selection to the buffer and paste over " p | (V) -> preserve the buffer pasting over selected text -" Y | (N) -> copy to the end of the line " " (delete/cut operations that don't replace the paste buffer) " x | (N) -> delete the char(s) under and the cursor @@ -443,9 +442,6 @@ vnoremap P p xmap p ReplaceWithRegisterVisual - "copy to the end of the line - nnoremap Y vg_y - "delete/cut operations that don't replace the paste buffer nnoremap x "_x vnoremap x "_x