do not include spaces in clojure symbols

This commit is contained in:
Harutyun Amirjanyan 2013-04-19 19:10:56 +04:00
commit b85c899755

View file

@ -171,7 +171,7 @@ var ClojureHighlightRules = function() {
next: "string"
}, {
token : "constant", // symbol
regex : /:[^()\[\]{}'"\^%`,;]+/
regex : /:[^()\[\]{}'"\^%`,;\s]+/
}, {
token : "string.regexp", //Regular Expressions
regex : '/#"(?:\\.|(?:\\\")|[^\""\n])*"/g'