YouCompleteMe 改变装订线外观
YouCompleteMe change gutter appearance
我刚刚安装了 YouCompleteMe java 完成
./install.py --java-completer
看起来它也在修正:
不过我觉得排水沟真的很难看。
怎样才能一直隐藏阴沟?
有没有办法让我尝试不同的装订线样式,例如将彩色电力线箭头和灰色背景改为与我的 vim 背景相同。
Vim 8引入了:help 'signcolumn'
选项。有了它,你可以无条件禁用符号栏("gutter"的官方名称)和
:set signcolumn=no
对于"style"现有的标志,您可以通过:sign list
获取它们的列表。可以通过 :help :highlight
command, just like for syntax highlighting. YouCompleteMe documents these for you. Some plugins also allow to influence the attributes via plugin configuration. If not, you can redefine the existing signs via :help :sign-define
.
更改(文本和行)高亮组
我刚刚安装了 YouCompleteMe java 完成
./install.py --java-completer
看起来它也在修正:
不过我觉得排水沟真的很难看。
怎样才能一直隐藏阴沟?
有没有办法让我尝试不同的装订线样式,例如将彩色电力线箭头和灰色背景改为与我的 vim 背景相同。
Vim 8引入了:help 'signcolumn'
选项。有了它,你可以无条件禁用符号栏("gutter"的官方名称)和
:set signcolumn=no
对于"style"现有的标志,您可以通过:sign list
获取它们的列表。可以通过 :help :highlight
command, just like for syntax highlighting. YouCompleteMe documents these for you. Some plugins also allow to influence the attributes via plugin configuration. If not, you can redefine the existing signs via :help :sign-define
.