From ed3d591346cddf0bfcbc0916cf3a1b3fc4158ff2 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Fri, 25 Apr 2014 11:29:14 +0900 Subject: [PATCH] Fix #25: Statusline visibility on urxvt --- plugin/goyo.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/goyo.vim b/plugin/goyo.vim index 311589e..3814872 100644 --- a/plugin/goyo.vim +++ b/plugin/goyo.vim @@ -104,13 +104,13 @@ function! s:tranquilize() \ 'StatusLine', 'StatusLineNC', 'SignColumn'] " -1 on Vim / '' on GVim if bg == -1 || empty(bg) - call s:set_color(grp, '', 'NONE') call s:set_color(grp, 'fg', get(g:, 'goyo_bg', 'black')) call s:set_color(grp, 'bg', 'NONE') else call s:set_color(grp, 'fg', bg) call s:set_color(grp, 'bg', bg) endif + call s:set_color(grp, '', 'NONE') endfor endfunction