From f113c8c92915b8ac501d8e8670d50a03df1a8249 Mon Sep 17 00:00:00 2001 From: Reed Esau Date: Sun, 2 Oct 2016 23:40:51 -0600 Subject: [PATCH] Blacklist updates for plasticboy markdown syntax --- plugin/pencil.vim | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugin/pencil.vim b/plugin/pencil.vim index d157214..0993400 100644 --- a/plugin/pencil.vim +++ b/plugin/pencil.vim @@ -77,7 +77,7 @@ if !exists('g:pencil#autoformat_config') \ 'htmlH[0-9]', \ 'markdown(Code|H[0-9]|Url|IdDeclaration|Link|Rule|Highlight[A-Za-z0-9]+)', \ 'markdown(FencedCodeBlock|InlineCode)', - \ 'mkd(Code|Rule|Delimiter|Link|ListItem|IndentCode)', + \ 'mkd(Code|Rule|Delimiter|Link|ListItem|IndentCode|Snippet|NonListItemBlock)', \ 'mmdTable[A-Za-z0-9]*', \ ], \ 'white': [ @@ -182,6 +182,7 @@ com -nargs=0 PFormatOff call pencil#setAutoFormat(0) com -nargs=0 PFormatToggle call pencil#setAutoFormat(-1) " NOTE: legacy commands have been disabled by default as of 31-Dec-15 +" These will be removed entirely on 31-Dec-16 if !exists('g:pencil#legacyCommands') let g:pencil#legacyCommands = 0 en