diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2020-03-05 12:30:24 +0100 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2020-03-05 12:30:24 +0100 |
commit | e86e0ad36ef9501acbc3e8c63a1d4fab104e47cb (patch) | |
tree | b9581527c6b4c0590bc79d5fd8ea5cfaf8df6d12 /indent | |
parent | 45ab4d80dd52f6ea40d8e9b7fa5cedd31d9ad9ec (diff) | |
download | vim-polyglot-e86e0ad36ef9501acbc3e8c63a1d4fab104e47cb.tar.gz vim-polyglot-e86e0ad36ef9501acbc3e8c63a1d4fab104e47cb.zip |
Update
Diffstat (limited to '')
-rw-r--r-- | indent/crystal.vim | 2 | ||||
-rw-r--r-- | indent/julia.vim | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/indent/crystal.vim b/indent/crystal.vim index 94767afe..74b5cc10 100644 --- a/indent/crystal.vim +++ b/indent/crystal.vim @@ -32,7 +32,7 @@ set cpo&vim " Regex of syntax group names that are or delimit strings/symbols or are comments. let s:syng_strcom = '\<crystal\%(Regexp\|RegexpDelimiter\|RegexpEscape' . - \ '\|Symbol\|String\|StringDelimiter\|StringEscape\|ASCIICode' . + \ '\|Symbol\|String\|StringDelimiter\|StringEscape\|CharLiteral\|ASCIICode' . \ '\|Interpolation\|InterpolationDelimiter\|NoInterpolation\|Comment\|Documentation\)\>' " Regex of syntax group names that are strings. diff --git a/indent/julia.vim b/indent/julia.vim index 13de44a0..299bb3f6 100644 --- a/indent/julia.vim +++ b/indent/julia.vim @@ -21,7 +21,7 @@ if exists("*GetJuliaIndent") finish endif -let s:skipPatterns = '\<julia\%(Comprehension\%(For\|If\)\|RangeEnd\|Comment[LM]\|\%([bsv]\|ip\|big\|MIME\|Shell\|Printf\|Doc\)\=String\|RegEx\|SymbolS\?\)\>' +let s:skipPatterns = '\<julia\%(Comprehension\%(For\|If\)\|RangeKeyword\|Comment[LM]\|\%([bsv]\|ip\|big\|MIME\|Shell\|Printf\|Doc\)\=String\|RegEx\|SymbolS\?\)\>' function JuliaMatch(lnum, str, regex, st, ...) let s = a:st |