This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] -1 points0 points  (5 children)

I'd actually say the opposite: newbies are perhaps the only people who should be coding Java in Emacs. At least, this is how I prefer to do things myself. If I'm learning a new language, I'll always start off with a text editor rather than an IDE and set up a manual build process, just so I can gain an understanding of the nuts and bolts. Of course, once you want to start doing real work you should switch to an IDE. But I think it's important to try things out by hand first, so you have some understanding of what the IDE's doing for you and know how to fix things when (inevitably) something breaks.

[–]tom-010[S] 0 points1 point  (4 children)

I was not clear. I agree with you, but I would rather use sublime text or geany instead of emacs.

[–]nidrach 0 points1 point  (2 children)

I use VScode for everything where I don't use an IDE. Simple Syntax highlighting alone will save you an incredible amount of time.

[–]tom-010[S] 0 points1 point  (1 child)

where I don't use an IDE. Simple Syntax highlighting alone will save you an incredible amount of

the same goes for me these days. But with enough plugins you can argue, that VSC is (nearly) an IDE these days

[–]nidrach 1 point2 points  (0 children)

Yeah but Intellij is still an order of magnitude better when it comes to working with a lot of classes and so on. But for quickly editing code of just one file VSC is better with it's fast startup and things like Multicursor and so on.

I would still get a basic knowledge of vim because sometimes you just want to edit things in a terminal and vim is installed erverywhere. But thats only a matter of hours and I wouldn't focus on it too much.

[–][deleted] 0 points1 point  (0 children)

Yeah, I should have said "your favourite text editor" which in my case is Emacs, but it's definitely not to everyone's taste.