From 0a14a1558ec4fe54217cb2b9bb102fc01ae3960d Mon Sep 17 00:00:00 2001 From: Will Gray Date: Mon, 21 Feb 2011 13:23:21 -0600 Subject: [PATCH] Fix typo causing global settings to be stored as strings. --- plugin/indent_guides.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/indent_guides.vim b/plugin/indent_guides.vim index 907ee6d..21c219f 100644 --- a/plugin/indent_guides.vim +++ b/plugin/indent_guides.vim @@ -30,7 +30,7 @@ command! -bar IndentGuidesDisable call s:IndentGuidesDisable() " function s:InitVariable(var, value) if !exists(a:var) - if type(a:var) == type("") + if type(a:value) == type("") exec 'let ' . a:var . ' = ' . "'" . a:value . "'" else exec 'let ' . a:var . ' = ' . a:value