r/ZedEditor

▲ 102 r/ZedEditor+6 crossposts

Hello! 👋

We launched a free and open-source project for developers: DevGlobe 🌍

The idea: while you're coding, you appear on a globe so you can:

  • Track your coding stats (per repo, per file, per branch, per language) with real insights into your patterns
  • List your projects (open source, side projects, or startups)
  • Build a public dev profile (stats + projects + activity, ready to share like this)
  • Motivate yourself to code (goals, badges, private leaderboards with friends)

Already using WakaTime? The endpoint is WakaTime-Compatible, just point your existing client at it and you'll appear on the globe with no new extension needed.

Privacy first:

  • Anonymous mode → a random city in your country
  • Standard mode → only your city is shown (never your exact location)
  • Private mode → completely off the globe (if you just want the stats, goals, leaderboards, or to showcase your projects)

100% free

100% open source

Your personal data and your code are never sent to the backend

🌍 The Globe: https://devglobe.xyz/space

💻 Source code: https://github.com/Nako0/devglobe-extension

📦 Marketplace: https://marketplace.visualstudio.com/items?itemName=DevGlobe.devglobe

If you are interested or have any questions, everything is explained on the website, but don't hesitate to ask, I will be happy to answer your questions!

u/Fair-Independent-623 — 14 hours ago
▲ 3 r/ZedEditor+1 crossposts

Who uses codex with Zed? Do you mind to share your experience

Hey guys, I have been using zed with claude code since last year and I am really used to this workflow.

But now that Anthropic changed their policy and I will not be able to basically used claude code full sub with zed, I am seriously considering to change to codex as I was already considering moving to codex to test it.

Do you mind to share your experience? Can I use codex with zed until the limits the way it used to be with anthropic?

Thanks beforehand

reddit.com
u/lbarletta — 13 hours ago
▲ 56 r/ZedEditor+3 crossposts

Most of my workflow already lives in Neovim — code, prose, notes, scratchpads. The piece that always lagged was querying the notes. Plenty of tools let me grep them; almost none let me ask things like "all the drafts under tasks/q2 that link to people/alice" without leaving the buffer.

Turns out you can. IWE is a Rust binary (LSP server + CLI) that treats a directory of .md files as a queryable graph. Install once, use it from the editor over LSP and from the shell over :!.

The query language is small and reads like Mongo's:

iwe find --filter 'status: draft, priority: {$gte: 8}'

iwe find --filter 'author.email: {$exists: true}'

Frontmatter is the schema. Markdown links are the relationships — and there are two kinds, which the engine actually distinguishes:

  • An inline link in body text is a reference: "see also."
  • A markdown link alone on its own line is an inclusion link: containment. The linked document becomes a structural child of this one.

Each gets its own pair of operators:

iwe find --references people/alice # docs that link to Alice inline
iwe find --included-by tasks/alpha:0 # everything under alpha's tree (unbounded)
iwe find --included-by tasks/alpha:0 --references people/dmytro --filter 'status: draft'

That last line: drafts under the tasks/alpha subtree that also mention people/dmytro inline. Three relationships, three flags.

The same predicates drive iwe count, iwe update, iwe delete. Bulk-set frontmatter from the shell:

iwe update --filter 'status: draft, reviewed: true' \
--set status=published \
--set published_at=2026-05-02

update and delete require an explicit --filter (no accidental whole-corpus rewrites). --dry-run previews.

From inside Neovim, this composes two ways.

The same iwe binary is also a markdown LSP server, so the editing side feels like working in code:

  • gd — jump to linked notes
  • gr — find references / backlinks
  • K — hover preview of a linked note without opening it
  • Code actions for extract section to a new file, inline a referenced note, rename
  • Auto-complete for link targets as you type
  • Inlay hints showing parent context and link counts

There's a dedicated plugin — iwe.nvim — that wires the LSP up and adds Telescope integration with hierarchical path search (notes show as Journal ⇒ 2026 ⇒ Week 18 ⇒ Mon notes). Lazy / packer / vim-plug all work.

For querying, you don't need a special integration — the CLI is enough:

  • Output is plain text — pipe to jq, fzf, telescope, whatever.

Same install handles both: cargo install iwe and you have the LSP server + the CLI. The LSP runs against any folder of .md files; the CLI queries the same folder.

Side note: this also turns out to be a decent shape for AI agents. They use the same CLI you do, see the same files, and git log is your audit trail for whatever they touch.

Repo: https://github.com/iwe-org/iwe · Plugin: https://github.com/iwe-org/iwe.nvim

Curious what the heavy notes-in-Neovim crowd thinks, especially on the inclusion-vs-reference link split.

u/gimalay — 1 day ago
▲ 228 r/ZedEditor

Terminal Threads are here!

We just shipped Terminal Threads in Zed v1.3.5!

You can now run claude, amp, pi, or any terminal-based workflow as a managed thread in the Threads Sidebar, right alongside your other agent threads. Just open a new Terminal Thread from the Agent Panel and your terminal session will appear in the sidebar.

Use Terminal Threads for cli agents, long compiles, eval runs, or anything you want to keep visible and organized in your workspace. You can mix and match as many terminal threads as you like, and keep everything in one place.

This is especially useful for Claude Code users. With upcoming changes to their pricing, Terminal Threads will be the only way to use Claude Code in Zed with your existing subscription.

Give it a try: Download Zed v1.3.5

zed.dev
u/zed_joseph — 1 day ago

Git commit panel font size

As the title says, I wanted to ask if it is possible to change the font size in the git commit panel?

ere is a screenshot on how it looks like with my font size settings and I think it is looking not that good, I think it shouldn't be paired with the buffer font size.

Problem is when people have even bigger font sizes than me.

https://preview.redd.it/lj6b3d2m8c2h1.png?width=1595&format=png&auto=webp&s=dea6b6544e6e18cf584628b4ef35f0b0d020f336

reddit.com
u/AbrahelOne — 1 day ago

Zed + Multi‑Root + AI Agents… What’s Your Setup?

Hello kind peaple , I’ve got a couple of questions.

Does anyone know if it’s possible to debug multiple projects at the same time in Zed? In VS Code I’m used to hitting F5 once and having all my services spin up together (3 backend services + 2 frontend apps). With Zed it feels like I have to launch each one separately, which is… not ideal. If there’s a workaround, I’d love to hear it.

For those using Zed with AI: which ACP agent or orchestrator are you running? The built‑in Zed agent feels a bit limited (i always get bad results), and the others don’t seem to play nicely with multi‑root setups.

Any tips appreciated.

reddit.com

Terminal short cuts

Loving Zed so far, for me was the terminal the main reason for switching from VS Code.

I really dislike the built-in editor of code, and was always using a separate iterm2 terminal side by side. Having a tab with multiple panes for each project.

With Zed, everything is in the same app, switching from code to a full-screen set of terminal windows is great.

Now is the terminal in Zed a bit more basic when it comes to panes but today I found out that with Cmd+D I can vertically split it.

This triggered me trying to find out other shortcuts, like toggling between panes (like Cmd+[ or Cmd+] in iterm), or vertically split windows. But no luck so far.

Is it still possible? What tricks am I missing?

reddit.com
u/DutchTechie321 — 1 day ago

What do you think about Zed putting the Agent Sidebar on the left and the Project Panel on the right by default?

Zed places the Agent Sidebar on the left by default, while the Project Panel is on the right. It feels like a deliberate design choice to make the AI workflow more central.

Curious what others think: is this a good direction, or does it make the editor feel too AI-focused?

View Poll

reddit.com
u/OrzMiku — 3 days ago

Is it still possible/safe to use Claude with monthly plan after April's ban by Anthropic?

So, as you probably know, Anthropic banned using 3rd party clients with the subscription plans starting April 4th 2026 (source - this one explicitly mentions OpenClaw, but it's true for everything else). Only the 'api usage', so pay-as-you-go, will work.

Until now, I have this Pay As You Go setup, where I simply pre-paid some bucks and get some tokens and it works flawlessly. But starting tomorrow, I will get the license for the Enterprise plan from my company and I want to switch completely to it, obviously.

But what I'm not happy about, is using Claude CLI. Honestly, I don't see any reason for using AI agent with code (I'm not a developer, I'm a devops, but I still work on terraform code or some kubernetes yamls) other way than inside an IDE. I'm making changes to FILES, I want to quickly see my FILES with clean indicator what have changed. Claude CLI, surely, shows me git diff output, but it's stupid and inconvenient, to have it running in the terminal and keep my editor open on the side to monitor the changes.
Actually even if I decided to use a CLI tool as my agent, I would go with OpenCode anyway ;-)

So: what are my options of using Zed with the monthly plan? I know I can click this 'New Claude agent' instead of 'New Zed agent' in the panel and it gives me some hope, but I wanted to ask here before I try to use it, because I'm afraid it starts billing my company "as-I-go" and they won't be happy. The questions are:

  1. Is it running the 'real' Claude CLI under the hood (I don't have it installed in my system, but maybe Zed is installing the package?) which will work exactly as I would start claude from my terminal?
  2. Will it use my monthly Enterprise subscription all right?
  3. If so, is it possible to have Claude Agent being the default one?

Thanks in advance!

reddit.com
u/eftepede — 3 days ago

How decent is Zed as a VSCode replacement?

Out of near necessity and only having a 16GB laptop. having 2+ VSCode windows + any Agent Cli + my browser tabs open just runs too slow. I regret not getting a laptop with more ram but that's not possible right now.

Considering Zed since yesterday with the promise of performance (mainly ram usage). Feature wise is it mostly there? I mainly do a combination of Web, C#, Python and maintain a lot of different frameworks back and forth.

reddit.com
u/EndlessZone123 — 4 days ago

Anyone use Zed for work?

Downloaded and started using Zed. It is blazingly fast compared to VS Code. Anyone here use Zed for development work? What do you miss coming from other editors? Just curious about your experience.

Thanks.

u/Notalabel_4566 — 4 days ago

yo, i want the native window title bar style tried configuring it but can’t get it working like VS Code

u/hello_friend_77 — 4 days ago

Zed's 'Aggressive Abuse Ring' countermeasures blocked my legit GitHub account. The fix is to wait weeks or make a new one.

Just tried to sign up for Zed using my main GitHub account, but I was blocked immediately with an error.
After contacting support, they confirmed my account was accidentally caught by their temporary "heuristic blocks". They've implemented these broad blocks to "combat a rather aggressive abuse ring" trying to get free LLM credits.

I understand they need to protect their resources, but as a legitimate user, I'm now facing this ridiculous choice:

  1. Wait: The blocks will "likely last a few weeks".
  2. Hassle: Create or use an entirely different GitHub/email combo just to get started.

It's incredibly frustrating to be blocked from trying out a new IDE because of such an aggressive, blanket security measure. Massive fail on the user experience front.

reddit.com
u/PersimmonOk8346 — 4 days ago

Cursor , windsurf, Void , Cline, Zed , trae what to choose ?

Hi everyone, As mentioned in the title, I’m planning to get a premium subscription.

I’m genuinely confused about which one to choose. All of them have their merits, and I’d appreciate any insights from those who’ve used either (or both) in the long run.

Thanks in advance!

reddit.com
u/Notalabel_4566 — 5 days ago
▲ 6 r/ZedEditor+1 crossposts

ACP users catching strays in 6/15 plan change

The June 15 billing split is punishing the wrong people IMHO.

I get why they're doing something. Tools like OpenClaw are running scads of unattended agents on flat-rate subscriptions. But the fix they landed on segments billing by how you connect, not by how much or how fast you actually use resources.

If you interact with Claude Code through an ACP integration, you're in the "programmatic" bucket and your usage gets metered at full API rates. If you do the exact same thing in the terminal REPL, you're billed on your normal subscription (subsidized rates).

The obvious solution is to adjust rate limits. Cap requests per minute at human-plausible levels and you catch the batch automation users without caring which protocol carried the request.

Anthropic should reconsider.

reddit.com
u/slowernet — 4 days ago

Zed Copilot diffs

Please guys I need help. So I'm switching back to zed from vscode. I normally use Copilot and then I can review all changes it makes at once but with zed I accept each edit or accept all without properly reviewing. I don't really know how to put it but I hope you understand me.

reddit.com
u/WayAndMeans01 — 4 days ago
▲ 152 r/ZedEditor

Claude's June 15 billing changes and your options in Zed

Anthropic is rolling out billing changes on June 15, and we put together a writeup of what it means for Zed users.

The short version: agent and SDK usage will now draw from a separate credit pool billed at API rates, which is a notable cost increase for heavy users. The good news is that your Claude subscription still works at its usual limits when you run the official `claude` CLI in a terminal. To help soften the impact, next week we're shipping Terminal Threads to Stable, which brings terminal agents into the new Sidebar alongside your native agent threads.

Zed stays open either way. You can bring your own API keys, use Copilot, run local models, or connect any ACP-compatible agent.

zed.dev
u/zed_joseph — 7 days ago

How can i use the extensions in zed?

I'm new to zed editor, can anyone tell me where can i find the live server (icon or how to start?) extension after installing it from the extensions ??

reddit.com
u/MathiRaja — 5 days ago