Remix.run Logo
barkingcat 6 days ago

There's also the Eclipse VScode-look-alike-reimplementation called TheiaIDE

https://theia-ide.org/

It was rough a few years ago, but nowadays it's pretty nice. TI rebuilt their Code Composer Studio using Theia so it does have some larger users. It has LSP support and the same Monaco editor backend - which is all I need.

It's VSCode-with-an-Eclipse-feel to it - which might or might not be your cup of tea, but it's an alternative.

kookamamie 6 days ago | parent | next [-]

> Try Theia IDE online

click

> Please login to use this demo

close tab

lastdong 6 days ago | parent | next [-]

Agreed not the most well thought landing page, but the explore page gives a good insight of how it’s being used and what it looks like: https://theia-ide.org/theia-platform/

(Scroll down to Selected Tools based on Eclipse Theia)

6 days ago | parent | prev [-]
[deleted]
bobajeff 6 days ago | parent | prev | next [-]

The feature that keeps me from moving off of vscode is their markdown support. In particular the ability to drag and drop to insert links to files and images *. Surprisingly, no other editor does this even though I use it all the time.

* https://code.visualstudio.com/Docs/languages/markdown#_inser...

newlisp 6 days ago | parent | next [-]

It's also a good alternative to Obisdian if you don't need smartphone support.

jodrellblank 6 days ago | parent [-]

https://dendron.so/ is more or less Obsidian in VSCode, and free and open source.

ozim 6 days ago | parent [-]

But Dendron is a zombie project.

I don’t mind project being done and in maintenance mode. But I am not investing my time into starting using it.

Getting started page has screenshots broken on AWS.

alyandon 5 days ago | parent [-]

I took the plunge and don't regret it. Despite the condition of the web site the extension is very useful and relatively free of any annoying bugs.

At some point in time, I'd like to take the time to invest building a custom version of the extension to bump dependencies to access more modern support for plantuml/mermaid diagrams.

chatmasta 5 days ago | parent | prev | next [-]

Obsidian supports this. (Or at least, it supports pasting an image from clapboard so I’m assuming drag and drop works too.)

pritambaral 4 days ago | parent | prev | next [-]

Interesting.

I belong to the class of people who believe in customising their tools as they please. So I'd have written an Emacs package to do this. But then again, this is Emacs, so someone's probably already done it. Oh, here it is: https://github.com/mooreryan/markdown-dnd-images

Sn0wCoder 6 days ago | parent | prev [-]

Thank you! The timing of this comment is perfect

barrenko 6 days ago | parent | prev | next [-]

But if I'm not wrong here, this is also just the VS Code / Electron still?

oaiey 6 days ago | parent [-]

It is electron and monaco (the text editor itself), but there is a lot more to VS Code / Theia than this two parts.

v3ss0n 6 days ago | parent | prev | next [-]

Yeah , INSEAD of forking vscode which is not modification friendly they should justuse theia because it is maintained to be modular and allowed to be used like a Library to build IDEs of your choice.

v3ss0n 5 days ago | parent [-]

Whoever disagreed and downvoted can you explain me why?

jeffbee 6 days ago | parent | prev | next [-]

Google Cloud Shell is also Theia. I think it is fairly popular.

bayindirh 6 days ago | parent [-]

Eclipse (as in ecosystem) is fairly popular in Enterprise, but since it exposes all the knobs, and is a bona fide IDE which has some learning curve, people stay away from it.

Also it used to be kinda heavy, but it became lighter because of Moore's law and good code management practices all over the board.

I'm planning to deploy Theia in its web based form if possible, but still didn't have the time to tinker with that one.

pjmlp 6 days ago | parent | next [-]

Also to note that VSCode main architect was one of Eclipse architects, and co-author on GoF famous book, Erich Gamma.

bayindirh 6 days ago | parent [-]

Didn't know that. Now, that's interesting.

Using Eclipse as "the Java LSP" in VSCode makes more sense now.

Nevertheless, as much as I respect Erich for what he did for Eclipse, I won't be able to follow him to VSCode, since I don't respect Microsoft as much.

pjmlp 6 days ago | parent [-]

So not also using Github, LinkedIn, TypeScript (any FE framework that uses it), any Microsoft owned studios games, no Linux kernel contributions, GHC contributions,....

It is kid of hard to avoid nowadays.

Here a session with him related to VSCode history,

"The Story of Visual Studio Code with Erich Gamma and Kai Maetzel"

https://www.youtube.com/watch?v=TTYx7MCIK7Y

bayindirh 6 days ago | parent [-]

My personal code doesn't get uploaded to GitHub anymore, and I open my LinkedIn twice a year or so.

I don't do Web Development, I live in the trenches. Since I don't own a desktop system anymore, I don't honestly game.

I'm exposed to them via systemd and Linux Kernel, yes, but at least both are licensed with GPL.

At least I'm trying to minimize my exposure.

For more context, please see https://news.ycombinator.com/item?id=44634786

Thanks for the video, btw. I'll take a look the moment I have time.

v3ss0n 6 days ago | parent | prev [-]

Theia is different from eclipse IDE it's written in JS not in Java and didn't share any code base of eclipse which is fully Java

bayindirh 6 days ago | parent [-]

Yes, I know.

This is why I used "(as in ecosystem)" in the first paragraph. It was a bit late when I wrote this comment, and it turned out to be very blurry meaning wise.

My bad.

fHr 6 days ago | parent | prev [-]

eclipse still is alive holy shit

andylynch 6 days ago | parent | next [-]

Installing the VSCode extension pack for Java runs a headless version of Eclipse JDT under the hood, which isn’t quite what I think of as lightweight.

nsonha 6 days ago | parent | next [-]

What's wrong with that? If they re-implement the whole thing it would amount to the same code size. It's the JDT language SERVER not some sort of "headless" software with UI needlessly bundled.

https://marketplace.visualstudio.com/items?itemName=redhat.j...

Cthulhu_ 5 days ago | parent | prev | next [-]

Java isn't quite what I think of as lightweight. I mean it probably can be, but most Java engineering I know of is all about adding more and more libraries, frameworks, checks, tests, etc.

drewbitt 6 days ago | parent | prev [-]

You can set the launchMode to LightWeight which spins up a syntax-only language server.

6 days ago | parent | prev [-]
[deleted]