Sublime Forum

JavaScript syntax highlighting changes in 3103

#42

I usually ctrl+f for the scope name in this case.

1 Like

#43

Hi wbond, unfortunately I donā€™t have the paid Sublime Text 3 version and cannot get the new highlighting changes from dev. I followed your directions to put a JavaScript folder into Data/Packages, along with the sublime-syntax file, but unfortunately I receive this error when restarting ST:

Error loading syntax file ā€œPackages/PHP/PHP.sublime-syntaxā€: Error in regex: invalid backref number/name in regex (?=^\2\b)

Which is odd, because I havenā€™t touched PHP? Iā€™m using the Portable Sublime Text version. When I set the syntax of a file to HTML, I successfully see the scope of the $ is .dollar, so I know the change is taking; it just breaks my PHP syntax for some reason.

0 Likes

#44

Iā€™ve just found a way to tweak the syntax to not hit the condition causing the PHP error. If you grab the latest copy, it should work much better now.

0 Likes

#45

Youā€™ve done it! My hero!

0 Likes

#46

Howdy,

My main issue is still that I wish the $ symbol in jQuery could be highlighted red, as it was before for me in the Monokai theme. A couple others chimed in as well: Lost jQuery highlighting, upgrading from 3083 -> 3103. All the other changes donā€™t really bother me. I understand that the update was to improve the syntax highlighting, so I appreciate the work!

Just wondering if thereā€™s a way I could customize my JS highlighting, for the $ symbol? Or am I understanding that with the updates to JS syntax, the $ is no longer a special scope that can be targeted?

Thanks

0 Likes

#47

You just need to add punctuation.dollar in your color scheme.

0 Likes

#48

Build 3107 with Monokai highlights the $ in red.

1 Like

#49

Gotcha! I installed 3107 and see that that highlighting is back. However, I also liked having jquery objects prefixed with a $ to differentiate them from non jQuery variables. It doesnā€™t seem to pick that up. Example ā€œvar $someElement = $(ā€™.some-elementā€™);ā€. First one is not highlighted, second one is.

Would editing my color scheme to add puncutation.dollar add in the remaining highlighting Iā€™m looking for? I also donā€™t quite see where to grab the existing color scheme / insert a new rule. The stackoverflow questions seem to be a little outdated - perhaps because of the recent updates to syntax?

0 Likes

#50

Yes adding the rule would work.
You can find the color scheme in the file Color Scheme - Default.sublime-package in your install directory (for windows itā€™s C:\Program Files\Sublime Text 3\Packages).
You can unzip this file, take the theme you want, copy it in a directory ā€œColor Scheme - Defaultā€ (to override the default one) inside your package directory and add somewhere

	<dict>
		<key>name</key>
		<string>Dollar</string>
		<key>scope</key>
		<string>punctuation.dollar</string>
		<key>settings</key>
		<dict>
			<key>foreground</key>
			<string>#F92672</string>
		</dict>
	</dict>
1 Like

JavaScript Syntax Highlighting different in ST3?
#51

Iā€™d recommend looking at the source https://github.com/sublimehq/Packages/blob/master/JavaScript/JavaScript.sublime-syntax and searching for dollar.

That way you can see all of the various scopes for ā€œdollarā€ identifiers. There are quite a few since identifiers can be variables, class names, object keys, etc. Then you can decide if in a given context you want to override the standard color.

1 Like

#52

Aha! This is very helpful. Iā€™m so close to getting it back. I have $variable highlighting $. However, when the variable is accessing a method (which puts it in what, the object scope?), the highlighting stops. Specifically as soon as there is a paren. Eg $variable.example(). Perhaps because an object has a different scope thatā€™s overriding the dollar punctuation scope?

  1. Iā€™m not sure quite what this scope is called, that is overriding.
  2. Can you combine scopes? For example, if there was a scope for a variable that is an object, combining that with dollar.punctuation to only highlight the dollar.

Not sure if my understanding of what is happening is correct, but thatā€™s my best guess at this point.

vs

0 Likes

#53

Nevermind! It works as expected once I updated to 3109 :slightly_smiling:

What I did specifically was follow Clams instructions to add his suggested syntax highlighting rule, to Monokai (I copied Monokai and altered the copy to include it). On OS X, you can find the Monokai theme at ~/Library/Application Support/Sublime Text 3/Packages/User. Just copy Monokai(SL) and make any changes you want. Then in ST, Preferences->Color Scheme->User you should see your theme.

0 Likes

Lost jQuery highlighting, upgrading from 3083 -> 3103
#55

breaks when php is echo into js:

Build: 3114

0 Likes

#56

Build: 3103

0 Likes

#57

Me and my team want to roll back tooā€¦ But I dont know howā€¦ If I just uninstall it and then reinstall it, that would take a lot of time due to regain my last config. Is there any other way to get the old version without reinstall it?

0 Likes

#58

Configuration is not lost when uninstalling and reinstalling a different build.

0 Likes

#59

I have built 3114 and still problem with php html combined highlighting.

0 Likes