Update filetype blacklist documentation

Follow existing `Default: '[see next line]'` style to avoid an overly long line
This commit is contained in:
Tom Vincent 2013-10-30 02:12:51 +00:00
parent 15b7e7683a
commit 650f014f16

View File

@ -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. 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 = { let g:ycm_filetype_blacklist = {
\ 'tagbar' : 1,
\ 'qf' : 1,
\ 'notes' : 1, \ 'notes' : 1,
\ 'markdown' : 1, \ 'markdown' : 1,
\ 'text' : 1,
\ 'unite' : 1, \ 'unite' : 1,
\ 'text' : 1,
\ 'vimwiki' : 1,
\} \}
< <
------------------------------------------------------------------------------- -------------------------------------------------------------------------------