Skip to content

Latest commit

 

History

History
10 lines (8 loc) · 372 Bytes

README.md

File metadata and controls

10 lines (8 loc) · 372 Bytes

EmptyLines

A quick VIM plugin for adding/removing empty lines around code. Install it using Vundle. Example configuration:

nnoremap <silent> <Up> :call DelEmptyLineAbove()<CR>
nnoremap <silent> <Down> :call AddEmptyLineAbove()<CR>
nnoremap <silent> <C-Up> :call DelEmptyLineBelow()<CR>
nnoremap <silent> <C-Down> :call AddEmptyLineBelow()<CR>