Remove rego syntax, fixes #486

This commit is contained in:
Adam Stankiewicz
2020-04-30 16:49:01 +02:00
parent c7b5826d53
commit 0a7c62b3b2
7 changed files with 11 additions and 79 deletions

View File

@@ -14,7 +14,7 @@ function! vimtex#view#zathura#new() abort " {{{1
endif
if executable('ldd')
let l:shared = split(system('ldd =zathura'))
let l:shared = split(system("sh -c 'ldd $(which zathura)'"))
if v:shell_error == 0
\ && empty(filter(l:shared, 'v:val =~# ''libsynctex'''))
call vimtex#log#warning('Zathura is not linked to libsynctex!')