From 11ae80412d962dcce72a3a87fdbc238e98971842 Mon Sep 17 00:00:00 2001 From: bretello Date: Fri, 19 Feb 2021 09:17:49 +0100 Subject: [PATCH] vim: fix gutentags ctags exclude list --- vim/plugins_config.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vim/plugins_config.vim b/vim/plugins_config.vim index 9a8906b..97459ff 100644 --- a/vim/plugins_config.vim +++ b/vim/plugins_config.vim @@ -142,4 +142,4 @@ let g:gutentags_file_list_command = { \ '.hg': 'hg files', \ }, \ } -let g:gutentags_ctags_exclude = ['build', 'dist', 'css', 'json', 'yaml'] +let g:gutentags_ctags_exclude = ['build', 'dist', '*css', '*json', '*yaml', '*md']