-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
@
is not highlighted
#49
Comments
sustained/CoffeeScript-Sublime-Plugin#27 got the fix from there |
I found there's an upgrade on Sublime, but I didn't see any change after upgrading. f = ->
console.log @a I suppose it couldn't be that quick.. How can I check the fixed version? |
Also two questions:
|
I use pastels on dark color scheme, it is exactly the same as yours when I use the default scheme (monokai) jsdom = require "jsdom"
fs = require("fs");
html = fs.readFileSync("./test_subjects/chrome_bookmark.html").toString();
# RESULTS = new Array()
jsdom.env
html: html
scripts: ["./req/jquery.min.js"]
done: (errors, window) ->
$ = window.$
itemdoubleclick = ""
results = new Array()
# console.log $("html").html()
anchors = $("dl").find("a")
#console.log $
#
class Box2DUtility
constructor: (s) -> @s = s
m: () -> alert "instance method called: #{@s}"
@drawWorld: (s) -> new @ s
Box2DUtility.drawWorld('pancakes').m()
# console.log(anchors);
anchors.each (i, e) ->
url = $(e).attr("href")
name = $(e).text()
add_date = $(e).attr("add_date")
tags = new Array()
# console.dir $(e).attr("href")
$(e).parents("dl").each (ii, ee) ->
folder = $(ee).prev()
# console.dir folder.text()
tag = folder.text()
tags.push tag
result =
url: url
name: name
add_date: add_date
tags: tags
results.push result
RESULTS = results;
console.dir results
# console.log RESULTS |
Oh. much better with Pastel Dark Theme now. Thanks. May I asked what font you are using in Sublime Text. It looks slightly clearer than Monaco on my screen. |
Monospace is what I use. By the way Twilight is my favorite color scheme. Be sure to try it out! |
@aponxi Yeah, Twilight is much cooler than Monokai, I'm switching to it. |
Attributes and methods of a class are different,
I think it's better to highlight the
@
to make it striking.The text was updated successfully, but these errors were encountered: