From 1a5f88ed3e834f51474a49b0db8c4b8f9d96083d Mon Sep 17 00:00:00 2001 From: Michiel Scholten Date: Wed, 21 May 2014 14:07:47 +0200 Subject: [PATCH] Don't hilight markdown in regular text files --- .vim/ftdetect/markdown.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vim/ftdetect/markdown.vim b/.vim/ftdetect/markdown.vim index af041c2..a2aa82a 100644 --- a/.vim/ftdetect/markdown.vim +++ b/.vim/ftdetect/markdown.vim @@ -3,4 +3,4 @@ augroup filetypedetect autocmd BufNew,BufNewFile,BufRead *.txt,*.text,*.md,*.markdown :setfiletype markdown augroup END " 2014-02-28 this really fixes the filetype recognition -autocmd BufWinEnter *.{md,mkd,mkdn,mark*,txt,text} silent setf markdown +autocmd BufWinEnter *.{md,mkd,mkdn,mark*} silent setf markdown