VIM";线条空间“;不起作用

VIM";线条空间“;不起作用,vim,configuration,vi,putty,Vim,Configuration,Vi,Putty,我想增加VIM中的线条高度(“线条空间”) 官方命令是: set linespace=X 但是,当我将它放入.vimrc文件中时,它不起作用(无效) set t_Co=256 syntax on colorscheme wombat256 set linespace=1 " line height set nocompatible set showmatch set ignorecase set showmode set ts=4 set sw=4 set autoi

我想增加VIM中的线条高度(“线条空间”)

官方命令是:

set linespace=X
但是,当我将它放入.vimrc文件中时,它不起作用(无效)

set t_Co=256
syntax on
colorscheme wombat256

set linespace=1             " line height
set nocompatible
set showmatch
set ignorecase
set showmode
set ts=4
set sw=4
set autoindent
set cindent
如果有区别,我将使用Putty连接到我的Linux服务器


当我从Putty连接到VIM中时,知道如何增加文本的行距吗?

linespace
仅在GUI中有效。您不能在终端中使用它。

当linespace=1时会发生什么?我尝试在Vim上设置linespace=2,但也没有发生任何事情。我在Ubuntu中运行。@RobertMartin:它在文本行之间额外插入X个像素的间距。谢谢!在终端中是否具有与“linespace”类似的功能?@nickb:仅当终端软件提供了这样做的选项时。AFAIK腻子不会。