bobbylight / RSyntaxTextArea

A syntax highlighting, code folding text editor for Java Swing applications.
BSD 3-Clause "New" or "Revised" License
1.12k stars 258 forks source link

Identifier style token applies to incorrect text for Clojure #136

Open dumptruckman opened 9 years ago

dumptruckman commented 9 years ago

It would appear that the Identifier style token is being applied to all text that is not otherwise highlighted. In Clojure this is happening on all non-"reserved" function names and all function parameters. I would think it should only be applying to the latter and the Function style token should be used for the names. Also, many of the Clojure core functions are not being styled under the Reserved style token for whatever reason. ex: defn-

bobbylight commented 9 years ago

This is because I don't know Clojure. If you could give me a list of tokens and what their token types should be, I can make the necessary changes.