如何在Powershell中运行时在VIM中设置不同的colorscheme?

时间:2013-08-28 01:43:33

标签: powershell vim

如何让VIM识别出在Powershell中运行并应用我想要的colorscheme?

换句话说:IF running in powershell THEN colorscheme ...

1 个答案:

答案 0 :(得分:1)

How to tell if vim is being run in command line vs. powershell

......这个对我来说不起作用,但是我找到了“解决方案的另一种方式”:

colorscheme ir_black

if has('gui_running')
  set guifont=Inconsolata:h12
  colorscheme native
endif

第一个colorscheme适用于Powershell,当{gvim}在Powershell外部运行时,if-endif内的一个将有效。