vote up 3 vote down star
2

I've found syntax highlighters that highlight pre-existing code, but I'd like to do it as you type with a WYSIWYG-style editor. I don't need auto-completed functions, just the highlighting.

As a follow-up question, what is the WYSIWYG editor that stackoverflow uses?

Edit: Thanks to the answer below, I found two that look like they might suit my needs: EditArea and CodePress

EDIT: See this question also:
http://stackoverflow.com/questions/379185/free-syntax-highlighting-editor-control-in-javascript

flag

6 Answers

vote up 2 vote down check

Here is a really interesting article about how to write one: (Even better, he gives the full source to a JavaScript formatter and colorizer.)

Implementing a syntax-higlighting JavaScript editor in JavaScript or A brutal odyssey to the dark side of the DOM tree

How does one do decent syntax highlighting? A very simple scanning can tell the difference between strings, comments, keywords, and other code. But this time I wanted to actually be able to recognize regular expressions, so that I didn't have any blatant incorrect behaviour anymore.

Importantly, it handles regex correctly. Also of interest is that he used a continuation passing style lexer/parser instead of the more typical lex (or regex) based lexers that you'll see in the wild.

As a bonus he discusses a lot of real-world issues you'll run into when working with JavaScript in the browser.

link|flag
His examples weren't what I was looking for, but he had two links at the bottom of the page that I found helpful. Thanks. – VirtuosiMedia Sep 14 '08 at 21:55
vote up 3 vote down

See Google code pretify.

See this question for the edit control that stackoverflow uses.

link|flag
Thanks for the link on the edit control that stackoverflow uses. Pretify looks nice, but wasn't quite what I meant by live highlighting. TinyMCE and a few other WYSIWYG editors show what your page should look like while you're typing in the textarea...I'm looking for one that does the same for code. – VirtuosiMedia Sep 14 '08 at 21:30
vote up 2 vote down

The question might be better stated as "What syntax-highlighting editor do you recommended to replace an html textarea in my web app?" (Some of the other answers here deal with desktop apps or pure-syntax highlighters, not client-side editors)

I also recommend CodeMirror, it's written in Javascript and supports lots of browsers. It uses a real parser (rather than regexps) so it can deal with complex problems like correctly highlighting escaped strings. The developer is also very responsive on the discussion group.

link|flag
vote up 0 vote down

I dont program a lot of javascript but JSEclipse has been pretty helpful for me in the past. It comes as an Eclipse plug-in.

I've been using it for years for free

http://www.interaktonline.com/products/eclipse/jseclipse/overview/

I also rely heavily on FireBug for Firefox whenever I deal with Javascript

link|flag
vote up 0 vote down

You can also try http://softwaremaniacs.org/soft/highlight/en/ - it's fast, it supports not only javascript but many other languages. And if you need a live preview of how the highlighting will work, you can use setInterval to run the highlighting and show it in a separate box.

link|flag
vote up 0 vote down

Although it has a steep learning curve, Vim is the best editor out there, for any language. It has a GUI version, but really shines in terminal editing. Any time spent learning how to use this editor is not time wasted. It has syntax highlighting, as you're looking for, as well as thousands (literally) of other features and plugins.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.