Removed dash from undo points

To avoid excessive undos around -- and longer sequences of dashes.
This commit is contained in:
Reed Esau
2014-03-02 19:18:17 -07:00
parent b75fc310b1
commit 9f88e10772

View File

@@ -243,7 +243,6 @@ function! pencil#init(...) abort
inoremap <buffer> , ,<c-g>u
inoremap <buffer> ; ;<c-g>u
inoremap <buffer> : :<c-g>u
inoremap <buffer> - -<c-g>u
inoremap <buffer> <c-u> <c-g>u<c-u>
inoremap <buffer> <c-w> <c-g>u<c-w>
else
@@ -253,7 +252,6 @@ function! pencil#init(...) abort
silent! iunmap <buffer> ,
silent! iunmap <buffer> ;
silent! iunmap <buffer> :
silent! iunmap <buffer> -
silent! iunmap <buffer> <c-u>
silent! iunmap <buffer> <c-w>
endif