TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Zed, a collaborative code editor, is now open source

1576 点作者 FeroTheFox超过 1 年前

117 条评论

Octoth0rpe超过 1 年前
I&#x27;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:<p>- It really is remarkably responsive,and makes one really notice how UNresponsive everything else is. I have reasonably fast machines, so we&#x27;re not talking about the difference between 5ms typing lag and 500ms, but it&#x27;s still pretty surprising. VSCode never felt slow on my macs until I started using Zed.<p>- They seem reasonably responsive to feedback. There was some contention around how search&#x2F;replace was initially implemented, and the current builds have something much more usable IMO. I&#x27;m not sure how much that was driven by community feedback, but the changes were great.<p>- The debug syntax tree mode is a really neat feature that I think demonstrates how much more advanced zed is under the hood than older editors that are doing syntax highlighting via regex.<p>There are a few downsides that I&#x27;m hoping get addressed soon:<p>- The collaboration workflow&#x2F;security isn&#x27;t very clear to me. You sign in via github (no other option???), there are &#x27;contacts&#x27; (I guess these are github usernames?), and &#x27;channels&#x27; (where do these live? on zed&#x27;s servers?). I would really like to know if I can self-host the chat server and use a company oauth provider rather than github. If the diffs being passed around are going through zed&#x27;s servers, that may be a showstopper for the company I work for as well. If they&#x27;re p2p and encrypted, maybe not.<p>- I would love to see ollama integration. This + continue is the only reason why I spend any amount of time in vscode now. There&#x27;s an issue for it here: <a href="https:&#x2F;&#x2F;github.com&#x2F;zed-industries&#x2F;zed&#x2F;issues&#x2F;4424">https:&#x2F;&#x2F;github.com&#x2F;zed-industries&#x2F;zed&#x2F;issues&#x2F;4424</a>
评论 #39124314 未加载
评论 #39126726 未加载
评论 #39127184 未加载
评论 #39123045 未加载
评论 #39145021 未加载
评论 #39131169 未加载
评论 #39122595 未加载
评论 #39125817 未加载
评论 #39122071 未加载
tiffanyh超过 1 年前
&gt; GPL for the editor, AGPL for server-side components). GPUI, the UI framework that powers Zed, will be distributed under the Apache 2 license, so that you can use it to build high-performance desktop applications and distribute them under any license you choose<p>Interesting choice on licenses.<p>—-<p>I’m been super happy with Zed, my main requests (and I’ve sent in this feedback to them or contributed to existing GitHub Issues)<p>a. Window Size &amp; Position doesn’t persist after closing Zed.<p>b. I constantly run into Language Server errors<p>c. Alabaster use to work as a theme, doesn’t anymore. Would be great if you could import VSCode themes into Zed<p>All above has tickets open.<p>----<p>Hope these small things get addressed because I truly love the <i>elegant UI design of Zed</i><p>For those who haven&#x27;t used Zed, it&#x27;s the first GUI editor I&#x27;ve used in 25-years of development that wasn&#x27;t distracting.<p>It&#x27;s hard to describe how much more focused I am when not distracted with a Christmas tree scene of icons, menus, colors, etc. like you see in other editors.<p>Zed is very calming, due to its focus on not having distractions. Give it a try if you haven&#x27;t.
评论 #39123448 未加载
评论 #39138487 未加载
评论 #39122877 未加载
评论 #39125696 未加载
评论 #39122590 未加载
philsnow超过 1 年前
I opened a random python project on my machine in Zed and it automatically loaded up an LSP for python. It looks like it&#x27;s using the same one as my emacs uses (pyright), but it presents completion choices in a not particularly useful order. Typing `os.p` gives me for instance as completion choices:<p><pre><code> pwritev pwrite putenv popen pipe path P_ALL P_PID pread pardir P_PGID P_WAIT </code></pre> ... but then I type &#x27;a&#x27; and then backspace and it gives some of the same choices, but in a different order<p><pre><code> P_ALL path pread pardir P_WAIT [etc] </code></pre> here&#x27;s a gif of it, I&#x27;m just typing and backspacing through &quot;os.path&quot; and watching the completions be in an unguessable order: <a href="https:&#x2F;&#x2F;snap.philsnow.io&#x2F;2024-01-24T13-57-09.q7pyi8re104uqhnprtph.gif" rel="nofollow">https:&#x2F;&#x2F;snap.philsnow.io&#x2F;2024-01-24T13-57-09.q7pyi8re104uqhn...</a><p>Is pyright just giving Zed all the possibilities and it&#x27;s up to Zed to rank them? I don&#x27;t know the details of editor&#x2F;LSP integration. lsp-whatever in emacs ranks these choices in a reasonable order.
评论 #39124982 未加载
评论 #39134594 未加载
评论 #39126859 未加载
packetlost超过 1 年前
I hope this leads to Zed being ported to other platforms (Linux, please!)
评论 #39120029 未加载
评论 #39120888 未加载
评论 #39122532 未加载
gloosx超过 1 年前
AI helpers, Chats and Calls??? Microsoft log-in, Commercial plans, Telemetry? Seems like an overload of everything for an editor - more distractions not a new way to code. Def sticking with good old nvim for some longer time, no better editing experience engineered yet
评论 #39130278 未加载
robin_reala超过 1 年前
Really nice and fast (which is the reason I’m still using Sublime instead of VS Code). I’ve only found one piece of functionality that’s dramatically slow compared to Sublime so far: selecting all of the current highlight. In my current file I have 2,396 occurrences of `&lt;span&gt;`. Selecting all of them in Sublime (with ctrl + cmd + g) is certainly less than 200ms. Doing the same in Zed (with cmd + shift + l) beachballs my machine for around 5 secs.<p>For most code work that’s probably not a situation to optimise for, but I often work on large markup documents.
评论 #39122663 未加载
koenbok超过 1 年前
Zed developers, if you read this, please get inspired by Cursors &quot;Fix it&quot; button that you can click on any error. It simply starts a new chat with the code context and error message, suggesting possible fixes.<p>I&#x27;m currently learning Rust and this is such a powerup that I honestly wouldn&#x27;t know how to learn anything without.
评论 #39120106 未加载
评论 #39120191 未加载
rmdashrfv超过 1 年前
I&#x27;ve been following Zed for quite some time now and happy to see them follow through with the OSS move.<p>I personally don&#x27;t like for my editor to send out any kind of external requests at all, and this is actually what keeps me on vim as my main editor. I also don&#x27;t like limited login options<p>It would be cool to have a version that&#x27;s just a stripped down Zed, and if need be you can install the extra stuff as plugins.
WalterBright超过 1 年前
Zed was the name of the Zortech C++ IDE back in the day!<p>It disappeared, though, because the author (Phil Murray) disappeared and we didn&#x27;t have a license to continue with it when Zortech was bought by Symantec.<p>It&#x27;s too bad, it was a nice editor. I never was able to find out what happened to Phil. He was an excellent programmer, and an all around pleasure to work with.
silcoon超过 1 年前
Great idea having a Rust editor fully open-source, and I also saw the GPUI crate in the codebase. Happy to try it!<p>P.S. For the first 5 minutes I thought Zed was developed by Meta... please change that blue :D<p>P.S.S: it&#x27;s incredibly fast, and already has rust-analyzer included.
评论 #39124420 未加载
briantakita超过 1 年前
I had the pleasure of working with Nathan Sobo when he joined Pivotal Labs ~2008. He had a burning desire to create a transformative text edior&#x2F;ide back then. He is bright, not only in an intellectual &amp; talent sense, but also in an energetic sense. He is also compassionate &amp; genuine person. I&#x27;m very happy &amp; inspired every time I see his endeavors progress.<p>Knowing Nathan has been one of the major catalysts for me to improve the art of software craftsmanship. Sometimes you meet amazing people in life &amp; I count Nathan as Amazing in many ways.
评论 #39121353 未加载
mxstbr超过 1 年前
Here is a direct link to the repo: <a href="https:&#x2F;&#x2F;github.com&#x2F;zed-industries&#x2F;zed">https:&#x2F;&#x2F;github.com&#x2F;zed-industries&#x2F;zed</a>
cdchn超过 1 年前
I usually try to get into an IDE from vim every 6 months&#x2F;year and Zed is the first IDE when I actually came close to being successful. Usually what kills me with IDEs is distractions, things getting in your way, and responsiveness. Zed is the &quot;cleanest&quot; IDE I&#x27;ve found so far on many of these points. Not totally 100% (pyright being the most prominent annoyance I&#x27;m trying to turn off right now) but not enough to make it give up in just a few hours!
AlexAndScripts超过 1 年前
How many people find real time sharing helpful? I&#x27;ve never found it to be beneficial. I&#x27;m curious.
评论 #39120079 未加载
评论 #39120216 未加载
评论 #39120072 未加载
评论 #39120761 未加载
评论 #39120039 未加载
评论 #39120821 未加载
评论 #39120558 未加载
评论 #39122239 未加载
评论 #39120447 未加载
评论 #39120472 未加载
评论 #39120124 未加载
评论 #39120051 未加载
NIckGeek超过 1 年前
I just tried Zed and it is definitely really pleasant to use. I&#x27;d need at least a Java LSP to use it for real (and preferably general LSP support so I can code in my own programming languages with it) but I can see a lot of promise. If they ship a Linux release so I could use it on my desktop too they could win me over from Sublime Text&#x2F;IntelliJ.
评论 #39130810 未加载
elashri超过 1 年前
That&#x27;s great news. I actually like their zed font [1] which is custom-built from Iosevka. [2].<p>[1] <a href="https:&#x2F;&#x2F;github.com&#x2F;zed-industries&#x2F;zed-fonts">https:&#x2F;&#x2F;github.com&#x2F;zed-industries&#x2F;zed-fonts</a><p>[2] <a href="https:&#x2F;&#x2F;github.com&#x2F;be5invis&#x2F;Iosevka">https:&#x2F;&#x2F;github.com&#x2F;be5invis&#x2F;Iosevka</a>
评论 #39122994 未加载
评论 #39129365 未加载
KAdot超过 1 年前
Is there a way to disable all &quot;collaborative&quot; features, including removing the &quot;Sign in&quot; button?
评论 #39123038 未加载
评论 #39121026 未加载
microflash超过 1 年前
Their language support story is extremely weak right now (no support for Java, XML, SCSS, etc.). An editor should focus more on editing capabilities (it is editor after all).<p>Also, no option to disable all the collaboration and AI features leaves a sour taste for me. Hopefully, they&#x27;d improve on this later.
评论 #39150301 未加载
evmar超过 1 年前
This 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!?
评论 #39128469 未加载
评论 #39124383 未加载
评论 #39127129 未加载
norskeld超过 1 年前
Interesting to see how they are gonna approach integrating plugins&#x2F;extensions system, because this is likely gonna be one of the major factors affecting adoption and ecosystem growth.<p>Helix devs, for instance, lean towards a Scheme-like implementation. [1]<p>[1]: <a href="https:&#x2F;&#x2F;github.com&#x2F;helix-editor&#x2F;helix&#x2F;discussions&#x2F;3806#discussioncomment-6686976">https:&#x2F;&#x2F;github.com&#x2F;helix-editor&#x2F;helix&#x2F;discussions&#x2F;3806#discu...</a>
piyush_soni超过 1 年前
Tried Zed some time back, the performance was pretty good as compared to VS Code, though gave up when they chose to implement other fancy &#x2F; collaborative features before implementing the most basic requirement from an &#x27;editor&#x27; - Search and <i>Replace</i>. Contacted them but there was no response. Looks like they have replace now, so worth trying again (still hard to give up all the features of Sublime Text yet).
meekins超过 1 年前
It&#x27;s interesting that the #2 selling point on the landing page (the Copilot integration) relies purely on Microsoft&#x27;s goodwill. There is no official API for Copilot but instead a (non-standard) LSP implementation embedded into the proprietary Copilot Neovim plugin. Zed seems to trust under the hood that a release of the plug-in exists on Github, pulls the minified-js language server from there and integrates with that. The minute MS decides to pull the plug on the Neovim plugin Zed loses the functionality as well.<p>I wish we had a proper API to interact with copilot but it seem that pulling everyone else except the dedicated VIM and JetBrains users into VSCode land seems to be more in their interest.
评论 #39129104 未加载
评论 #39129442 未加载
avtar超过 1 年前
To any of the project members here: viewing the zed.dev home page using Safari on an iPhone shows text being cut off. I can’t seem to scroll to the right either to view the remaining content.
评论 #39121722 未加载
评论 #39121226 未加载
palata超过 1 年前
A new desktop app that is not web&#x2F;ElectronJS!!! Amazing! \o&#x2F;
6gvONxR4sf7o超过 1 年前
I recently went down the rabbit hole on CRDTs and would love to know more about what you&#x27;re using under the hood. Did you roll your own?
评论 #39121706 未加载
评论 #39125644 未加载
ushakov超过 1 年前
Also take a look at their freshly open-sourced Rust UI Framework (GPUI): <a href="https:&#x2F;&#x2F;www.gpui.rs" rel="nofollow">https:&#x2F;&#x2F;www.gpui.rs</a>
评论 #39120699 未加载
评论 #39127250 未加载
评论 #39120040 未加载
mortallywounded超过 1 年前
I&#x27;m really happy the Atom team is back with another editor and atoning for the sin of creating Electron.<p>I&#x27;m glad Zed exists and hope it succeeds. I&#x27;m rooting for the team and hope they can put Microsoft&#x27;s editor down the way Microsoft put Atom down.<p>With that being said-- I won&#x27;t be using it. I&#x27;ve been using Vim for ~15 years and I&#x27;ve tried every editor and IDE under the sun. I just can&#x27;t use anything else.
评论 #39146042 未加载
the_duke超过 1 年前
I have wanted to try out Zed for a while, but unfortunately it still seems to be Mac only.<p>Any plans&#x2F;timeline for Linux support?
评论 #39121433 未加载
lbj超过 1 年前
Great alternative for those who can&#x27;t afford Emacs.
veltas超过 1 年前
&gt; GPUI rasterizes the entire window on the GPU, just like a 3D video game.<p>So my laptop will be roasting hot constantly?
评论 #39132522 未加载
safouen超过 1 年前
i&#x27;ve heared about Zed for a long time and it seems promising but as long as it&#x27;s not on windows&#x2F;linux it&#x27;s not for developers.
评论 #39122731 未加载
评论 #39120510 未加载
评论 #39122161 未加载
评论 #39123344 未加载
odiroot超过 1 年前
Zed might be faster but Sublime Text at least runs on Linux, so it wins for me.
评论 #39123572 未加载
DiabloD3超过 1 年前
I was excited, but then I saw it was Mac only.<p>Weird choice, most programmers will never even look at this editor.
评论 #39126247 未加载
评论 #39125738 未加载
评论 #39126019 未加载
评论 #39126001 未加载
评论 #39125858 未加载
lukax超过 1 年前
Very nice to see that it uses native IME. You can test it by pressing ctrl+cmd+space on macOS and see if the Emoji picker shows up.<p>Lapce is another text editor written in Rust but it does not support native IME yet.
Destiner超过 1 年前
I&#x27;ve been using Zed for the last few months, and it&#x27;s amazing, very fast and clean.<p>My only worry is that the collaboration features won&#x27;t be used much, as they require most of the team to use Zed.
sambeau超过 1 年前
I like it!<p>FEATURE REQUEST :)<p>Would it be possible to have option+click+drag create multiple cursors where you drag and not a selection with cursor at the end? Basically, the behaviour that Sublime Text has—Sublime Text&#x27;s multiple cursors are, frankly, awesome.<p>I have found shift+option+drag to create a rectangle, but no way to create vertical lines of cursors through lines of text, and my favourite—drag down to the right of your code to put cursors at the end of every line. I use that all the time: scrape to the right hit ctrl+a to get to the start of a line, cut out and replace text, ctrl+e to the end, add more text etc. Really useful for turning data into code.<p>Option+click+drag is one of the most useful features of Sublime Text and my muscle memory is stuck to it — to the point where I keep Sublime Text around purely for the feature (well, this, the fantastic sort&#x2F;permute lines options, and the live-highlight of regex searches that give you instant feedback of whether your regex is working correctly). Sublime Text is where I do all my data formatting, and where I test every regex before using it in my code.
评论 #39121033 未加载
评论 #39121421 未加载
jayloofah超过 1 年前
One issue I&#x27;ve struggled with in Zed is full language support (linters&#x2F;formatters). Has anyone at the Zed team thought about integrating a metalinter like Trunk Check (<a href="https:&#x2F;&#x2F;docs.trunk.io&#x2F;check" rel="nofollow">https:&#x2F;&#x2F;docs.trunk.io&#x2F;check</a>)?
bogwog超过 1 年前
The homepage has a benchmark that compares Zed&#x27;s &quot;insertion latency&quot; to other editors, and this is the description:<p>&gt; Open input.rs at the end of line 21 in rust-lang&#x2F;regex. Type z 10 times, measure how long it takes for each z to display since hitting the z key.<p>Could someone clarify what that means? My interpretation of that was to go to <a href="https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;regex&#x2F;blob&#x2F;master&#x2F;regex-cli&#x2F;args&#x2F;input.rs">https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;regex&#x2F;blob&#x2F;master&#x2F;regex-cli&#x2F;arg...</a> and start typing &#x27;z&#x27; at the end of line 21, but that doesn&#x27;t seem to make any sense. I guess that repo got refactored and those instructions are out of date?
评论 #39122774 未加载
jscheel超过 1 年前
No way can I use a text editor that requires the hi-perf discrete gfx card. My battery just can&#x27;t take it. Hope I can get all my work done in about 1.5 hours, because that&#x27;s how long the 2019 16&quot; mpb will last with the discrete card running.
评论 #39132637 未加载
ahmednazir超过 1 年前
There are some free code editor but no good free ide.<p>Jetbrain are the main player and their products are paid. I am finding a jetbrain alternative that is free
评论 #39121401 未加载
评论 #39125018 未加载
评论 #39121319 未加载
098799超过 1 年前
Did they call it Zed just so they have a movie to quote when they announce it&#x27;s demise?
radiKal07超过 1 年前
I won&#x27;t switch from neovim but I gave this a try and I quite like it. It really is very fast and snappy. If I were using VS Code I would&#x27;ve switched to this one.
pretext超过 1 年前
Opinion: very lovely and has a great potential. Feature request: toggle dark&#x2F;light theme depending on system theme, just like VSCode and JetBrains IDEs.
nathan_phoenix超过 1 年前
Any pictures of how Zed actually looks? Searched their site and couldn&#x27;t find any...
评论 #39122344 未加载
basilgohar超过 1 年前
I love this, they are doing things in the best way from my perspective. They&#x27;ve used the best copyleft licenses (GPL3 + AGPL3) and they are clear that free&#x2F;open source software does not mean you cannot still make money. As they say, commoditize your compliment. I wish them success, and this move makes me want to look into this tool a lot more now.
sarcasmatwork超过 1 年前
Looks great, but only OSX :(<p>I&#x27;ll stick with vs code for now...
keb_超过 1 年前
This is really exciting. I currently use Sublime Text 4, and coupled with SublimeLSP, it does <i>almost</i> everything I need. What&#x27;s missing is good debugger support and UI integration. What&#x27;s the story like for Zed on that front? I briefly scanned the homepage and did not see mention of a debugger.
bajigologica超过 1 年前
Hi, Great article! Your insights are spot on [topic]. I especially appreciate your point about [specific topic]. It&#x27;s evident you&#x27;ve done your research. Keep up the excellent work! Looking forward to reading more from you.<p>Here is sharing Oracle customer care and billing-related stuff that may be helpful to you. &lt;a href=&quot;<a href="https:&#x2F;&#x2F;www.gologica.com&#x2F;course&#x2F;postgressql-training&#x2F;&quot;rel=&quot;nofollow" rel="nofollow">https:&#x2F;&#x2F;www.gologica.com&#x2F;course&#x2F;postgressql-training&#x2F;&quot;rel=&quot;n...</a>&quot;&gt; <a href="https:&#x2F;&#x2F;www.gologica.com&#x2F;course&#x2F;postgressql-training&#x2F;&lt;&#x2F;a&gt;" rel="nofollow">https:&#x2F;&#x2F;www.gologica.com&#x2F;course&#x2F;postgressql-training&#x2F;&lt;&#x2F;a&gt;</a>
eviks超过 1 年前
Welcome news, hopefully we could eventually get to a modern highly extensible performant text editor!
评论 #39120484 未加载
评论 #39121932 未加载
cultofmetatron超过 1 年前
just downloaded it.<p>pros:<p>* god damn this is fast... vscode feels so bloated by comparison. * lsp integration works great. loaded up a rust project I have and it has good support for autocompletion<p>bad: what keeps me from using it as my daily driver for now<p>* no support for integrated debugger. I use rustrover for rust dev sepcifically because its so easy to set debugger stuff. * daily workflow inolves entering a docker container or sshing into a remote server to edit code. I don&#x27;t see anywhere in zed where I can do this.<p>bottom line: I see a lot of potential here. I&#x27;d love to use this when I&#x27;m just editing some rust code and I need zero distractions but the lack of ssh remote makes this a no-go for all of my paid work at the moment.
Chris2048超过 1 年前
Was confused until I realised I&#x27;d confused Zed, with Xi[1] which is also rust based, and which incidentally has a frontend called &quot;Xim&quot;..<p>Also there&#x27;s a wiki-editor (like Tomboy[2]) called &quot;Zim&quot;[3].<p>[<i>1] <a href="https:&#x2F;&#x2F;github.com&#x2F;xi-editor&#x2F;xi-editor">https:&#x2F;&#x2F;github.com&#x2F;xi-editor&#x2F;xi-editor</a> [</i>2] <a href="https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Tomboy_(software)" rel="nofollow">https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Tomboy_(software)</a> [*3] <a href="https:&#x2F;&#x2F;zim-wiki.org&#x2F;" rel="nofollow">https:&#x2F;&#x2F;zim-wiki.org&#x2F;</a>
account-5超过 1 年前
I remember listening to a changelog episode about zed ages ago. I liked what I heard about but that fact it&#x27;s not for Linux just now and I don&#x27;t have any friends to code with means I&#x27;d likely not use it.
j0e1超过 1 年前
Does Zed plan to support extensions&#x2F;customizations outside of themes?
andsoitis超过 1 年前
On the home page I read this:<p>&gt; Extensively fuzz tested for stability &gt; Performance and power mean nothing without reliability. That&#x27;s why we&#x27;ve subjected Zed&#x27;s critical code paths to randomized tests that help us find and fix rare edge cases. By creating controlled chaos in development, we achieve stability in production.<p>How effective is this approach? Does it catch many issues that would not otherwise have been caught through a more risk-based approach? Conversely, does it tend to catch any significant issues?
vimsee超过 1 年前
What really impressed me is how fast it changes the theme colours.<p>Locate the little arrow in the top right, click it and then select &quot;Theme&quot;.<p>Now use your arrow keys to change the theme and see for yourself. :)
评论 #39123435 未加载
nXqd超过 1 年前
This is very nice, I hope we have a windows version soon. And this might encourage Sublime Text to do the same, it&#x27;s one of the most responsive editor for now, let&#x27;s see.
jeppester超过 1 年前
I was hoping that zed, because it was designed from the ground up to be a collaborative editor, would allow me to start a dedicated server (headless instance) on a development server&#x2F;container, and then let me and my colleague both connect to it and work together.<p>Such functionality would be wildly useful for both remote development and pairing, dev containers etc.<p>Instead I&#x27;ll have to stick with VS Code remote develop + live share, of which the latter feels like a monkey patched afterthought.
评论 #39122775 未加载
sharkjacobs超过 1 年前
I like a lot of what I see of this but<p>1. Whenever I open a new window it fills the full height and width of my screen.<p>2. I just have no faith in a product which hand waves how it&#x27;s going to make money.
评论 #39124182 未加载
评论 #39157799 未加载
max4c超过 1 年前
I’ve been trying out Zed for the past two days. It’s for sure way more zen and focused compared to VS Code and I really enjoy that. At the same time, I felt the syntax highlighting wasn’t to the degree I’m used to and so I had to look a little longer to find certain words I had typed. All in all, I’m trying to find ways to use it because of how smooth it feels
thatxliner超过 1 年前
The thing about the Zed workflow that I don&#x27;t understand is local servers. Say I were to develop a full-stack web app using some frontend meta-framework (e.g., Next.js) and a backend running locally for development (e.g., Supabase). How would that workflow work with Zed? I need that live preview&#x2F;reload available to be productive. Some sort of feedback loop.
评论 #39123242 未加载
评论 #39123496 未加载
Solvency超过 1 年前
Am I alone in thinking the contrast levels on all of their UI screenshots is really faint? It&#x27;s pretty hard on the eyes.
svennidal超过 1 年前
Nice that it’s installable Homebrew. It’s very fast comparing to other GUI editors. Happy to see Vim mode and would love to see more of Vim commands enabled. I can see that you can open splits, but you can’t specify what file to open in a split. But you can move the splits around with the same shortcut as Vim. Looks very promising!
desireco42超过 1 年前
I am not in a market for a new editor... not even a little bit.<p>But overwhelming positive experiences here, that I read, people being happy with using it made me try it out.<p>It really feels different and better. Can&#x27;t say why and what it is. But first impression is very positive, even the theme, I didn&#x27;t feel the need to change it.
theptip超过 1 年前
I had an interesting thought reading their post - is there a brand new open-source monetization strategy in “operate the AI assistant for your tool”? Users can always plug in a local LLM but the fine-tuning and inference optimization is potentially much better from a paid team focusing on the problem.
stephanerangaya超过 1 年前
I am so happy to see GPUI now open source. This is very exciting, really grateful to the team at Zed to do this.
mikaelsouza超过 1 年前
This is so nice! Congrats to the team for the achievement!<p>To commemorate, I am running `brew install --cask zed` right now! :^)
hello_computer超过 1 年前
This is an impressive piece of engineering, but I already have a collaborative code editor. It&#x27;s called vim+tmux, and I can use it over hardware going all the way back to the 80s. The older I get, the more I feel that if I can&#x27;t use it over a VT220, I don&#x27;t want it.
exaldb超过 1 年前
Is there a way to explicitly disable Copilot&#x2F;AI&#x2F;collaboration features? I won&#x27;t be able to use this at work if there&#x27;s a risk that it&#x27;d upload my code. It looks like a very fast editor (with Vim keybindings!) and I&#x27;d love to use it even without AI :)
评论 #39136027 未加载
评论 #39158332 未加载
Sparkyte超过 1 年前
Actually kind of interested in this... I think collaborative code editing is the future of development.<p>I think the next evolution is also combining the collaborative code editing with a virtualized environment. Where it builds and deploys remotely or runs the code for test and validation.
cute_boi超过 1 年前
In my opinion, Zed is the only replacement for Sublime Text 4. Now, it is open source. Wow.
评论 #39120491 未加载
asenna超过 1 年前
Looks awesome. Doesn&#x27;t support syntax highlighting for Solidity yet and from a quick search, I couldn&#x27;t tell if there&#x27;s any plugin&#x2F;extension I could install (or how to do it). Any pointers?
评论 #39121793 未加载
souvlakee超过 1 年前
Does anybody know if I can add custom keybindings to switch between the code editor and the files tree? Also, can someone evaluate how Zen is configurable in terms of &quot;only keyboard&quot; usage way?
krainboltgreene超过 1 年前
A really really solid editor with some very good choices made, with exactly one exception: The LLM integrations. It&#x27;s annoying to disable (3+ settings in different ways?) and by default on.
评论 #39122066 未加载
bartekpacia超过 1 年前
This is awesome news. Thank you very much! I looked at Zed some time ago and even though I liked it, it being closed source and not very popular didn’t make me “trust” that it was gonna last.
satvikpendem超过 1 年前
Interesting that they don&#x27;t compare their speed to Vim, as while it&#x27;s not an IDE per se, Vim is still widely used as a code editor. It&#x27;d be interesting to see the comparison.
评论 #39123722 未加载
zensayyy超过 1 年前
would be nice to have the collaboration feature something like LSP with an easy to implement protocol. I can see that being useful but you gotta let the people choose their tools too. If I can run neovim&#x2F;jetbrains&#x2F;visualstudio and can connect to someones Zed Collab protocol beacon, that would be awesome af for at least the basic features (file browser and seeing live edits). This whole notes&#x2F;chat thing can stay a specific zed feature IMO
vouaobrasil超过 1 年前
I just tried it and it&#x27;s one of my favourite text editors for MacOS already. Lite-XL and VS Code are my others. All other text editors for MacOS are too weird.
deepakhj超过 1 年前
Why can&#x27;t I see hidden files or folders like .circleci?
eggy超过 1 年前
I have 2 Macs, PCs, and Linux. I need a cross-platform editor, for which I use emacs or VS Code right now. Will Zed eventually go cross-platform before 2025?
评论 #39132414 未加载
zlat1997超过 1 年前
Looks really good, but without remote development features (connect to server via ssh &amp; attach to docker container) it is useless, at least for me.
shane_kerns超过 1 年前
No Terraform support even though there is an LSP?
评论 #39125587 未加载
photonbucket超过 1 年前
How does GPUI compare to other gui libraries?
dancemethis超过 1 年前
Congratulations and kudos on picking a strong Free Software license! Thank you for pushing the world into better places.
rckt超过 1 年前
Launched it on Macbook Pro Mid 2015. I can&#x27;t say that I noticed any speed difference in comparison to the VSCode.
gigatexal超过 1 年前
So now that it’s open a community effort to get Linux and other non-Mac ports of this could be a thing?
mgrandl超过 1 年前
Exciting stuff! Have enjoyed using Zed so far although I haven&#x27;t been able to fully switch over.
juxhindb超过 1 年前
Definitely looks cool! I look forward to trying it on Linux down the road with Berkeley Mono font.
imbnwa超过 1 年前
Is the lack of Java support because everybody thinks IntelliJ runs the table so why bother?
koolala超过 1 年前
Is Channels what they call the collaborative component? It isn&#x27;t open sourcing?
评论 #39121483 未加载
overtomanu超过 1 年前
Is Java not supported language?
评论 #39123430 未加载
评论 #39122972 未加载
solardev超过 1 年前
Are there any screenshots or feature lists anywhere? I couldn&#x27;t find them.
deadbabe超过 1 年前
How does it compare to sharing a vim session through tmux with multiple users?
idk1超过 1 年前
Is this good for Ruby and Javascript &#x2F; Typescript code?
itunpredictable超过 1 年前
Pleeeeeeease fix the letter spacing on the blog, my eyes are burning
shdh超过 1 年前
Love Zed, just wish it was available on Linux and Windows as well.
v3ss0n超过 1 年前
No Linux and windows support yet. This needs a big wait time then.
vcdimension超过 1 年前
Unfortunate name; it clashes with the builtin zshell editor.
yawboakye超过 1 年前
would be great if all or part of ‘We&#x27;re excited to announce that Zed is now an open source project’ were hyperlinked to the repository, wouldn’t it?
warthog超过 1 年前
I really did not need another choice overload complex, particularly when it comes to my choice of code editor. Though this seems good.<p>Somebody please tell me what to use. No &quot;depends on what you wanna do&quot;. Just which one.<p>Thank you
评论 #39123434 未加载
yvsong超过 1 年前
Since it&#x27;s on macOS, are there any Xcode themes?
HankB99超过 1 年前
It baffles me that with over 500 comments, no one has mentioned that `zed` is one of the back end processes that monitors health of ZFS file systems.
bluecrab超过 1 年前
1,300 issues on github is crazy.
RonnieOwnsLexus超过 1 年前
When will it come for windows ?
adamsilkey超过 1 年前
Does Zed have vim keybindings?
评论 #39122063 未加载
评论 #39122151 未加载
ncrmro超过 1 年前
Was there pictures somewhere?
rs_rs_rs_rs_rs超过 1 年前
Not a screenshot in sight...
评论 #39145957 未加载
colesantiago超过 1 年前
So what is the play here with Zed being open source?<p>How does Zed make money here?
评论 #39120876 未加载
评论 #39122485 未加载
Bnjoroge超过 1 年前
zed&#x27;s great but they need to prioritise remote ssh like vscode. literally the main way most people do dev
评论 #39121962 未加载
评论 #39122614 未加载
评论 #39123148 未加载
评论 #39135401 未加载
评论 #39122175 未加载
评论 #39122048 未加载
thomastjeffery超过 1 年前
It took me <i>way</i> too long to figure out that Zed exclusively runs on OSX. Why is that not in the first paragraph of their landing page?<p>edit:<p>It&#x27;s not even <i>on</i> the landing page, or even on the about page! The landing page has an entire section, &quot;Work with code on any machine&quot;!<p>This is worse than bad.
评论 #39123453 未加载
评论 #39123068 未加载
评论 #39122944 未加载
评论 #39123361 未加载
评论 #39123418 未加载
评论 #39123198 未加载
评论 #39123925 未加载
评论 #39122986 未加载
评论 #39123692 未加载
评论 #39123428 未加载
评论 #39123032 未加载
评论 #39124004 未加载
Zekio超过 1 年前
You know the AI craze is real when adding chat gpt-4 to a text editor is higher priority than Linux and&#x2F;or Windows support
评论 #39122006 未加载
评论 #39122156 未加载
评论 #39122269 未加载
评论 #39122835 未加载
评论 #39122495 未加载
评论 #39122481 未加载
myaccountonhn超过 1 年前
Tangent: I wish we could standardize real-time code sharing the same way we have with LSPs. It is sad that if you want to pair-program, both have to be using the same editor. It really makes more sense to have one standard format so that one person can use VSCode and another can use Vim or Zed. If you want to make it standard practice you have to enforce everyone to use the same editor, which sucks.<p>Already at work some people have complained that I don&#x27;t use VSCode for code-sharing.
评论 #39120045 未加载
评论 #39120189 未加载
评论 #39122887 未加载
评论 #39120037 未加载
Cannabat超过 1 年前
&gt; respond to your keystrokes on the next display refresh<p>Claimed insertion latency for a keystroke: - zed 58ms - subl 75ms - vscode 97ms - clion 83ms<p>60 Hz displays refresh once every ~16.6ms. 58ms to insert a character is ~3.5 frames. My laptop can do 120 Hz, and other monitors can even do 300 Hz.<p>Yeah, it&#x27;s a lot faster than the other editors, but 58ms seems really slow - definitely not &quot;next display refresh&quot;. All of them seem really slow.
评论 #39122296 未加载
评论 #39122206 未加载
评论 #39122165 未加载
评论 #39122170 未加载
drewdevault超过 1 年前
Consider discarding the CLA if you anticipate third-party contributions. If you need to verify provenance, the Developer Certificate of Origin is a better approach. Otherwise, this (correctly) reads as a project which intends to take advantage of FOSS contributors for a while before pulling the rug and making it non-free again.
评论 #39121125 未加载
评论 #39122866 未加载
评论 #39120962 未加载
munhitsu超过 1 年前
It&#x27;s nice to see that CRDT mental model is spreading
Thaxll超过 1 年前
I looked at some random files, did not find a single comment, very strange.
评论 #39122641 未加载
numitus超过 1 年前
I am just wondered, how many lines of codes people writes every day, that code-editor speed is so important?
评论 #39124327 未加载
subarctic超过 1 年前
If it&#x27;s open source, why do I have to agree to a bunch of terms and conditions that look suspiciously not like a standard open-source software license when I try to install it?