Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
t9md committed Mar 11, 2015
1 parent 5968292 commit 1f1997d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions autoload/choosewin/color.vim
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ function! s:Color.init() "{{{1
endif

let config = choosewin#config#get()
let self.mgr = mgr
let self.mgr = choosewin#hlmanager#new('')

let colors = {
\ "Label": config['color_label'],
Expand All @@ -15,7 +15,7 @@ function! s:Color.init() "{{{1
\ "OverlayCurrent": config['color_overlay_current'],
\ "Shade": config['color_shade'],
\ "Land": config['color_land'],
\ "Other": config.get(config.label_fill ? "color_label" : "color_other"),
\ "Other": config[ config.label_fill ? "color_label" : "color_other" ],
\ }
for [color, spec] in items(colors)
call self.mgr.register("ChooseWin" . color, spec)
Expand Down

0 comments on commit 1f1997d

Please sign in to comment.