vscode-oniguruma VS zed

Compare vscode-oniguruma vs zed and see what are their differences.

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)
SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.
surveyjs.io
featured
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
vscode-oniguruma zed
3 31
108 32,865
1.0% 8.7%
3.8 10.0
about 1 month ago about 14 hours ago
TypeScript Rust
GNU General Public License v3.0 or later 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.

vscode-oniguruma

Posts with mentions or reviews of vscode-oniguruma. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-03-01.
  • Building a syntax highlighting extension for VS Code
    12 projects | dev.to | 1 Mar 2024
    Luckily, there is a project that has fitted my needs perfectly: vscode-grammar-test. It’s a command line tool that builds on the VS Code regex engine and grammar file parser and allows to run unit tests directly against a given grammar file.
  • Dark mode with Shiki and Code Hike
    7 projects | dev.to | 29 Jan 2023
    Shiki does this because the underlying library vscode-textmate or vscode-oniguruma returns black if the value is not a valid color. This explains why Code Hike uses blackish color codes instead of variables. But what if we write a variable directly into the theme instead of the color code.
  • Developer Diaries: How We Built a Better Browser-Based IDE with Monaco
    3 projects | dev.to | 24 May 2022
    More specifically, we’re using [vscode-oniguruma](https://github.com/microsoft/vscode-oniguruma), which is made by Microsoft. But this introduced yet another problem: Integrating TextMate into Monaco typically requires hacks of some kind, and introduces some flaws into the experience.

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-30.
  • Exploring Zed, an open source code editor written in Rust
    2 projects | dev.to | 30 Apr 2024
    Zed is a new, open source, multiplayer code editor written in Rust. It was developed by the creators of Atom and Tree-sitter — Nathan Sobo, Antonio Scandurra, and Max Brunsfeld. The team launched Zed in early 2023 and later open sourced it in 2024.
  • Zed Decoded: Rope and SumTree
    4 projects | news.ycombinator.com | 28 Apr 2024
    There is an open issue about helix keybinds:

    https://github.com/zed-industries/zed/issues/4642

  • 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...