Vim-latex:正向和反向搜索

Vim-latex:正向和反向搜索

我一直在尝试让 vim 和 Okular 通过正向和反向搜索相互交流。

我有

vim --servername GVIM --remote-silent +%1 %f

在我的 Okular 编辑器配置中。当我vim --servername GVIM 在 Okular 中按住 Shift 键并单击来运行 vim 时,vim 中会出现以下错误:

E492: Not an editor command: %1|cal foreground()|if &im|star|en|redr|f

我尝试编辑的 LaTeX 文档中有时也会出现随机错误文本,但最近没有出现这种情况。我的~/.vim/ftplugin/tex.vim

let g:Tex_CompileRule_dvi = 'latex -src-specials -interaction=nonstopmode $*'

有人知道如何让它工作吗?

答案1

您输入有误,请将1字母改为数字l

gvim --servername GVIM --remote-silent +%l %f

相关内容