defunkt / coffee-mode

Emacs Major Mode for CoffeeScript
http://ozmm.org/posts/coffee_mode.html
574 stars 147 forks source link

Wront fontification for Intepolation blocks #287

Closed thomasf closed 9 years ago

thomasf commented 9 years ago

I think this started to happen very recently but I'm not sure.

image

testMethod = (id) ->
  req = request.post("/api/methods/#{id}/test/")
  promise = reqPromise req
  promise.then (v) ->
    console.log v
    Stores.method.testResultAdded.dispatch(v)
  true
syohex commented 9 years ago

@thomasf Thanks for information. I fixed at #288. Would you check latest version ?

coffee

thomasf commented 9 years ago

Works fine, thanks.