From 632ae63c2c21d7a777f5398e7b7eb0b6a4f7183b Mon Sep 17 00:00:00 2001 From: Reed Esau Date: Sat, 5 Sep 2015 12:46:25 -0600 Subject: [PATCH] Removed MarkdownOrderedListMarker from default blacklist Numbered whole paragraphs makes for a strong use case to keep Vim's autoformat enabled. --- README.markdown | 1 - plugin/pencil.vim | 1 - 2 files changed, 2 deletions(-) diff --git a/README.markdown b/README.markdown index 0f1a3c1..7c04bf0 100644 --- a/README.markdown +++ b/README.markdown @@ -440,7 +440,6 @@ _not_ in the blacklist. The current blacklist is: ```vim let g:pencil#autoformat_blacklist = [ \ 'markdown(Code|H[0-9]|Url|IdDeclaration|Link|Rule|Highlight[A-Za-z0-9]+)', - \ 'markdownOrderedListMarker', \ 'mkd(Code|Rule|Delimiter|Link|ListItem|IndentCode)', \ 'htmlH[0-9]', \ 'markdown(FencedCodeBlock|InlineCode)', diff --git a/plugin/pencil.vim b/plugin/pencil.vim index 328149b..14d3378 100644 --- a/plugin/pencil.vim +++ b/plugin/pencil.vim @@ -69,7 +69,6 @@ if !exists('g:pencil#autoformat_blacklist') " rst*,tex*,asciidoc* (syntax file shipped with vim) let g:pencil#autoformat_blacklist = [ \ 'markdown(Code|H[0-9]|Url|IdDeclaration|Link|Rule|Highlight[A-Za-z0-9]+)', - \ 'markdownOrderedListMarker', \ 'mkd(Code|Rule|Delimiter|Link|ListItem|IndentCode)', \ 'htmlH[0-9]', \ 'markdown(FencedCodeBlock|InlineCode)',