Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Vim with YouCompleteMe and Markdown

Tags:

vim

I got vim and the youcompleteme plugin working under windows. For details take a look here

Is it possible to use it "not only" for coding but also for writing/editing markdown documents. If so, what do I have to do?

like image 650
vbd Avatar asked Jul 13 '14 07:07

vbd


2 Answers

Clear the YCM blacklist in your .vimrc:

let g:ycm_filetype_blacklist = {}
like image 93
Nathan Avatar answered Sep 21 '22 05:09

Nathan


The default value is:

g:ycm_filetype_blacklist={'notes': 1, 'markdown': 1, 'unite': 1, 'tagbar': 1, 'pandoc': 1, 'qf': 1, 'vimwiki': 1, 'text': 1, 'infolog': 1, 'mail': 1}

Setting this value in .vimrc.

like image 38
QJGui Avatar answered Sep 24 '22 05:09

QJGui