diff --git a/vim/config/keyboard.vim b/vim/config/keyboard.vim index 05f9505..098c585 100644 --- a/vim/config/keyboard.vim +++ b/vim/config/keyboard.vim @@ -28,6 +28,8 @@ " | (V) -> paste and replace the selection " | (A) -> move up a chunk of text " | (A) -> move down a chunk of text +" | (N) -> move to the start of the text +" | (N) -> move to the end of the line " " (neocomplcache) " | (I) -> write the part common to all suggestions @@ -92,9 +94,13 @@ nnoremap "_diwP vnoremap "_d"0P - "map ctrl-up and ctrl-down to moving up/down by a block of text + "map ctrl-up/down to moving up/down by a block of text map map + + "map shift-left/right to move to the start/end of the line's text + nmap ^ + nmap $ "}}} "PLUGIN KEYBINDINGS {{{