Article:
 |
|
text.editor.addicts.txt
|
| Subject: |
|
JEdit |
| Date: |
|
2004-11-05 18:34:29 |
| From: |
|
ee_verman
|
|
|
|
You missed my favorite text editor: JEdit (www.jedit.org).
It has dozens of plugins available that let it do virtually anything text related (text, html, XML, XSLT) and has more syntax highlighting modes that I can count. Plus multiple macro languages, highlighted document comparisons w/ linked scrolling between the new/old versions...
Plus its free.
--ee
|
Showing messages 1 through 3 of 3.
-
JEdit
2004-11-30 10:50:58
heavyboots
[View]
-
JEdit
2004-11-09 08:46:54
ewinslow
[View]
-
JEdit
2004-11-15 18:01:14
tflight
[View]
It has by far the best syntax highlighting--you can break your syntax shading down much further with jEdit than with many of the other text editors.
It also has a thriving developer community that has produced some really great plugins, like Whitespace, BufferTabs, SFTP and Code2HTML that can really speed up your code development.
And be sure that you play around with Abbreviations! These are typing shortcuts, so you can type something like IF#x < 0#x == y# and it will automatically generate this:
if( x < 0) {
// do something
} elseif( x == y ) {
// do something else
} else {
// do that other thing
}