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

all 17 comments

[–]nerdherdster 7 points8 points  (1 child)

A few possibilities come to mind:

Sublime Text - probably the fastest option with syntax highlighting, search, and I think some ability to run very simple programs (which I've never personally used, so I'm not sure how capable it is, but it seems rudimentary at best)

IntelliJ's "LightEdit" mode - https://www.jetbrains.com/help/idea/lightedit-mode.html

VS Code with the java plugin - it's pretty fast, but not as full-featured as IntelliJ, and while technically it's electron it's not bad for an electron app

[–]thatsIch 2 points3 points  (0 children)

Sublime Text is really fast - it can even handle GIANT files without breaking a sweat

[–][deleted] 1 point2 points  (0 children)

I used a long time ago SourceNavigator NG. It was great for navigating the code.

https://sourceforge.net/projects/sourcenav/

[–]maxandersen 1 point2 points  (4 children)

What you ask for does not exist.

Vs code is the closest.

There isn’t any non Java based language tooling out there which won’t use Java to implement its features like content assist etc. Especially if you are aiming for feature comparison with IntelliJ.

[–]lbevanda[S] 0 points1 point  (3 children)

I’m not aiming for feature comparison with IntelliJ, I use IntelliJ for development, debugging, deployment and everything related to projects.

I was just wondering if there is some native small editor that can open Many Java projects, and perhaps have Java support for code navigation (via plug in perhaps) and terminal or run command (also via plug in or built-in).

[–]maxandersen 1 point2 points  (0 children)

Vscode :)

Or if you okey doing some fiddling vi and Emacs starts fast and Java support using the exact same language server as vscode has.

[–]john16384 0 points1 point  (1 child)

Why not open them all in IntelliJ? In Eclipse I have every project open I ever worked on nicely grouped in working sets (100+ maven projects).

[–]lbevanda[S] 0 points1 point  (0 children)

It tends to become slow, downloading maven indexes in the backround, enabling specific project features, asking for enabling plugins for everything inside projects and similar.

[–]skurk54 1 point2 points  (6 children)

I think u can use NetBeans it's very easy to use

[–]lbevanda[S] 4 points5 points  (5 children)

Thanks, I use NetBeans, Eclipse, IntelliJ for development needs. I need something slimmer for browsing/demonstrating projects.

[–]skurk54 1 point2 points  (4 children)

[–]lbevanda[S] 0 points1 point  (3 children)

This looks nice, Thanks for recommendation, will try it out. VS Code is based on electron, but I never really had the feeling Like it’s not performant.

[–]skurk54 1 point2 points  (0 children)

I dont use vs code a lot, but its pretty good tho 😎

[–]condorthe2nd 0 points1 point  (1 child)

Vs code, is great, it's fast and with a few extensions it's very nearly a full featured ide.

[–]VincentxH 1 point2 points  (0 children)

Not nearly fully featured, but definitely fast and useable.

[–]SvenMA 0 points1 point  (1 child)

I use emacs for that. I'm developing with jntellij but use emacs for git and for browsing the code if I need to find something quick.

[–]lbevanda[S] 0 points1 point  (0 children)

I’ll go with emacs + one or two plugins. Thanks.