gpt4 book ai didi

bash - ubuntu 中的 Vim 无法识别我的环境变量

转载 作者:行者123 更新时间:2023-12-04 19:01:28 24 4
gpt4 key购买 nike

有时我使用 Cygwin,有时我使用 Ubuntu。因为我的vimrc里面有些东西Ubuntu 无法识别的,我创建了一个名为 $ENV_TYPE 的 shell 变量在我的 .profile 中手动设置处理差异。

我的 vimrc 中有这样的东西:

if $ENV_TYPE == "cygwin"
<some_command_here>
endif

当我运行 echo $ENV_TYPE在 Ubuntu 的命令行上,它可以识别变量。但是,在 vim 中,如果我运行相同的命令,它不会输出任何内容(这会阻止某些自定义命令无法识别)。

注意:这在 Cygwin 中根本不是问题。有想法该怎么解决这个吗?比使用手动设置的 shell 变量更好的方法也将不胜感激。

最佳答案

Cygwin 已经为您公开了许多 Cygwin 特定的环境变量,因此您实际上不需要定义自己的环境变量。使用以下命令从您的 shell 中列出它们:

$ env

或者这个从 Vim 中列出它们:
:!env

并选择一个 Cygwin 独有的,如 $OS$PROGRAMFILES :
if $OS == 'Windows_NT'
" do cygwin stuff
endif

另一种选择是使用 uname 的输出。 :
if substitute(system('uname'), '\n', '', '') =~ 'CYGWIN'
" do cygwin stuff
endif

这是一个“通用”片段:
if !exists('g:os')
if has('win32') || has('win16')
let g:os = 'Windows'
else
let g:os = substitute(system('uname'), '\n', '', '')
endif
endif

你像这样使用:
if g:os =~ 'Windows'
" do Windows stuff
endif

if g:os =~ 'CYGWIN'
" do Cygwin stuff
endif

if g:os =~ 'MINGW'
" do Git Bash stuff
endif

if g:os =~ 'Darwin'
" do Mac OS X stuff
endif

if g:os =~ 'Linux'
" do Linux stuff
endif

关于bash - ubuntu 中的 Vim 无法识别我的环境变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44602199/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com