From 8abb698eecfdd6d7967dfa99294951bc3bc98997 Mon Sep 17 00:00:00 2001 From: Lifepillar Date: Sat, 11 Nov 2017 11:30:16 +0100 Subject: [PATCH] Update make_colorscheme script. --- templates/make_colorschemes.vim | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/templates/make_colorschemes.vim b/templates/make_colorschemes.vim index 01a7770..cfd93c0 100644 --- a/templates/make_colorschemes.vim +++ b/templates/make_colorschemes.vim @@ -9,13 +9,8 @@ let s:errors = 0 execute 'lcd' s:curdir -for s:template in glob(s:curdir . '/*.colortemplate', 1, 1) +for s:template in glob(s:curdir . '/s*.colortemplate', 1, 1) let s:template_name = fnamemodify(s:template, ':t:r') - if s:template_name == 'solarized8_dark' - let g:colortemplate_no_doc = 0 - else - let g:colortemplate_no_doc = 1 - endif execute "edit" s:template execute "Colortemplate!" fnameescape(s:parent) if g:colortemplate_exit_status != 0