Consider that double quotes start comments in viml

This commit is contained in:
Israel Chauca Fuentes
2017-02-10 21:13:45 -05:00
parent 6fddbc5568
commit 24cffe07b3
2 changed files with 6 additions and 1 deletions

View File

@@ -74,6 +74,10 @@ unlet g:delimitMate_nesting_quotes
iabb def ghi
call DMTest_quotes('', "idef'", "ghi'", 'a:typed =~ "^idef[''`«|]"')
iunabb def
""call DMTest_quotes('', "'\<CR>\<BS>", "''")
""call DMTest_quotes('', "i'\<CR>\<BS>", "''")
" Double quote starts a comment in viml
set ft=vim
call DMTest_single('', 'i"', '"')
set ft=
call vimtest#Quit()