remove weird ruby style comment highlighting from clojure mode

This commit is contained in:
nightwing 2012-12-08 11:12:46 +04:00
commit bce93cf031

View file

@ -129,10 +129,6 @@ var ClojureHighlightRules = function() {
{
token : "comment",
regex : ";.*$"
}, {
token : "comment", // multi line comment
regex : "^=begin$",
next : "comment"
}, {
token : "keyword", //parens
regex : "[\\(|\\)]"
@ -182,17 +178,6 @@ var ClojureHighlightRules = function() {
}
],
"comment" : [
{
token : "comment", // closing comment
regex : "^=end$",
next : "start"
}, {
token : "comment", // comment spanning whole line
merge : true,
regex : ".+"
}
],
"string" : [
{
token : "constant.language.escape",