管理 vim 合成排水沟线
manging the vim syntastic gutter line
我正在使用 syntastic,你在 vim 中完成了我。每当我离开插入模式并在我的代码中出现错误时,合成错误槽就会出现,并带有红色标记,指示错误所在。我发现屏幕每次都会移动以便为排水沟腾出空间,这很烦人。我想知道是否可以设置 vim 以便排水沟始终留在那里。或者,如果可以将它们全部隐藏起来并且仍然看到红色错误标记。我真的只是想避免发生屏幕偏移。欢迎任何想法。先谢谢您的帮助。
这是我的.vimrc
set nocompatible
filetype off
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
""""""""" PLUGIN LIST STARTS HERE """"""""""""""""""""
Plugin 'VundleVim/Vundle.vim'
Plugin 'scrooloose/syntastic'
Plugin 'jiangmiao/auto-pairs'
Plugin 'tpope/vim-surround'
Plugin 'valloric/youcompleteme'
Plugin 'terryma/vim-multiple-cursors'
Plugin 'tpope/vim-repeat'
Plugin 'scrooloose/nerdtree'
Plugin 'sickill/vim-pasta'
Plugin 'itchyny/lightline.vim'
""""""""" PLUGIN LIST END HERE """"""""""""""""""""
call vundle#end() " required
filetype plugin indent on " requiredntax on
syntax on
set tabstop=4
set number
set smartindent
set shiftwidth=4
set mouse=a
set backspace=indent,eol,start
set colorcolumn+=80
highlight ColorColumn ctermbg=8
set completeopt-=preview
set laststatus=2
let &t_SI.="\e[5 q"
let &t_SR.="\e[4 q"
let &t_EI.="\e[1 q"
let g:NERDTreeDirArrowExpandable = '▸'
let g:NERDTreeDirArrowCollapsible = '▾'
map <F5> :NERDTreeToggle<CR>
let g:syntastic_cpp_compiler = 'clang++'
let g:syntastic_cpp_compiler_options = ' -std=c++14 -stdlib=libc++'
function! Multiple_cursors_before()
call AutoPairsToggle()
endfun
function! Multiple_cursors_after()
call AutoPairsToggle()
endfun
let g:ycm_global_ycm_extra_conf = '~/.vim/.ycm_extra_conf.py'
我找到了这个,建议在你的 .vimrc
中使用 set signcolumn=yes
顺便说一句,我最近了解到这个插件可以替代 syntastic。它基本上是一样的,除了它异步执行操作,这使得它执行得更快。不过它确实需要 vim 8(或者我不熟悉的某些版本的 neovim)。我在 2 周前进行了切换并且非常喜欢它(尽管我确实增加了 ALE 对 运行 linters 的超时)。
如果您切换到 ALE,他们专门有一个设置可以让标志槽保持打开状态,这正是您要找的。
从 v8.1.1564 开始,您可以在带有 set signcolumn=number
的数字列中显示符号。
您将无法在任何有错误的行上看到数字,但它避免了缓冲区移动,并且不需要保持标志间距打开。
我正在使用 syntastic,你在 vim 中完成了我。每当我离开插入模式并在我的代码中出现错误时,合成错误槽就会出现,并带有红色标记,指示错误所在。我发现屏幕每次都会移动以便为排水沟腾出空间,这很烦人。我想知道是否可以设置 vim 以便排水沟始终留在那里。或者,如果可以将它们全部隐藏起来并且仍然看到红色错误标记。我真的只是想避免发生屏幕偏移。欢迎任何想法。先谢谢您的帮助。
这是我的.vimrc
set nocompatible
filetype off
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
""""""""" PLUGIN LIST STARTS HERE """"""""""""""""""""
Plugin 'VundleVim/Vundle.vim'
Plugin 'scrooloose/syntastic'
Plugin 'jiangmiao/auto-pairs'
Plugin 'tpope/vim-surround'
Plugin 'valloric/youcompleteme'
Plugin 'terryma/vim-multiple-cursors'
Plugin 'tpope/vim-repeat'
Plugin 'scrooloose/nerdtree'
Plugin 'sickill/vim-pasta'
Plugin 'itchyny/lightline.vim'
""""""""" PLUGIN LIST END HERE """"""""""""""""""""
call vundle#end() " required
filetype plugin indent on " requiredntax on
syntax on
set tabstop=4
set number
set smartindent
set shiftwidth=4
set mouse=a
set backspace=indent,eol,start
set colorcolumn+=80
highlight ColorColumn ctermbg=8
set completeopt-=preview
set laststatus=2
let &t_SI.="\e[5 q"
let &t_SR.="\e[4 q"
let &t_EI.="\e[1 q"
let g:NERDTreeDirArrowExpandable = '▸'
let g:NERDTreeDirArrowCollapsible = '▾'
map <F5> :NERDTreeToggle<CR>
let g:syntastic_cpp_compiler = 'clang++'
let g:syntastic_cpp_compiler_options = ' -std=c++14 -stdlib=libc++'
function! Multiple_cursors_before()
call AutoPairsToggle()
endfun
function! Multiple_cursors_after()
call AutoPairsToggle()
endfun
let g:ycm_global_ycm_extra_conf = '~/.vim/.ycm_extra_conf.py'
我找到了这个,建议在你的 .vimrc
中使用set signcolumn=yes
顺便说一句,我最近了解到这个插件可以替代 syntastic。它基本上是一样的,除了它异步执行操作,这使得它执行得更快。不过它确实需要 vim 8(或者我不熟悉的某些版本的 neovim)。我在 2 周前进行了切换并且非常喜欢它(尽管我确实增加了 ALE 对 运行 linters 的超时)。
如果您切换到 ALE,他们专门有一个设置可以让标志槽保持打开状态,这正是您要找的。
从 v8.1.1564 开始,您可以在带有 set signcolumn=number
的数字列中显示符号。
您将无法在任何有错误的行上看到数字,但它避免了缓冲区移动,并且不需要保持标志间距打开。