bairui

Backspace over whitespace

Aug 18th, 2011
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VIM 0.29 KB | None | 0 0
  1. " bairui's <bs>   ;)
  2. " <bs> will effectively undo <cr> when autoindent is on
  3. inoremap <expr> <bs> BackspaceIgnoreIndent()
  4. function! BackspaceIgnoreIndent()
  5.   if search('^\s*\%#', 'bn') != 0
  6.     return "\<c-u>\<c-h>"
  7.   else
  8.     return "\<c-h>"
  9.   endif
  10. endfunction
  11.  
  12. finish
  13.  
  14. test
  15.  
  16.   this
Advertisement
Add Comment
Please, Sign In to add comment