tpope / vim-markdown

Vim Markdown runtime files
1.22k stars 191 forks source link

List text marked as BlockCode #164

Closed coot closed 3 years ago

coot commented 4 years ago

The following will give the right syntax

  * Some long list entry
  that spans two lines

The second line will no have any syntax groups attached, but this

  * Some long list entry
    that spans two lines

Will apply markdownBlockCode to the second list.

Its even worse with lists inside lists. The problem is this rule:

syn region markdownCodeBlock start="    \|\t" end="$" contained