Handle encrypted files
This commit is contained in:
parent
515bcd48b4
commit
ca6915e420
1 changed files with 5 additions and 1 deletions
|
@ -499,7 +499,11 @@ function! s:open_buffers(cword) abort
|
||||||
endif
|
endif
|
||||||
" no markers found; open a single buffer
|
" no markers found; open a single buffer
|
||||||
else
|
else
|
||||||
|
try
|
||||||
execute 'normal' a:cword
|
execute 'normal' a:cword
|
||||||
|
catch /E832/
|
||||||
|
edit
|
||||||
|
endtry
|
||||||
endif
|
endif
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue