exclude quickfix from the buffer list in vim
This commit is contained in:
parent
12da1074af
commit
06d408ce26
1 changed files with 6 additions and 0 deletions
6
.vimrc
6
.vimrc
|
@ -75,6 +75,12 @@ set laststatus=2
|
||||||
set noshowmode
|
set noshowmode
|
||||||
set showtabline=1 "only show tabline when more than 1 tab
|
set showtabline=1 "only show tabline when more than 1 tab
|
||||||
|
|
||||||
|
" exclude quickfix from the buffers list
|
||||||
|
augroup qf
|
||||||
|
autocmd!
|
||||||
|
autocmd FileType qf set nobuflisted
|
||||||
|
augroup END
|
||||||
|
|
||||||
" vimdiff
|
" vimdiff
|
||||||
set diffopt+=iwhite
|
set diffopt+=iwhite
|
||||||
set diffexpr=""
|
set diffexpr=""
|
||||||
|
|
Loading…
Reference in a new issue