More highlight groups for autoformat exclude list

This commit is contained in:
Reed Esau
2014-08-25 02:24:25 -06:00
parent 19c1dba18f
commit 8c5ecaa8c1

View File

@@ -33,11 +33,18 @@ en
if !exists('g:pencil#autoformat_exclude') if !exists('g:pencil#autoformat_exclude')
" 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
"
"'markdownCode', 'markdownHighlight[A-Za-z0-9]+' (tpope/vim-markdown)
"'mkdCode', 'mkdIndentCode' (plasticboy/vim-markdown)
"'markdownFencedCodeBlock', 'markdownInlineCode' (gabrielelana/vim-markdown)
"'txtCode' (timcharper/textile.vim)
let g:pencil#autoformat_exclude = [ let g:pencil#autoformat_exclude = [
\ 'markdownCode', \ 'markdownCode',
\ 'markdownHighlight[A-Za-z0-9]+', \ 'markdownHighlight[A-Za-z0-9]+',
\ 'mkdCode', \ 'mkdCode',
\ 'mkdIndentCode', \ 'mkdIndentCode',
\ 'markdownFencedCodeBlock',
\ 'markdownInlineCode',
\ 'txtCode', \ 'txtCode',
\ ] \ ]
en en