Author | Message | Time |
---|---|---|
Dynobird | What java editor do you guys use? I'm looking for a fast, reliable one (no trojans or viruses!)... I'm a little sick of IDEs... what do you think I should get? I also want one that looks cool =P | August 2, 2005, 1:50 AM |
Myndfyr | I use Notepad. | August 2, 2005, 1:57 AM |
Kp | Vim. | August 2, 2005, 4:14 AM |
Quarantine | Eclipse or JCreator. | August 2, 2005, 4:19 AM |
R.a.B.B.i.T | Eclipse :) | August 2, 2005, 4:30 AM |
Dynobird | does Vim have a built-in compiler ? | August 2, 2005, 1:29 PM |
Kp | No, that's a terrible idea. Why would you want to integrate disparate functions like text editing and compilation? You're far better off to set a policy of SloppyFocus and reserve a separate terminal window for the compilation output. Although if you really want to integrate them, compile Vim with +quickfix and use :make, :cf, and related commands to jump among the errors. Note that if you use some unusual compiler, you'll probably need to reset the 'errorformat' option. If you're lucky, the :compiler command will recognize your compiler and set everything up for you. Use it without arguments to see what compilers it knows. | August 3, 2005, 2:01 AM |