more blacklist additions for #22

A couple of other blacklist changes for plasticboy/vim-markdown to match those added for tpope/vim-markdown
This commit is contained in:
Reed Esau
2014-11-05 05:34:29 -07:00
parent e661e83bea
commit 4d0a377928
2 changed files with 13 additions and 8 deletions

View File

@@ -384,6 +384,8 @@ let g:pencil#autoformat_blacklist = [
\ 'markdownRule', \ 'markdownRule',
\ 'markdownHighlight[A-Za-z0-9]+', \ 'markdownHighlight[A-Za-z0-9]+',
\ 'mkdCode', \ 'mkdCode',
\ 'mkdRule',
\ 'htmlH[0-9]',
\ 'mkdIndentCode', \ 'mkdIndentCode',
\ 'markdownFencedCodeBlock', \ 'markdownFencedCodeBlock',
\ 'markdownInlineCode', \ 'markdownInlineCode',
@@ -477,7 +479,7 @@ If no such lines found, _pencil_ falls back to the default wrap mode.
Other plugins of specific interest to writers: Other plugins of specific interest to writers:
* [tpope/vim-markdown][tvm], [plasticboy/vim-markdown][pvm] - Markdown syntax plugins * [tpope/vim-markdown][tvm], [plasticboy/vim-markdown][pvm], [gabrielelana/vim-markdown][gvm] - Markdown syntax plugins
* [mattly/vim-markdown-enhancements][mvme] - highlighting for tables and footnotes * [mattly/vim-markdown-enhancements][mvme] - highlighting for tables and footnotes
* [tpope/vim-abolish][ab] - search for, substitute, and abbr. multiple variants of a word * [tpope/vim-abolish][ab] - search for, substitute, and abbr. multiple variants of a word
* [tommcdo/vim-exchange][ex] - easy text exchange operator for Vim * [tommcdo/vim-exchange][ex] - easy text exchange operator for Vim
@@ -490,6 +492,7 @@ Other plugins of specific interest to writers:
[jg]: http://github.com/junegunn/goyo.vim [jg]: http://github.com/junegunn/goyo.vim
[tvm]: http://github.com/tpope/vim-markdown [tvm]: http://github.com/tpope/vim-markdown
[pvm]: http://github.com/plasticboy/vim-markdown [pvm]: http://github.com/plasticboy/vim-markdown
[gvm]: http://github.com/gabrielelana/vim-markdown
[mvme]: http://github.com/mattly/vim-markdown-enhancements [mvme]: http://github.com/mattly/vim-markdown-enhancements
If you find the _pencil_ plugin useful, check out these others by [@reedes][re]: If you find the _pencil_ plugin useful, check out these others by [@reedes][re]:

View File

@@ -61,13 +61,13 @@ if !exists('g:pencil#autoformat_blacklist')
" by default, pencil does NOT start autoformat if inside any of " by default, pencil does NOT start autoformat if inside any of
" the following syntax groups " the following syntax groups
" "
"'markdown*' (tpope/vim-markdown) " markdown* (tpope/vim-markdown)
"'mkdCode', 'mkdIndentCode' (plasticboy/vim-markdown) " mkd*, htmlH[0-9] (plasticboy/vim-markdown)
"'markdownFencedCodeBlock', 'markdownInlineCode' (gabrielelana/vim-markdown) " markdownFencedCodeBlock, markdownInlineCode, markdownRule, markdownH[0-9] (gabrielelana/vim-markdown)
"'mmdTable[A-Za-z0-9]*' (mattly/vim-markdown-enhancements) " mmdTable[A-Za-z0-9]* (mattly/vim-markdown-enhancements)
"'txtCode' (timcharper/textile.vim) " txtCode (timcharper/textile.vim)
"'rst*' (syntax file shipped with vim) " rst* (syntax file shipped with vim)
"'tex*' (syntax file shipped with vim) " tex* (syntax file shipped with vim)
let g:pencil#autoformat_blacklist = [ let g:pencil#autoformat_blacklist = [
\ 'markdownCode', \ 'markdownCode',
\ 'markdownH[0-9]', \ 'markdownH[0-9]',
@@ -77,6 +77,8 @@ if !exists('g:pencil#autoformat_blacklist')
\ 'markdownRule', \ 'markdownRule',
\ 'markdownHighlight[A-Za-z0-9]+', \ 'markdownHighlight[A-Za-z0-9]+',
\ 'mkdCode', \ 'mkdCode',
\ 'mkdRule',
\ 'htmlH[0-9]',
\ 'mkdIndentCode', \ 'mkdIndentCode',
\ 'markdownFencedCodeBlock', \ 'markdownFencedCodeBlock',
\ 'markdownInlineCode', \ 'markdownInlineCode',