Updated vimfiler so the sidebar can navigate up and use correct colours

again.
This commit is contained in:
Kevin MacMartin 2014-05-29 09:12:30 -04:00
parent 91c8f89bd2
commit 42ab2b62bd
3 changed files with 5 additions and 3 deletions

View file

@ -304,7 +304,6 @@ call s:X("MatchParen","","#303030","bold,underline","","")
call s:X("TabLine","","#000000","","",s:termBlack) call s:X("TabLine","","#000000","","",s:termBlack)
call s:X("TabLineFill","","#000000","","",s:termBlack) call s:X("TabLineFill","","#000000","","",s:termBlack)
call s:X("TabLineSel","#000000","#d0d0d0","",s:termBlack,"White") call s:X("TabLineSel","#000000","#d0d0d0","",s:termBlack,"White")
call s:X("ExtraWhitespace","#262626","","standout",s:termBlack,"")
"menu call "menu call
call s:X("Pmenu","#87d7ff","#303030","","Grey","Blue") call s:X("Pmenu","#87d7ff","#303030","","Grey","Blue")

View file

@ -350,8 +350,8 @@
"TOGGLES:{ "TOGGLES:{
"bindings to trigger vimfiler "bindings to trigger vimfiler
nnoremap <silent><expr> `` ':VimFilerExplorer -direction=botright -winwidth=45<CR>' nnoremap <silent><expr> `` ':VimFiler -split -simple -toggle -no-quit -direction=botright -winwidth=45<CR>'
nnoremap <silent><expr> ~~ ':VimFilerExplorer -direction=topleft -winwidth=45<CR>' nnoremap <silent><expr> ~~ ':VimFiler -split -simple -toggle -no-quit -direction=topleft -winwidth=45<CR>'
nnoremap <silent><expr> ?? ':h quickref<CR>' nnoremap <silent><expr> ?? ':h quickref<CR>'
nnoremap <silent><expr> ?> ':exusage<CR>' nnoremap <silent><expr> ?> ':exusage<CR>'

View file

@ -102,6 +102,9 @@
\ setlocal omnifunc=syntaxcomplete#Complete | \ setlocal omnifunc=syntaxcomplete#Complete |
\ endif \ endif
endif endif
"disable the whitespace plugin for vimfiler
autocmd BufEnter,FileType vimfiler hi ExtraWhitespace ctermbg=NONE guibg=NONE
"}}} "}}}
"GVIM: GUI CONFIG OPTIONS {{{ "GVIM: GUI CONFIG OPTIONS {{{