VIM: Remove GoldenView

GoldenView causes several problems with badly written plugins like
traces.vim. The problem manifests in errors occuring due to GoldenView
setting the 'winminwidth' parameter to anything but 0. Traces.vim then
tries to set the winwidth to 1 or 0 and throws errors as vim is
enforcing the 'winminwidth'.
This commit is contained in:
2018-09-01 10:31:01 +02:00
parent a3fac1d9f6
commit b705be0c1e
22 changed files with 0 additions and 3562 deletions

View File

@ -21,35 +21,6 @@ let g:airline_theme="minimalist"
autocmd TextChanged * GitGutter
" GoldenView
let g:goldenview__enable_default_mapping = 0
let g:goldenview__ignore_urule = {
\ 'filetype' : [
\ '' ,
\ 'qf' , 'vimpager', 'undotree', 'tagbar',
\ 'nerdtree', 'vimshell', 'vimfiler', 'voom' ,
\ 'tabman' , 'unite' , 'quickrun', 'Decho' ,
\ 'netrw' ,
\ ],
\ 'buftype' : [
\ 'nofile' ,
\ ],
\ 'bufname' : [
\ 'GoToFile' , 'diffpanel_\d\+' ,
\ '__Gundo_Preview__' , '__Gundo__' ,
\ '\[LustyExplorer-Buffers\]' , '\-MiniBufExplorer\-' ,
\ '_VOOM\d\+$' , '__Urannotate_\d\+__' ,
\ '__MRU_Files__' ,
\ ],
\}
let g:goldenview__restore_urule = {
\ 'filetype' : [
\ 'nerdtree', 'vimfiler', 'netrw',
\ ],
\ 'bufname' : [
\ '__MRU_Files__' ,
\ ],
\ }
" JavaComplete