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:
@ -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
|
||||
|
Reference in New Issue
Block a user