在mac capitan上设置vim应用程序的路径

时间:2015-12-08 20:07:35

标签: macos vim osx-elcapitan

我已经使用vim在python中制作小脚本并在LaTeX中排版。因此,通过键入:!python:!pdflatex等来从vim运行应用程序非常有用。但升级到el capitan之后,这似乎不再起作用,得到像/bin/bash: pdflatex: command not found这样的消息。但有趣的是,可以直接从终端运行应用程序。任何知道如何为vim设置正确的人?

1 个答案:

答案 0 :(得分:0)

$PATH variable not properly set in gvim/MacVim when it is opened from the finder 首先检查:!echo $SHELL并查看SHELL是否设置为bash

然后尝试在~/.bash_profile

中设置路径
export PATH=<dir_contains_pdflatex>:$PATH