File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -2121,7 +2121,6 @@ let s:cmd_symbols = [
21212121 \ [' jmath' , ' 𝚥' ],
21222122 \ [' land' , ' ∧' ],
21232123 \ [' lnot' , ' ¬' ],
2124- \ [' lceil' , ' ⌈' ],
21252124 \ [' ldots' , ' …' ],
21262125 \ [' le' , ' ≤' ],
21272126 \ [' leftarrow' , ' ←' ],
@@ -2167,7 +2166,6 @@ let s:cmd_symbols = [
21672166 \ [' prime' , ' ′' ],
21682167 \ [' prod' , ' ∏' ],
21692168 \ [' propto' , ' ∝' ],
2170- \ [' rceil' , ' ⌉' ],
21712169 \ [' Re' , ' ℜ' ],
21722170 \ [' rightarrow' , ' →' ],
21732171 \ [' Rightarrow' , ' ⇒' ],
@@ -2293,6 +2291,8 @@ function! s:match_math_delims() abort " {{{1
22932291 syntax match texMathDelim contained conceal cchar =⟩ " \% #=1\\ rangle\> "
22942292 syntax match texMathDelim contained conceal cchar =⌊ " \% #=1\\ lfloor\>\s\? "
22952293 syntax match texMathDelim contained conceal cchar =⌋ " \% #=1\\ rfloor\> "
2294+ syntax match texMathDelim contained conceal cchar =⌈ " \% #=1\\ lceil\>\s\? "
2295+ syntax match texMathDelim contained conceal cchar =⌉ " \% #=1\\ rceil\> "
22962296 syntax match texMathDelim contained conceal cchar =< " \% #=1\\\% ([bB]igg\? l\| left\) <\s\? "
22972297 syntax match texMathDelim contained conceal cchar => " \% #=1\\\% ([bB]igg\? r\| right\) >"
22982298 syntax match texMathDelim contained conceal cchar =( " \% #=1\\\% ([bB]igg\? l\| left\) (\s\? "
You can’t perform that action at this time.
0 commit comments