There are some free code editor but no good free ide. Jetbrain are the main player and their products are paid. I am finding a jetbrain alternative that is free
Jetbrain does have community editions that are open source.
Zed, a collaborative code editor, is now open source
421–430 of 642 posts
Re: Zed, a collaborative code editor, is now open source
#422There are some free code editor but no good free ide. Jetbrain are the main player and their products are paid. I am finding a jetbrain alternative that is free
I'm guessing you don't consider VSCode an IDE? I'm curious, what features do you use in IDEs that are missing in VSCode?
They have a IDE called Visual Studio and it is different from VSCode
Re: Zed, a collaborative code editor, is now open source
#423Earlier quoted context omitted.
It's not just tree-sitter that makes zed feel snappy. If you're using a reasonably fast language-server, which rust-analyzer apparently is (I didn't know this using vscode), the autocomplete & intentions feel instantaneous. I think the team has learned a lot from previous editor implementations (they were the core team of atom that was notoriously slow), and so they've had an opportunity to do a lot of stuff right. F…
I've been impressed with the C++ clangd language server snappiness in Zed compared to both CLion (my old favorite) and Emacs (apple of my eye for 2.5 yrs). I always thought the major slowness was coming from clangd itself, so I'm surprised and impressed to see that Zed appears to be quicker on this front. I might be using Zed as a 'second opinion' editor because of this. However, now I'm used to the infinite customiz…
Re: Zed, a collaborative code editor, is now open source
#424Earlier quoted context omitted.
What do you mean? "L" and "H" do move the cursor right and left for me just fine. It does not have macro recording/playback or extended commands though so it's not a full fledged vim emulation mode unfortunately.
Yeah, it's pretty annoying for any long-time vim user to not be able to use the macros, which Zed doesn't support. Biggest issue I've had with this editor for sure.
It doesn't have a vim mode if there is no macro support. Plain and simple.
Re: Zed, a collaborative code editor, is now open source
#425This looks really nice, but I am confused why the install is over 350mb, including a 300mb binary. I thought Electron-based stuff was big but this is even somehow more!?
Re: Zed, a collaborative code editor, is now open source
#426Earlier quoted context omitted.
I’m really picky about my tools in general and latency in particular, and I give Zed a spin from time to time, it’s sweet. Clean, minimal design aesthetic, tree-sitter, tight code, it’s a nice bit of work and I dig it a lot. But emacs 29 with the right flags and a tuned GC (no one does this! it’s got a heap-size from the 80s!) is just as snappy and has more amazing packages than VSCode. There’s a market for people wh…
How do you get a reasonably fancy Emacs to start up/open files quickly? Every time I try to get into EMacs after adding a few packages it becomes painfully slow to open a file for editing. Then I try to understand Emacs server, then I fail / give up and go back to vim.
Re: Zed, a collaborative code editor, is now open source
#427Re: Zed, a collaborative code editor, is now open source
#428Re: Zed, a collaborative code editor, is now open source
#429I'm generally a big fan of zed and have been using it for 60%ish of my dev time for 6 months or so. A couple of nice things to note: - It really is remarkably responsive,and makes one really notice how UNresponsive everything else is. I have reasonably fast machines, so we're not talking about the difference between 5ms typing lag and 500ms, but it's still pretty surprising. VSCode never felt slow on my macs until I…