当我使用像 Goland 这样的 IDE 时,我可以在运行程序时为进程设置环境文件。我已经完成了以下操作以获得类似的结果。我在 init.vim 中添加了以下内容。
" Function to source only if file exists {
function! SourceIfExists(file)
if filereadable(expand(a:file))
exe 'source' a:file
endif
endfunction
:command! GoRunEnv :call SourceIfExists(".env") | GoRun
:cabbrev GoRun GoRunEnv
:command! GoTestEnv :call SourceIfExists(".env") | GoTest
:cabbrev GoTest GoTestEnv
每次我运行:GoRun
or:GoTest
时,文件中定义的所有变量 .env
都会被添加到进程中。该.env
文件必须如下所示:
let $HUHU = "What ever"
有没有办法包含这样的normal
环境文件?
HUHU=What ever
也许我完全走错了路,有更好的方法吗?