From 650f014f161f358e18fed43dd5afbfbe61fa2d44 Mon Sep 17 00:00:00 2001 From: Tom Vincent Date: Wed, 30 Oct 2013 02:12:51 +0000 Subject: [PATCH] Update filetype blacklist documentation Follow existing `Default: '[see next line]'` style to avoid an overly long line --- doc/youcompleteme.txt | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/doc/youcompleteme.txt b/doc/youcompleteme.txt index d3cf85fe..880ea03f 100644 --- a/doc/youcompleteme.txt +++ b/doc/youcompleteme.txt @@ -870,13 +870,16 @@ dictionary is used like a hash set, meaning that only the keys matter). See the |g:ycm_filetype_whitelist| option for more details on how this works. -Default: "{'notes': 1, 'markdown': 1, 'text': 1}" +Default: '[see next line]' > let g:ycm_filetype_blacklist = { + \ 'tagbar' : 1, + \ 'qf' : 1, \ 'notes' : 1, \ 'markdown' : 1, - \ 'text' : 1, \ 'unite' : 1, + \ 'text' : 1, + \ 'vimwiki' : 1, \} < -------------------------------------------------------------------------------