Re: [Vim-latex-devel] how to configure the View rule?
Brought to you by:
srinathava,
tmaas
From: Yuan Qi <gma...@sp...> - 2006-09-25 14:54:39
|
I added this to ~/.vimrc and both problems are gone: let g:Tex_ViewRuleComplete_pdf = 'open $*.pdf' The problem seems to lie in the compiler.vim file. In particular, the following lines: if strlen(s:viewer) let s:viewer = '-a '.s:viewer endif let execString = 'open '.s:viewer.' $*.'.s:target Should be changed to: let execString = 'open $*.'.s:target |