CoffeeScript-Sublime-Plugin icon indicating copy to clipboard operation
CoffeeScript-Sublime-Plugin copied to clipboard

Syntax Highlighting - Quotation marks and spacing

Open Rjoss opened this issue 11 years ago • 2 comments

As of 0.5.3 - single or double quotes break when not spaced from equal

// syntax highlights normal
sampleVar = "/url/path"

// syntax highlights break. Code from here on out highlights as if a quote is missing
sampleVar="/url/path"

Screenshot

Rjoss avatar Nov 30 '12 21:11 Rjoss

I apologise, I should have tested the pull request more before accepting it.

Here is the problem so you can fix it locally if you wish until I push an update - http://git.io/-bOoQw

Xavura avatar Dec 01 '12 08:12 Xavura

+1, just came to report the same issue

Breaks

a='0' + b
a ='0' + b

Works

a = '0' + b
a= '0' + b

Iristyle avatar Jan 04 '13 19:01 Iristyle