We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c47961 commit 8bdf686Copy full SHA for 8bdf686
syntax/elixir.vim
@@ -108,12 +108,14 @@ syn region elixirSigil matchgroup=elixirSigilDelimiter start=+\~\a\z('''\)+ end=
108
109
" LiveView Sigils surrounded with ~L"""
110
syntax include @HTML syntax/html.vim
111
+unlet b:current_syntax
112
syntax region elixirLiveViewSigil matchgroup=elixirSigilDelimiter keepend start=+\~L\z("""\)+ end=+^\s*\z1+ skip=+\\"+ contains=@HTML fold
113
114
115
" Documentation
116
if exists('g:elixir_use_markdown_for_docs') && g:elixir_use_markdown_for_docs
117
syn include @markdown syntax/markdown.vim
118
+ unlet b:current_syntax
119
syn cluster elixirDocStringContained contains=@markdown,@Spell,elixirInterpolation
120
else
121
let g:elixir_use_markdown_for_docs = 0
0 commit comments