Published | Actual | |
Wargrave | 07:51 | 07:51 |
London Paddington | 08:29 | 08:33 |
Since 2001 I have been using a text editor called jEdit, at the time I was supposed to use Borland JBuilder on my work RedHat machine, however this combination had stability issues so jEdit was the alternative that I found. The large number of plug-ins allowed me to turn jEdit into an IDE which could build using ANT, run Java apps and also debug them. I used this for many years in production environments and for my university dissertation, the subject of which I aimed to turn into a jEdit plug-in
Now that I do a lot of package development (Palantir, Documentum, LiveCycle, fileNet) I have to use Eclipse, this is because most of their dev tools are Eclipse based, sometimes it’s just easier to comply that trying to bend another IDE to fit. I do still have jEdit installed for use as my primary text editor though as there are some features in there that I’ve never found anywhere else and jEdit just makes doing some things quicker. The one plug-in I particularly like is Code2HTML, this will take a buffer and turn its entire contents into formatted and colourised HTML, here is a HelloWorld example:
package examples; public class HelloWorld { public static void main(String[] args) { System.out.println("Hello World"); } }
The other plug-in I would be lost without is MarkDown, the use of which will be the subject of my next post…