Forgot to save <Del> fix :)

This commit is contained in:
Israel Chauca Fuentes
2010-05-03 03:22:41 -05:00
parent 5ca0eee4cd
commit b25906e610

View File

@@ -305,7 +305,6 @@ function! delimitMate#Del() " {{{
let line = getline('.')
let col = col('.') - 2
call delimitMate#RmBuffer(1)
echom line[:col-1] . "|" . line[col+1:]
call setline('.', line[:col] . line[col+2:])
return ''
else