bairui

Backspace over whitespace

Aug 18th, 2011
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VIM 0.33 KB | None | 0 0
  1. " Paradigm's <bs>   ;)
  2. " <bs> will effectively undo <cr> when autoindent is on
  3. inoremap <bs> <c-o>:call BackspaceIgnoreIndent()<cr>
  4. function! BackspaceIgnoreIndent()
  5.     if col(".") <= match(getline("."),"[^[:space:]]") && col(".") != 1
  6.         exec "normal a\<c-u>\<c-h>"
  7.     else
  8.         exec "normal a\<c-h>"
  9.     endif
  10. endfunction
Advertisement
Add Comment
Please, Sign In to add comment