Skip to content

Commit 5dda713

Browse files
committed
commented "solution" to coloring the tan() function
1 parent 42f7c03 commit 5dda713

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

autoload/css_color.vim

+4
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ endif
1313

1414
let s:_invalid = -9999 " used after bounding/wrapping, so this is safe
1515

16+
" Add open-parens as a keyword char to avoid coloring function names like tan().
17+
" This is ... not advised; it's unclear what it might break
18+
"syn iskeyword @,40,48-57,_,192-255,-
19+
1620
function! s:bound(n, min, max)
1721
let n = a:n
1822
if n < a:min | let n = a:min

0 commit comments

Comments
 (0)