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

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

这是我的~/.vimrc
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中找不到设置。如何禁用此功能?
发布于 2020-08-12 17:41:29
显然,这是来自自动补全。正如在YouCompleteMe github关于诊断UI中提到的,
这将打开YCM的诊断显示功能,包括诸如间隔标志、突出显示的文本、诊断回声和自动位置列表填充。要禁用此功能,我放入:
let g:ycm_show_diagnostics_ui = 1所有的亮点都消失了。

发布于 2020-08-12 17:03:29
你有没有试过先用谷歌搜索?使用:noh可以很容易地关闭高亮显示,或者你也可以使用:let @/="",正如前面提到的here,它是谷歌搜索结果的首批之一。您可以将这些命令映射到.vimrc中的一些快捷方式(我个人使用,/组合来禁用突出显示)
:noh命令不影响语法着色。这是你需要的吗?
编辑:很抱歉,我没有看到这些图片,因为它们在我当前连接的网络上被屏蔽了。这看起来更像是语法检查。改为使用:set nospell :)
https://stackoverflow.com/questions/63370902
复制相似问题