I realized the backspace in normal mode's behaviour wasn't consistant,

so I've removed it until I get a chance to figure out how to do it
properly
This commit is contained in:
Kevin 2014-04-30 16:57:18 -04:00
parent bf251c81a2
commit 9be21a8fef

View file

@ -104,7 +104,6 @@
" "
" (formatting) " (formatting)
" <Backspace> | (V) -> deletes currently selected text " <Backspace> | (V) -> deletes currently selected text
" <Backspace> | (N) -> deletes the character behind the cursor
" <Leader><C-f> | (V) -> format the selection and return to cursor " <Leader><C-f> | (V) -> format the selection and return to cursor
" <Leader><C-f> | (N) -> format document and return to cursor " <Leader><C-f> | (N) -> format document and return to cursor
" <Leader><C-w> | (N) -> remove whitespace " <Leader><C-w> | (N) -> remove whitespace
@ -451,7 +450,6 @@
"FORMATTING:{ "FORMATTING:{
"have backspace delete the selected text "have backspace delete the selected text
vnoremap <Backspace> "_x vnoremap <Backspace> "_x
nnoremap <Backspace> i<Backspace><Esc>l
"formatting options to apply to the whole document "formatting options to apply to the whole document
nnoremap <Leader><C-f> mzgg=G`z<CR>:echo "The document has been formatted"<CR> nnoremap <Leader><C-f> mzgg=G`z<CR>:echo "The document has been formatted"<CR>