diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2019-12-31 14:23:47 +0100 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2019-12-31 14:23:47 +0100 |
commit | e8454d66ab8376cf9c7e42f09749d5bd17d98f89 (patch) | |
tree | 47baa961eca09c080f83ede60a6ca303ed4716f3 /ftdetect | |
parent | a60e299a3ce55b4a84a48b240d35c84e6e5a8746 (diff) | |
download | vim-polyglot-4.2.0.tar.gz vim-polyglot-4.2.0.zip |
Fix performance issue with markdown highlightingv4.2.0
Diffstat (limited to 'ftdetect')
-rw-r--r-- | ftdetect/polyglot.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ftdetect/polyglot.vim b/ftdetect/polyglot.vim index cd389fdd..c42c5852 100644 --- a/ftdetect/polyglot.vim +++ b/ftdetect/polyglot.vim @@ -816,7 +816,7 @@ endif if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'markdown') == -1 augroup filetypedetect - " markdown, from markdown.vim in plasticboy/vim-markdown + " markdown, from markdown.vim in plasticboy/vim-markdown:_NOAFTER if !has('patch-7.4.480') " Before this patch, vim used modula2 for .md. au! filetypedetect BufRead,BufNewFile *.md |