lapce VS zed

Compare lapce vs zed and see what are their differences.

lapce

Lightning-fast and Powerful Code Editor written in Rust (by lapce)

zed

Code at the speed of thought – Zed is a high-performance, multiplayer code editor from the creators of Atom and Tree-sitter. (by zed-industries)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
lapce zed
178 28
32,249 32,357
3.3% 18.4%
9.6 10.0
4 days ago 4 days ago
Rust Rust
Apache License 2.0 GNU General Public License v3.0 or later
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

lapce

Posts with mentions or reviews of lapce. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-22.

zed

Posts with mentions or reviews of zed. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-21.
  • I can't stand using VSCode so I wrote my own (it wasn't easy)
    10 projects | news.ycombinator.com | 21 Apr 2024
  • What is your favorite IDE/text-editor?
    1 project | news.ycombinator.com | 13 Apr 2024
    Currently vim, but I’m very excited about Zed.

    https://zed.dev/

  • Zed and AI will save us millions
    3 projects | dev.to | 9 Apr 2024
    The software engineering world has changed a lot, but it seems like both workers and companies haven't fully caught up yet. Recently, I've been having a lot of fun using Zed. It made programming enjoyable for me again, just like it was many years ago. Some people think Zed is just another unfinished editor, but that's not right. Zed is an AI tool. If you're not using Zed with GitHub Copilot and OpenAI GPT, you're not using it correctly, and you likely don't need Zed at all.
  • Zed Decoded: Async Rust
    2 projects | news.ycombinator.com | 9 Apr 2024
    I don't mean to reply-guy this thread, but it builds on Windows (and Linux)

    https://github.com/zed-industries/zed/blob/main/docs/src/dev...

  • My First Impression of Zed AI Code Editor
    1 project | dev.to | 29 Mar 2024
    You can try it out by downloading it from here https://zed.dev/
  • A coding copilot with Claude 3 Opus
    1 project | news.ycombinator.com | 6 Mar 2024
  • Building a syntax highlighting extension for VS Code
    12 projects | dev.to | 1 Mar 2024
    Now, fast forward to last year's Rails World conference that I was a lucky attendee of. What a breeze of fresh air! Among the many many inspiring people, talks and presentations, I noticed one thing: most people use VS Code, some use Vim but – more importantly – a lot of people tweak their editor / IDE almost as routinely as they tweak the code they work on professionally! And I thought: I want that too, how come I've lost this mindset here? I’ve taken for granted that I can tweak every imaginable aspect of my Linux OS as well as the Gnome environment so why not my IDE – the program that I literary spend most hours a day in? That was the final nudge for me to try to switch to something – anything really – that would be feasible for me to tweak and that’s how I ended up in VS Code. I’m not saying this will be my final IDE destination (looking at you Zed, Fleet or perhaps even Vim) but I know I want to stay closer to where a more active developer community around the editor is.
  • Local LLM Assistant in Zed
    2 projects | news.ycombinator.com | 22 Feb 2024
    The GitHub issue #4424 for Zed relates to the lack of a feature for using local large language models (LLMs). In response to this, I proposed a workaround that enables the integration of local LLMs into Zed. This solution addresses the need for a non-proprietary, offline alternative to mainstream models like ChatGPT, potentially increasing privacy and control for users.

    To integrate a custom model in Zed, I bypassed the limitation of only using OpenAI models. I did this by running the Mistral model from the Ollama library and cloning it to appear as "gpt-4-1106-preview." The steps included pulling and running the Mistral model, then using Ollama's commands to clone it. I updated Zed's settings to point to the local API URL of the cloned model. Restarting Zed applied these changes, enabling the use of the local LLM within Zed's environment.

    For more details, you can refer to the GitHub issue directly: https://github.com/zed-industries/zed/issues/4424#issuecomme...

  • From 1s to 4ms
    6 projects | news.ycombinator.com | 18 Feb 2024
    There's no great mystery here, if you look at the internal function that's being called, it contains a TODO explaining that the code is unnecessarily quadratic and needs to be fixed:

    https://github.com/zed-industries/zed/blob/12b12ba17a380e321...

    So if selecting all matches requires calling this function for each match then I guess it's accidentally cubic?

    I also spotted two linear scans before this code (min by key and max by key).

    It seems like a combination of the implementation being inefficient even for what it was for (and that this was known), then it was used for something else in a naive way, and the use of a bad abstraction in the code base came at a performance cost.

    I don't think this is a case of Rust either demonstrating or failing to demonstrate zero-cost abstractions (at a language level). A language with zero-cost abstractions doesn't promise that any abstraction you write in it is magically going to be free, it just promises that when it makes a choice and abstracts that away from you, it is free (like with dynamic dispatch, or heap allocation, or destructors, or reference counting, etc).

  • We Have to Start Over: From Atom to Zed
    4 projects | news.ycombinator.com | 17 Feb 2024
    Hey! I'm the mentioned Thorsten. Linux is actively being developed. Here's a PR from 2 days ago that shows file-opening in Linux starting to work: https://github.com/zed-industries/zed/pull/7852

    And so far Linux support has been a big community effort. I think more community member contributed to Linux support than Zed teammates. Very cool to see.

    So: Linux is in the works. Windows will probably happen after that, or if someone in the community wants to emulate what the Linux users are doing and start before that.

What are some alternatives?

When comparing lapce and zed you can also consider the following projects:

helix - A post-modern modal text editor.

vscodium - binary releases of VS Code without MS branding/telemetry/licensing

Monaco Editor - A browser based code editor

zed - Rethinking code editing.

zed-fonts - The Zed Mono and Sans typefaces, custom built from Iosevka

autocomplete - IDE-style autocomplete for your existing terminal & shell

Visual Studio Code - Visual Studio Code

xi-editor - A modern editor with a backend written in Rust.

tree-sitter-solidity - Solidity grammar for tree sitter

dotfiles