You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The "coffee.this" color looks too light. Sometimes it's hard to recognize the text. I suggest using rgb(192,96,0) or just black.
There are 2 issues in the parenthesis highlighting. First, if the ")" is the last character of the file, it will not be highlighted when you move the caret on it. Second, if you type:
s.replace(///"///, """)
or
s.replace(///'///, "'")
Even if it's not the last character of the file, the ")" will not be highlighted. That may be because of the quotation (apostrophe) mark in the regular expression.
Just a suggestion: In Microsoft's JavaScript editor, some "value" keywords such as null, undefined, true and false are in black color. Could you use this style?
The text was updated successfully, but these errors were encountered:
I have another suggestion:
Consider this string:
"abc def #{example1} #{example2} ghi"
If you could make it recognize the "#{example1}" and "#{example2}" and make them in black color instead of the dark red, it will be better.
Hi, I found some issues:
s.replace(///"///, """)
or
s.replace(///'///, "'")
Even if it's not the last character of the file, the ")" will not be highlighted. That may be because of the quotation (apostrophe) mark in the regular expression.
The text was updated successfully, but these errors were encountered: