Fix expanding abbreviations. Close #145.

This commit is contained in:
Israel Chauca Fuentes
2013-12-18 23:55:02 -05:00
parent 3dde5cc8cb
commit b45536fe8d
3 changed files with 15 additions and 8 deletions

View File

@@ -35,3 +35,7 @@ let b:delimitMate_eol_marker = ';'
%d
# BS should behave accordingly.
"abc(\<BS>" "abc;"
# Expand iabbreviations
unlet b:delimitMate_eol_marker
iabb def ghi
"def(" "ghi()"

View File

@@ -48,3 +48,6 @@ let g:delimitMate_nesting_quotes = split(g:delimitMate_quotes, '\s\+')
"''x" "''x"
"'x" "'x'"
unlet g:delimitMate_nesting_quotes
# expand iabbreviations
iabb def ghi
"def'" "ghi'"