From 4c907e56c18e2360ce210f8276849fc8b36d8344 Mon Sep 17 00:00:00 2001 From: Jan Larres Date: Sun, 23 Oct 2011 02:23:58 +1300 Subject: [PATCH] Set foldcolumn to 0 locally, closes #46 --- autoload/tagbar.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/autoload/tagbar.vim b/autoload/tagbar.vim index 5c5d725..c384d01 100644 --- a/autoload/tagbar.vim +++ b/autoload/tagbar.vim @@ -1439,6 +1439,7 @@ function! s:InitWindow(autoclose) endif setlocal nofoldenable + setlocal foldcolumn=0 " Reset fold settings in case a plugin set them globally to something " expensive. Apparently 'foldexpr' gets executed even if 'foldenable' is " off, and then for every appended line (like with :put).