Earlier quoted context omitted.
For me the "killer feature" is a graphical editor (like VSCode or the Jet Brains editors) but with performance more like vim. I'm also very much enjoying the modal editing, which VSCode lacks.
>> I'm also very much enjoying the modal editing, which VSCode lacks. The VSCode Vim plugin works great: https://marketplace.visualstudio.com/items?itemName=vscodevi...
Zed on Linux Is Here
41–50 of 703 posts
Re: Zed on Linux Is Here
#42Zed seems like its gotten a lot of buzz on HN, and its great to see new players in the space. For those who have used it, what are some of the killer features?
For me the "killer feature" is a graphical editor (like VSCode or the Jet Brains editors) but with performance more like vim. I'm also very much enjoying the modal editing, which VSCode lacks.
Re: Zed on Linux Is Here
#43Will definitely try one this out!
Although the amount of plugins and community knowledge of vscode is immense.
Re: Zed on Linux Is Here
#44Earlier quoted context omitted.
Its killer feature seems to be speed. Otherwise I dont see much of a reason to use it over VS Code.
Have you had much success with VS Code's multiplayer extensions? I've found them buggy to the point of useless, but maybe things have improved. Zed, on the otherhand, is developed by people who understand pair programming, which is my priority.
Re: Zed on Linux Is Here
#45Zed seems like its gotten a lot of buzz on HN, and its great to see new players in the space. For those who have used it, what are some of the killer features?
It's also collaboration-first, and unlike VS code, I believe the software behind collaboration mode is open source
Re: Zed on Linux Is Here
#46Re: Zed on Linux Is Here
#47Re: Zed on Linux Is Here
#48Really dislike the one line installer. How is it installing? Flatpak? Adding an apt repo? Manual install? Fortunately docs go into better detail, https://zed.dev/docs/linux I'm on Debian anyway so who am I kidding expecting this to be in apt :D
Pipe the script to cat before you pipe it to sh and take a look. It's downloading an executable to ~/.local/bin. If that's not your preference, there are many other options for obtaining the software, via your distribution or manually. I feel the backlash to this pattern is pretty overblown. They're not attempting to hide anything, just make the common case convenient.
Their full install docs is like 5 lines of code so it is much preferred to do it that way. Every distribution is different. The ideal install here would be to add a unique apt repo for zed and then it becomes part of my normal update process. Updating a binary in a directory is not the end of the world... but I would prefer to know that upfront versus needing to hunt down where it was placed in order to do the updates.
edit its 4 lines. seeing this is much preferred to parsing a bash script that is intended to support all distributions:
wget https://zed.dev/api/releases/stable/latest/zed-linux-x86_64.tar.gz
mkdir -p ~/.local
tar -xvf zed-linux-x86_64.tar.gz -C ~/.local
ln -sf ~/.local/bin/zed ~/.local/zed.app/bin/zedRe: Zed on Linux Is Here
#49Really dislike the one line installer. How is it installing? Flatpak? Adding an apt repo? Manual install? Fortunately docs go into better detail, https://zed.dev/docs/linux I'm on Debian anyway so who am I kidding expecting this to be in apt :D
Re: Zed on Linux Is Here
#50How to install/activate extensions? I saw that exists a directory called "extensions" in the repository.
Ctrl + Shift + X or use the top right dropdown menu.