小智 5
您可以为该目录设置环境变量。
# Making the variable name consist entirely of capital letters makes the
# variable less likely to conflict with other variables in scripts. You can
# make the variable name consist of lowercase letters but you may run
# into problems.
export DB=/some/very/long/path/db
Run Code Online (Sandbox Code Playgroud)
然后你可以在 Vim 中使用导出的变量,如下所示:
:e $DB/file.java
Run Code Online (Sandbox Code Playgroud)
在你的 shell 中:
grep -r string $DB
Run Code Online (Sandbox Code Playgroud)
Vim 和 bash 的变量替换工具完全彼此独立。Vim 只是以类似于 bash(和许多其他 shell)的方式替换环境变量。