Handle encrypted files

This commit is contained in:
Marco Hinz 2013-12-19 10:26:00 +01:00
parent 515bcd48b4
commit ca6915e420

View file

@ -499,7 +499,11 @@ function! s:open_buffers(cword) abort
endif
" no markers found; open a single buffer
else
execute 'normal' a:cword
try
execute 'normal' a:cword
catch /E832/
edit
endtry
endif
endfunction