vote up 7 vote down star
5

We've all seen in-browser rich text editors, which allow you to edit colored/styled text in a WYSIWYG manner. But what about code editors, which automatically highlight code based on language rules as you type? Think Eclipse in a textarea (but without the refactoring support).

Do such things exist? I imagine scaling would be a problem - larger files would be difficult to edit efficiently.

flag

5 Answers

vote up 4 vote down

As of Feb 2009, Bespin looks very interesting : http://bespin.mozilla.com/

link|flag
vote up 0 vote down

This is a sideways suggestion -- but I use the Firefox plugin "It's All Text!" to send my text-areas to for editing -- all good markups,searching, etc.

Of course, this is user-dependent, and can't be easily rolled-out to visitors, if that is your intent.

However, I tend to get irritated by the limitations of in-browser editors, anyway. (The way SO captures my C-k during edits STILL catches me off-guard... [which means I don't edit everything in Emacs...])

link|flag
vote up 5 vote down

CodeMirror looks interesting, but haven't tried it.

http://marijn.haverbeke.nl/codemirror/

link|flag
looks like exactly what I'm after, thanks – Chris Simpson Oct 20 at 18:51
vote up 1 vote down

Javascript VI, has some bugs but is an interesting idea. VI FTW!

http://gpl.internetconnection.net/vi/

link|flag
that doesnt work in my browser.. perhaps it is because i am using the vimperator plugin for FF. vim ftw! – theman_on_vista Jan 9 at 21:06
vote up 6 vote down

The editArea javascript library does a pretty good job. It's used by the OpenCMS content management system as it's in-place JSP and JavaScript editor. The colorization gets a bit confused when the file is > 2000 lines or so.

The feature list from their page is:

  • Easy to integrate, only one script include and one function call
  • Tab support (allow to write well formated source code)
  • Search and replace (with regexp)
  • Customizable real-time syntax highlighting (currently: PHP, CSS, Javascript, Python, HTML, XML, VB, C, CPP, SQL, Pascal, Basic, Brainf*ck)
  • Auto-indenting new lines
  • Line numbering
  • Multilanguage support (currently: Croatian, Danish, English, French, German, Italian, Japanese, Polish, Portuguese)
  • Full screen mode
  • Can work in the same environment than "protype" and "mootools"'s like libraries.
link|flag
Awesome Thanks!!! – Robert Gould Mar 6 at 6:28

Your Answer

Get an OpenID
or

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