Hey there.
I am using Clojure and ClojureScript a lot in my day to day life, and found that some color highlighting are missing for me.
I know about the Clojure.sublime-syntax
file, and understand quite good the way it works.
What i want to do is:
mark in a specific color all the function calls - no matter the function’s name.
Which means that it shouldn’t use any saved keyword .
so basically the rule is
“each word that comes after ‘(’ and until the first whitespace”
this rule should have only one optional exception -
if the word is a known keyword, give it the keyword’s color.
any hints on how to write this rule in the Clojure.sublime-syntax file?
thank youc