Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要获取一些 vim 设置的当前值,例如runtimepath。
runtimepath
我知道我可以在 vim 中使用它:set runtimepath,但我找不到将它放入 bash 变量的方法。
:set runtimepath
如果您知道任何获取它的方法,请帮助:-(
这是我在脚本中使用的内容:
TEMP=$( mktemp ) $VIM -c "redir! > $TEMP" -c 'set runtimepath' -c 'q'
输出将被重定向到$TEMP
$TEMP