首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >如何在Vim中保留语法颜色但禁用高亮显示?

如何在Vim中保留语法颜色但禁用高亮显示?
EN

Stack Overflow用户
提问于 2020-08-12 14:20:27
回答 2查看 324关注 0票数 0

我最近在Vim中激活了自动完成和语法颜色。但是,出现了红色突出显示颜色。

我试图用syntax off禁用语法颜色,但这个突出显示的颜色仍然存在。

这是我的~/.vimrc

代码语言:javascript
复制
    syntax on
    
    set nocompatible             " be iMproved, required
    filetype on                  " required
    
    " set the runtime path to include Vundle and initialize
    set rtp+=~/.vim/bundle/Vundle.vim
    call vundle#begin()
    " alternatively, pass a path where Vundle should install plugins
    "call vundle#begin('~/some/path/here')
    
    " let Vundle manage Vundle, required
    Plugin 'VundleVim/Vundle.vim'
    Plugin 'ycm-core/YouCompleteMe'
    
    " The following are examples of different formats supported.
    " Keep Plugin commands between vundle#begin/end.
    " plugin on GitHub repo
    Plugin 'tpope/vim-fugitive'
    " plugin from http://vim-scripts.org/vim/scripts.html
    " Plugin 'L9'
    " Git plugin not hosted on GitHub
    Plugin 'git://git.wincent.com/command-t.git'
    " git repos on your local machine (i.e. when working on your own plugin)
    Plugin 'file:///home/gmarik/path/to/plugin'
    " The sparkup vim script is in a subdirectory of this repo called vim.
    " Pass the path to set the runtimepath properly.
    Plugin 'rstacruz/sparkup', {'rtp': 'vim/'}
    " Install L9 and avoid a Naming conflict if you've already installed a
    " different version somewhere else.
    " Plugin 'ascenator/L9', {'name': 'newL9'}
    
    " All of your Plugins must be added before the following line
    call vundle#end()            " required
    filetype plugin indent on    " required
    " To ignore plugin indent changes, instead use:
    "filetype plugin on
    "
    " Brief help
    " :PluginList       - lists configured plugins
    " :PluginInstall    - installs plugins; append `!` to update or just :PluginUpdate
    " :PluginSearch foo - searches for foo; append `!` to refresh local cache
    " :PluginClean      - confirms removal of unused plugins; append `!` to auto-approve removal
    "
    " see :h vundle for more details or wiki for FAQ
    " Put your non-Plugin stuff after this line
    :set number

很难看到带有颜色突出显示的代码。我想保留语法颜色,但不突出显示。我在~/.vimrc中找不到设置。如何禁用此功能?

EN

回答 2

Stack Overflow用户

发布于 2020-08-12 17:41:29

显然,这是来自自动补全。正如在YouCompleteMe github关于诊断UI中提到的,

这将打开YCM的诊断显示功能,包括诸如间隔标志、突出显示的文本、诊断回声和自动位置列表填充。要禁用此功能,我放入:

代码语言:javascript
复制
let g:ycm_show_diagnostics_ui = 1

所有的亮点都消失了。

票数 0
EN

Stack Overflow用户

发布于 2020-08-12 17:03:29

你有没有试过先用谷歌搜索?使用:noh可以很容易地关闭高亮显示,或者你也可以使用:let @/="",正如前面提到的here,它是谷歌搜索结果的首批之一。您可以将这些命令映射到.vimrc中的一些快捷方式(我个人使用,/组合来禁用突出显示)

:noh命令不影响语法着色。这是你需要的吗?

编辑:很抱歉,我没有看到这些图片,因为它们在我当前连接的网络上被屏蔽了。这看起来更像是语法检查。改为使用:set nospell :)

票数 -1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/63370902

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档