- Fixed for E749.

This commit is contained in:
Shougo Matsushita 2012-10-06 20:18:15 +09:00
parent 23dd5a099e
commit c301eea419
1 changed files with 4 additions and 1 deletions

View File

@ -262,7 +262,10 @@ function! neosnippet#edit_snippets(args)"{{{
\ (options.vertical ? 'vnew' : 'new')
endif
edit `=filename`
try
edit `=filename`
catch /^Vim\%((\a\+)\)\=:E749/
endtry
endfunction"}}}
function! s:initialize_options(options)"{{{