Daniel Kats
Daniel Kats

Reputation: 5554

Notepad++ jQuery Syntax-Highlighting

I am looking for a jQuery syntax highlighting plugin for Notepad++, or at least some XML that I can put in the lang.xml file so my jQuery is more readable.

There is a question about this here but it was closed and not properly answered. It's also mentioned here, but again without a definitive answer.

I know that Notepad++ is not ideal for developing AJAX apps and what-not, but I am happy with it for my use.

Upvotes: 0

Views: 6055

Answers (3)

Vlad Topala
Vlad Topala

Reputation: 916

This guy made an add-on for writing JQuery in notepad++ and I think it will help: https://github.com/jamesallardice/notepadplus-jQuery

Upvotes: 2

Entelardo
Entelardo

Reputation: 141

I developed highlighting "langs.xml" for php, javascript and jquery. Download: langs.xml

"langs.xml" file is in here for windows: C:\Users\YourUserName\AppData\Roaming\Notepad++\langs.xml

I want to say one more thing different. My Dreamweaver theme (Users who use Dreamweaver after use Notepad++). Download Dreamweaver.xml

"Dreamweaver.xml" file is in here for windows: C:\Program Files\Notepad++\themes\Dreamweaver.xml

Upvotes: 0

Federico Giust
Federico Giust

Reputation: 1793

I use Notepad++ a lot, there is no specific plugin for jquery that I know of.

Taken from jQuery website

jQuery is a fast and concise JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development. jQuery is designed to change the way that you write JavaScript.

The JavaScript mode should work for you, I know it works for me. Syntax is the same since it's just a library.

Upvotes: 2

Related Questions