From 2fa75b8023c9102c5a26fe53d14b86f587aac0f6 Mon Sep 17 00:00:00 2001 From: Reed Esau Date: Fri, 1 Aug 2014 01:52:50 -0600 Subject: [PATCH] Fix for #9: "transparency of 0 in defaults not respected" --- autoload/thematic/gui.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/thematic/gui.vim b/autoload/thematic/gui.vim index 30d31ca..1b1485a 100644 --- a/autoload/thematic/gui.vim +++ b/autoload/thematic/gui.vim @@ -176,7 +176,7 @@ function! thematic#gui#setTransparency(th) abort if l:tr > 100 let l:tr = 100 endif - if l:tr > 0 + if l:tr >= 0 try execute 'set transparency=' . l:tr catch