vote up 4 vote down star
8

I need to let user to edit some code in my web-app. I want to highlight the syntax as he types.

Note: I need code to be highlighted on the fly, right inside editor control. I do not need offline source highlighters.

Is there some free JavaScript-based code editor which does the job?

I'll need to highlight Lua syntax, but I can add it myself, if editor API is adequate.

flag

6 Answers

vote up 6 vote down check

This one is quite good Edit Area

link|flag
The URL is cdolivet.com/index.php?page=editArea – altCognito Apr 2 at 12:29
I just downloaded EditArea and integrated it with my existing webpages. No problems. I tested on Firefox 3.0, IE8, and Chrome. – Corey Trager Jul 4 at 1:44
(The coding language I'm having it parse is SQL) – Corey Trager Jul 4 at 1:47
vote up 1 vote down

+10 for CodeMirror

@Rahul: It is relativly easy to write your own parser for CM

link|flag
vote up 4 vote down

I just came across CodeMirror, which is apparently also in use by Google in their AJAX APIs playground, which serves as a good demo.

This one enriches a textarea (using an iframe) and is therefore editable, unlike Prettify and SyntaxHighlighter, which merely give syntax highlighting to a non-editable element. It also works in WebKit, which EditArea didn't when I tested it.

One downside, however: looks like the inbuilt language support is limited to clientside web development stuff, like Javascript, XHTML, CSS, etc, and not many server-side languages (correct me if I'm wrong).

link|flag
vote up 1 vote down

I saw on Scott Hanselman's blog that he recommends SyntaxHighlighter. The code samples on his site look very nice. But one of the comments says the script has bugs with scrolling. I've also heard good things about prettify, but it may have bugs with formatting VBScript code.

link|flag
vote up 1 vote down

Prettify works on several different languages.

link|flag
vote up 1 vote down

I've seen this one being used a lot lately (no LUA support though):

http://code.google.com/p/syntaxhighlighter/

link|flag

Your Answer

Get an OpenID
or

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