Friday, September 9, 2016

Highlighting html and css inside tagged template strings

Hi,

I managed to get highlighting CSS inside css`...` by adding the following to after/syntax/javascript.vim:

unlet b:current_syntax
syntax include @CSS syntax/css.vim
syntax region sheetify matchgroup=Type start="css`" end="`" contains=@CSS

However when I try to do the same for HTML in side html`...`:

unlet b:current_syntax
syntax include @HTML syntax/html.vim
syntax region bel matchgroup=Type start="html`" end="`" contains=@HTML keepend

I get a lot of errors about "Command too recursive". Any idea how I could make it work?

Best wishes,

-Martin

--
--
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

---
You received this message because you are subscribed to the Google Groups "vim_use" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vim_use+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment