Skip to content

Commit

Permalink
add full TAB highlight when switching between buffers [issue: fholgad…
Browse files Browse the repository at this point in the history
  • Loading branch information
athom committed Aug 3, 2013
1 parent 349a9fb commit 27b5f94
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions plugin/minibufexpl.vim
Original file line number Diff line number Diff line change
Expand Up @@ -541,6 +541,7 @@ function! <SID>RenderSyntax()
if has("syntax")
syn clear
syn match MBENormal '\[[^\]]*\]'
syn match MBESelecting '\k*\%#\k*[^\]]*\]'
syn match MBEChanged '\[[^\]]*\]+'
syn match MBEVisibleNormal '\[[^\]]*\]\*'
syn match MBEVisibleChanged '\[[^\]]*\]\*+'
Expand All @@ -549,6 +550,7 @@ function! <SID>RenderSyntax()

"MiniBufExpl Color Examples
" hi MBENormal guifg=#808080 guibg=fg
" hi MBESelecting guifg=#B4F869 guibg=fg
" hi MBEChanged guifg=#CD5907 guibg=fg
" hi MBEVisibleNormal guifg=#5DC2D6 guibg=fg
" hi MBEVisibleChanged guifg=#F1266F guibg=fg
Expand All @@ -558,6 +560,7 @@ function! <SID>RenderSyntax()
if !exists("g:did_minibufexplorer_syntax_inits")
let g:did_minibufexplorer_syntax_inits = 1
hi def link MBENormal Comment
hi def link MBESelecting Function
hi def link MBEChanged String
hi def link MBEVisibleNormal Special
hi def link MBEVisibleChanged Special
Expand Down

0 comments on commit 27b5f94

Please sign in to comment.