diff --git a/vim/config/keyboard.vim b/vim/config/keyboard.vim index 53c2bf2..5a85bb2 100644 --- a/vim/config/keyboard.vim +++ b/vim/config/keyboard.vim @@ -32,8 +32,6 @@ " | (A) -> paste at the cursor (not mouse) " | (A) -> paste at the cursor (not mouse) " -" | (A) -> paste from xorg paste buffer -" " (terminal) " | (T) -> leave edit mode " @@ -66,7 +64,7 @@ " ik | (N) -> add cursor character as a keyword " iK | (N) -> remove cursor character as a keyword " -" ~ | (N) -> popup a command reference +" ~ | (N) -> pop-up a command reference " | (N) -> toggle the vim reference manual " ` | (A) -> toggle the gutter(numbers+folds+signify) " @@ -116,8 +114,8 @@ " w | (N) -> remove whitespace " | (V) -> indent all the lines currently selected " | (N) -> indent the current line -" | (V) -> un-indent all the lines currently selected -" | (N) -> un-indent the current line +" | (V) -> unindent all the lines currently selected +" | (N) -> unindent the current line " [ | (N) -> insert a blank line above the current one " ] | (N) -> insert a blank line below the current one " @@ -170,7 +168,7 @@ " | (V) -> select one word right " | (V) -> select one word left " -"Filetype Specific Mappings: +"File type Specific Mappings: " (help) " q | (A) -> close the dialog " @@ -214,7 +212,7 @@ nnoremap "}}} -"MAPPINGS: GENERAL KEYBINDINGS AND REBINDINGS {{{ +"MAPPINGS: GENERAL KEYBINDINGS AND REBINDING {{{ "MOUSE:{ "hold ctrl to scroll left/right instead of up/down noremap 4zh @@ -324,10 +322,6 @@ snoremap p vnoremap p inoremap p - - "configure middle click to paste from X - noremap - noremap! "} "TERMINAL:{ @@ -377,7 +371,7 @@ "toggle the display of the left gutter nnoremap ` ':if (&number)set nonumberif exists("b:sy")SignifyDisableendifelseset numberif exists("b:sy")SignifyEnableendifendif:echo "gutter visibility toggled"' - "toggle folded code at foldpoints + "toggle folded code at fold-points nnoremap za "toggle line wrapping (and bottom bar if using the gui) @@ -421,16 +415,16 @@ "} "SPELLCHECK:{ - "add the selected mispelled word to the local dictionary + "add the selected misspelled word to the local dictionary nnoremap ?+ zg - "display a list of suggestions for the selected mispelled word + "display a list of suggestions for the selected misspelled word nnoremap ?? heas - "go to the next mispelled word + "go to the next misspelled word nnoremap ?N ]s - "go to the previous mispelled word + "go to the previous misspelled word nnoremap ?P [s "} @@ -473,7 +467,7 @@ "remove trailing whitespace nnoremap w ':FixWhitespace:echo "Trailing whitespace has been removed"' - "tab and untab the currently selected lines + "indent and unindent the currently selected lines vnoremap >gv nnoremap v>gv vnoremap autocmd Filetype help,qf,diff,vista noremap [