WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Releases: zed-industries/zed

v0.216.0-pre

03 Dec 18:54

Choose a tag to compare

v0.216.0-pre Pre-release
Pre-release

This week's release includes a File History view for viewing the commit history of individual files, word-based diff highlighting, UI for deleting Git branches, improved pyright/basedpyright completion sorting for Python, and many performance improvements! 🙌

Features

AI

  • Agent: Improved delete thread action in the history view by preventing it from also triggering the thread activation. (#43796; thanks aeroxy)
  • Agent: Made the thread loading state clearer in the agent panel. (#43765)
  • Agent: Added support for deleting your entire thread history. (#43370; thanks RemcoSmitsDev)
  • Agent: Revised tool call description for read file tool to explain outlining behavior. (#43929)
  • Agent: Clarified grep tool description to improve agent precision when using it with the include_pattern parameter. (#41225; thanks procr1337)
  • Agent: Removed timeout for agent initialization. (#44066)
  • ACP: Added support for using @mentions after typing slash command. (#43681)

Git

⭐ = Shipped via Let's Git Together


  • Added word diff highlighting in expanded diff hunks (less than 5 lines), configurable via the word_diff_enabled language setting (defaults to true). (#43269)
  • ⭐Added a File history view accessible via right-click context menu on files in the editor, project panel, or git panel. Shows commit history for the selected file with author, timestamp, and commit message. Clicking a commit opens a diff view filtered to show only changes for that specific file. (#42441; thanks ddoemonn, #44016)
  • ⭐Added UI for deleting Git branches. (#42703; thanks errmayank)
  • Improved performance of multibuffers by spawning git blame processes on the background threads. (#43918)
  • Improved git project diff responsiveness. (#43706)
  • Improved overall git experience when loading buffers with massive git history where they would block other git jobs from running (such as staging/unstaging/committing). Now, git-blame runs separately from the git job queue on the side and the buffer with blame hints when finished thus unblocking other git operations. (#43565)
  • ⭐Git will now check pushRemote and pushDefault configurations before falling back to branch remote. (#41700; thanks errmayank)
  • ⭐Increased the askpass timeout for Git operations from 17 to 300 seconds and improved the error message. (#42946; thanks 11happy)
  • ⭐Fixed a bug where hover tooltips in git commit and blame popovers were not consistently using the UI font. (#43975; thanks GoldStrikeArch)
  • Fixed git features not working when a Windows host collaborates with a Unix guest. (#43515)

Debugger

  • Improved "debug test" experience in Rust with ignored tests. (#43110; thanks mikeHag)

Languages

  • Rust: Changed completion tab stops to display inline rather than as a raw LSP snippet expression. (#43891)
  • Python: Improved sorting order of pyright/basedpyright code completions. (#44050; thanks alkasadist)
  • Added JavaScript highlighting via YAML injections.scm for script blocks of actions/github-script. (#43771; thanks novusnota)
  • Added support for Tailwind suggestions and validations for the Gleam programming language. (#43968; thanks arjunbajaj)
  • Added way to configure ESLint's working directories in settings. For example: {"lsp":{"eslint":{"settings":{"workingDirectories":["./client","./server"]}}}}. (#43677)
  • Added Doxygen grammar support for C/C++ files. (#43581; thanks Clement-Lap)
  • Improved grammar for "Shell Script". (#44009)
  • Changed C preprocessor directives to use keyword.directive for syntax highlighting, matching C++ behavior. (#44043; thanks lipcut)

Vim / Helix

  • Added ctrl-w x keybinding in Vim mode, which swaps the active window with the next adjacent one (aligning with Vim behavior). (#42792; thanks mfroeh)
  • Improved the % vim motion for HTML by moving the cursor to the opening tag when positioned on the / (slash) of the closing tag. (#42513; thanks Pranav2612000)

Windows

  • Improved responsiveness when there are many tasks running in the foreground. (#43682)
  • Reduced hangs in some situations. (#43678)

Linux

Other

  • Improved performance for editors of large multibuffers with many different files. (#43709)
  • Improved performance of large project searches and project diffs. (#43888)
  • Added a keybinding (cmd-, (macOS) / ctrl-, (Windows / Linux)) to open the settings.json file when the Settings UI is in focus. (#43747)
  • Added Show Tab Bar Buttons setting to Settings UI to control visibility of New, Split Pane, and Zoom buttons in the tab bar. (#43746; thanks baldwindavid)
  • Improved visibility of long path names in context completions by truncating on the left when space is insufficient to render the full path. (#42682; thanks schurchley)
  • Changed pane::ActivatePreviousItem and pane::ActivateNextItem to toggle the most recent pane when called from a dock panel. (#42588; thanks FloppyDisco)
  • Added file icon for the Odin programming language. (#43855; thanks olrtg)
  • Added the ability to disable direnv integration entirely by setting "load_direnv": "disabled". (#43764; thanks ian-h-chamberlain)
  • Added banners to the extensions page when searching for Basedpyright, Ruff, or Ty, indicating that these features are now built-in. (#43872; thanks Rani367)
  • Enhanced color logic for phantom elements to improve visual distinction based on collision status. (#42710; thanks libondev)

Bug Fixes

  • Windows: Fixed panics caused by unexpected re-entrancy for interior mutability. (#44002)
  • Windows: Fixed an issue where the resize area on the title bar is only 1px tall. (#43995)
  • Windows: Fixed WSL remoting not working with some NixOS setups. (#43987)
  • Windows: Fixed toggling focus to project panel via keybinding not always working. (#43983)
  • Windows: Fixed wrong button tooltips being shown for terminal pane. (#43981)
  • Agent: Fixed command path not being correctly encoded in context server config modal. (#42693; thanks adam-huganir)
  • Agent: Fixed the UI misalignment between old and new lines from the inline assist. (#43768; thanks xipeng-jin)
  • Agent: Fixed a bug where the plan and edit files list would consume the whole space of the thread if they were too long. They're now capped by a max-height and scrollable. (#43759)
  • Agent: Fixed keybinding for allowing a command to run in the agent panel on Windo...
Read more

v0.215.3

03 Dec 17:36

Choose a tag to compare

This week's release brings rainbow brackets 🌈 (addressing a feature request with 1100 👍s), automatic detection of uv workspaces in the toolchain selector, the ability to set a default model for built-in external agents (Claude Code, Codex CLI, Gemini CLI), and support for OpenAI's GPT-5.1 model for BYOK users.

Features

AI

  • Added support for OpenAI's GPT-5.1 model to BYOK. (#43492)
  • Agent: Added the ability to set a model as the default for a given built-in external agent (Claude Code, Codex CLI, or Gemini CLI). (#43122)
  • Agent: Added support for specifying settings for ACP extensions (default_mode, default_model). (#43177)
  • Agent: Improved the "reject"/"keep" behavior when regenerating older prompts by auto-keeping pending edits that don't originate from the prompt to-be-regenerated. (#43347)
  • Agent: Made the thread markdown editable. (#43377)

Git

Let's Git Together status - we are entering week 5 of 9
Current Progress: 91 of 182 issues closed, with 33 PRs shipped by the community. And 15 PRs in progress by the community!
Goal: Close out 182 git issues by December 31, 2025.
The git PRs are rolling in. We're shipping the features you've been asking for, side-by-side with our open source contributors.
It's not too late to join! Check out our git board and tackle an issue with the team.

⭐ = Shipped via Let's Git Together


  • ⭐Improved readability of files in the git changes panel. (#41857; thanks alphathekiwi)
  • ⭐Compressed large diffs for commit message generation. (#42835; thanks 11happy)
  • ⭐Fixed git not preserving file mode when committing. Executable files now retain their permissions when committed with Zed. (#41900; thanks 11happy)
  • ⭐Fixed highlighting for addition and deletion for diff language. (#38384; thanks tidefield)
  • Fixed displaying auto-commit suggestions for single staged entries. (#43470)

🎉 Big shoutout to our most active Git contributors: @amtoaer, @errmayank, @11happy, @ddoemonn, and @xipeng-jin

Debugger

  • Added $ZED_PICK_PID variable for debug configurations, allowing users to select which process to attach the debugger to at runtime. (#42913)

Languages

  • Python: Added support for detecting uv workspaces as toolchains. (#43496)
  • C++: Added support for treating .h++ files as C++. (#42802; thanks bnjmnjrk)
  • Markdown: Added LaTeX highlighting for inline and display equations. (#41110; thanks lnay)
  • Added support for identifying .clangd and .clang-format files as YAML by default. (#43557; #43469; thanks notpeter)
  • Improved the sorting of semver completions in package.json so the latest versions appear at the top. (#43473)

Terminal

  • Added terminal.path_hyperlink_regexes and terminal.path_hyperlink_timeout_ms settings to customize path hyperlink detection in the terminal. (#40305; thanks davewa)
  • Improved terminal hyperlink performance, especially for terminals with a lot of content visible. (#40305; thanks davewa)

Collaboration

  • Improved rendering of avatars that failed to load by rendering a fallback icon. (#43183)

Other

  • Added bracket colorization (rainbow brackets) support. Use colorize_brackets language setting to enable. (#43172)
  • Onboarding: Added ability to zoom in/out on onboarding pages with the same keybindings you'd use to zoom in/out a regular buffer. (#43244)
  • Added the possibility to open a non-existing path using zed CLI. (#43250; thanks BuonOmo)
  • Added various missing keybindings and fixed several incorrectly mapped keybindings for the JetBrains keymap. (#43042; thanks carstonhernke)
  • Added project_panel::CollapseAllEntries keybinding (cmd-left on macOS, ctrl-left on Linux/Windows) to collapse all entries in the project panel. (#43112)
  • Improved language server updates for slow connections. Zed now launches the existing server if the update is taking too long. (#43164)
  • Improved project search performance with "Also search files ignored by configuration" combined with file inclusion/exclusion queries. (#42968)
  • Improved performance of multibuffers by spawning git blame processes on the background threads. (#43918)
  • Enabled environment passthrough for npm subcommands. (#43102; thanks yjoer)
  • Ensured Zed reuses GITHUB_TOKEN env variable when querying GitHub. (#42623; thanks Binlogo)

Bug Fixes

  • macOS: Fixed a bug where Zed would fail to start on some Apple Silicon machines when Metal device enumeration returned no devices. Zed now falls back to the system default device in this case. (#38164; thanks cacaosteve)
  • Windows: Fixed askpass execution sometimes failing. (#43542)
  • Windows: Fixed Zed only finding pwsh, but not powershell. (#43526)
  • Windows: Fixed bash detection when Git is installed via package managers like Scoop. (#43455; thanks qystishere)
  • Windows: Fixed console windows sometimes appearing when opening Python files. (#43496)
  • Windows: Fixed maximized window size when DPI scale changes. (#40053; thanks cppcoffee)
  • Linux: Fixed window control buttons not showing in GNOME Wayland when SSD requested. (#39313; thanks Be-ing)
  • Linux: Fixed ./script/install-Linux for installing a development version of Zed on Linux. (#43205)
  • Agent: Fixed an issue where ACP agents would start MCP servers that were disabled in Zed. (#43467)
  • Agent: Fixed AI assistant edits being scrambled when file was modified while it was open. (#43103)
  • Terminal: Fixed a bug where search match highlights wouldn't update their position when resizing the terminal. (#43507)
  • Terminal: Fixed terminal path hyperlinks for paths containing unicode punctuation and emoji, e.g. mojo.🔥. (#40305; thanks davewa)
  • Terminal: Fixed path hyperlinks for Windows verbatim paths, for example, \\?\C:\Over\here.rs. (#40305; thanks davewa)
  • Vim: Fixed bug where pressing d . . would freeze the editor. (#42145; thanks AidanV)
  • Vim: Fixed the cursor shape reset in vim mode deactivation, ensuring that the user's cursor_shape setting is used. (#42834; thanks lennartkloock)
  • Vim: Fixed paste not working correctly in vim visual modes. (#43031; thanks adriandlam)
  • Helix: Fixed bug where Vim::NextWordEnd in HelixSelect would not select whole word. (#43234; thanks AidanV)
  • Helix: Fixed a bug where <g-l> in Helix mode would not move the cursor to the last character of the line. (#41575; thanks HuaGu-Dragon)
  • Debugger: Fixed input elements within the laun...
Read more

v0.215.3-pre

29 Nov 09:00

Choose a tag to compare

v0.215.3-pre Pre-release
Pre-release
  • Fixed git gutter incorrectly showing up for ignored files. (#43782)
  • Improved performance of bracket colorization in large multibuffers (#43717)
  • agent: Show an error message to the user if we are unable to initialize an ACP agent in a reasonable amount of time. (#43668)
  • (Preview only) Fixed html tags incorrectly colorized (#43645)

v0.214.7

29 Nov 13:15

Choose a tag to compare

  • Fixed git gutter incorrectly showing up for ignored files. (#43777)

v0.215.2-pre

27 Nov 00:46

Choose a tag to compare

v0.215.2-pre Pre-release
Pre-release
  • (Preview only) Fixed failures to fetch remoting server (needed to run remoting). (#43616)
  • Fixed bracket colorization mixing colors in markdown files (#43610)
  • Fixed a small issue where bracket colors would not be immediately updated if experimental_theme_overrides.accents was changed. (#43606)

v0.214.6

27 Nov 20:12

Choose a tag to compare

  • Fixed a crash when sharing a project with a user on a non-stable version of Zed (#43459)
  • Fixed a crash when using Vim increment on a multi-byte character (#43101)
  • When Zed is unable to initialize an ACP agent in a reasonable amount of time, an error message will now be displayed (#43667)

v0.215.1-pre

26 Nov 22:36

Choose a tag to compare

v0.215.1-pre Pre-release
Pre-release
  • (Preview only): Fixed an update loop with latest Preview update. (#43597)

v0.215.0-pre

26 Nov 18:59

Choose a tag to compare

v0.215.0-pre Pre-release
Pre-release

This week's release brings rainbow brackets 🌈 (addressing a feature-request with 1080 👍s), support for OpenAI's GPT 5.1 model for BYOK users, and further performance improvements to project search.

Features

AI

  • Added support for OpenAI's GPT 5.1 model to BYOK. (#43492)
  • Agent: Added the ability to set a model as the default for a given built-in external agent (Claude Code, Codex CLI, or Gemini CLI). (#43122)
  • Agent: Added support for specifying settings for ACP extensions (default_mode, default_model). (#43177)
  • Agent: Improved the "reject"/"keep" behavior when regenerating older prompts by auto-keeping pending edits that don't originate from the prompt to-be-regenerated. (#43347)
  • Agent: Made the thread markdown editable. (#43377)

Git

  • ⭐Improved readability of files in the git changes panel. (#41857; thanks alphathekiwi)
  • ⭐Compressed large diffs for commit message generation. (#42835; thanks 11happy)
  • ⭐Fixed git not preserving file mode when committing. Executable files now retain their permissions when committed with Zed. (#41900; thanks 11happy)
  • ⭐Fixed highlighting for addition and deletion for diff language. (#38384; thanks tidefield)
  • Fixed displaying auto-commit suggestions for single staged entries. (#43470)

Debugger

  • Added $ZED_PICK_PID variable for debug configurations, allowing users to select which process to attach the debugger to at runtime. (#42913)

Languages

  • Python: Added support for detecting uv workspaces as toolchains. (#43496)
  • C++: Added support for treating .h++ files as C++. (#42802; thanks bnjmnjrk)
  • Markdown: Added LaTeX highlighting for inline and display equations. (#41110; thanks lnay)
  • Added support for identifying .clangd and .clang-format files as YAML by default. (#43557, #43469; thanks notpeter)
  • Improved the sorting of semver completions in package.json so the latest versions appear at the top. (#43473)

Terminal

  • Added terminal.path_hyperlink_regexes and terminal.path_hyperlink_timeout_ms settings to customize path hyperlink detection in the terminal. (#40305; thanks davewa)
  • Improved terminal hyperlink performance, especially for terminals with a lot of content visible. (#40305; thanks davewa)

Collaboration

  • Improved rendering of avatars that failed to load by rendering a fallback icon. (#43183)

Other

  • Added bracket colorization (rainbow brackets) support. Use colorize_brackets language setting to enable. (#43172)
  • Onboarding: Added ability to zoom in/out on onboarding pages with the same keybindings you'd use to zoom in/out a regular buffer. (#43244)
  • Added the possibility to open a non-existing path using zed CLI. (#43250; thanks BuonOmo)
  • Added various missing keybindings and fixed several incorrectly mapped keybindings for the JetBrains keymap. (#43042; thanks carstonhernke)
  • Added project_panel::CollapseAllEntries keybinding (cmd-left on macOS, ctrl-left on Linux/Windows) to collapse all entries in the project panel. (#43112)
  • Improved language server updates for slow connections. Zed now launches the existing server if the update is taking too long. (#43164)
  • Improved project search performance with "Also search files ignored by configuration" combined with file inclusion/exclusion queries. (#42968)
  • Enabled environment passthrough for npm subcommands. (#43102; thanks yjoer)
  • Ensured Zed reuses GITHUB_TOKEN env variable when querying GitHub. (#42623; thanks Binlogo)

Bug Fixes

  • macOS: Fixed a bug where Zed would fail to start on some Apple Silicon machines when Metal device enumeration returned no devices. Zed now falls back to the system default device in this case. (#38164; thanks cacaosteve)
  • Windows: Fixed askpass execution sometimes failing. (#43542)
  • Windows: Fixed Zed only finding pwsh, but not powershell. (#43526)
  • Windows: Fixed bash detection when Git is installed via package managers like Scoop. (#43455; thanks qystishere)
  • Windows: Fixed console windows sometimes appearing when opening Python files. (#43496)
  • Windows: Fixed maximized window size when DPI scale changes. (#40053; thanks cppcoffee)
  • Linux: Fixed window control buttons not showing in GNOME Wayland when SSD requested. (#39313; thanks Be-ing)
  • Linux: Fixed ./script/install-Linux for installing a development version of Zed on Linux. (#43205)
  • Agent: Fixed an issue where ACP agents would start MCP servers that were disabled in Zed. (#43467)
  • Agent: Fixed AI assistant edits being scrambled when file was modified while it was open. (#43103)
  • Terminal: Fixed a bug where search match highlights wouldn't update their position when resizing the terminal. (#43507)
  • Terminal: Fixed terminal path hyperlinks for paths containing unicode punctuation and emoji, e.g. mojo.🔥. (#40305; thanks davewa)
  • Terminal: Fixed path hyperlinks for Windows verbatim paths, for example, \\?\C:\Over\here.rs. (#40305; thanks davewa)
  • Vim: Fixed bug where pressing d . . would freeze the editor. (#42145; thanks AidanV)
  • Vim: Fixed the cursor shape reset in vim mode deactivation, ensuring that the user's cursor_shape setting is used. (#42834; thanks lennartkloock)
  • Vim: Fixed paste not working correctly in vim visual modes. (#43031; thanks adriandlam)
  • Helix: Fixed bug where Vim::NextWordEnd in HelixSelect would not select whole word. (#43234; thanks AidanV)
  • Helix: Fixed a bug where <g-l> in Helix mode would not move the cursor to the last character of the line. (#41575; thanks HuaGu-Dragon)
  • Debugger: Fixed input elements within the launch tab in the new session modal to be keyboard navigable. (#43344)
  • Extensions UI: Improved the feedback message for when extensions are not being displayed due to a fetch error caused by lack of connection. (#43197)
  • Fixed settings UI being forced larger than small screens. (#43556)
  • Fixed an issue in the settings UI where changing the terminal shell would set the default shell to sh on Windows. (#43276)
  • Fixed a small issue where a scrollbar would sometimes show in the editor although the content fit exactly on screen. (#43548)
  • Fixed an unnecessary error being logged on startup when SWEEP_AI_TOKEN environment variable is not set. (#43504; thanks oscarvarto)
  • Fixed an issue where accepting a completion for a semver version in package.json would appe...
Read more

v0.214.5

26 Nov 17:00

Choose a tag to compare

This week's release includes agent server extensions over SSH remoting, pretty TypeScript errors with language-aware Markdown, Vim range write commands, improved search performance in local projects, and new project_panel.sort_mode and terminal.scrollbar.scroll_multiplier settings.

Features

AI

  • Agent: Added automatic retries for OpenAI-compatible LLM providers. (#37891; thanks timmclean)
  • Agent: When @mention-ing large files with no outline, their first 1KB is now added to context. (#42543)
  • Agent: Improved the modal to add LLM providers by making it responsive and keyboard navigable. (#42983)
  • Agent: Improved discoverability of the cmd-n keybinding to create a new thread with the currently selected agent. (#42939)
  • Agent: Improved the interaction with errors by allowing links to be clickable. (#42732)
  • Agent: Improved table rendering in the agent panel, ensuring cell text wraps, not going off-screen. (#42674)
  • Agent: Made agent file edits error if the file has changed since last read, allowing the agent to read changes and avoid overwriting changes made outside Zed. (#42895)
  • Agent: Added support for per-target environment variables on Agent Server Extensions. (#42683)
  • Agent: Made Agent Server Extensions available when doing SSH remoting. (#42683)
  • Added support for configuring MCP servers that connect over HTTP in your settings file. These are not yet available in the extensions API. (#39021; thanks AhegaoBurger)
    {
      "context_servers": {
        "my-remote-server": {
          "enabled": true,
          "url": "http://localhost:3000/mcp"
        }
      }
    }
  • Signing out now clears the local cache containing the plan and usage information. (#42678)

Git

Let's Git Together status - we are entering week 4 of 9
Current Progress: 76 of 153 issues closed, with 23 PRs shipped by the community. And 15 PRs in progress by the community!
Goal: Close out 153 git issues by December 31, 2025.
The git PRs are rolling in. We're shipping the features you've been asking for, side-by-side with our open source contributors.
It's not too late to join! Check out our git board and tackle an issue with the team.

⭐ = Shipped via Let's Git Together


  • ⭐Changed opening a file via Open File in the context menu of a git panel entry to automatically expand the diff hunks. (#40616; thanks FloppyDisco)
  • ⭐Fixed a bug where Git renames were appearing as deleted + untracked files instead of showing as renamed files in the git panel. (#42352; thanks ddoemonn)
  • ⭐Fixed a bug where pickers would automatically close upon the window becoming inactive. (#41320; thanks v1narth)
  • ⭐Fixed Git panel not showing any branches when repository contains refs with missing fields. (#42523; thanks errmayank)
  • ⭐Fixed focus issues in the git panel when the repository has no entries. (#42553; thanks xipeng-jin)
  • Fixed staging checkbox flickering sporadically in the Git panel. (#43061)

Languages

  • Markdown Preview: Added support for HTML href elements. (#42265; thanks RemcoSmitsDev)
  • TypeScript: Added pretty errors with language-aware Markdown. (#42494; thanks KyleBarton)

Vim / Helix

  • Vim: Added support for :[range]w to replace the current file with the selected lines. (#41256; thanks AidanV)
  • Vim: Added support for :[range]w {file} to write the lines in the range to the specified file. (#41256; thanks AidanV)

Other

  • Improved project search performance in local projects. (#40835)
  • Settings UI: Changed Project Settings action to open settings UI instead of a file. (#42669)
  • Keymap Editor: Made the "toggle exact match mode" the default keystroke search mode so that whatever you search for matches exactly to results. (#42883)
  • Clicking the multi-buffer header file name or the "Open file" button now jumps to the most recent selection in that buffer, if one exists. (#42613)
  • Added project_panel.sort_mode option to control explorer file sort (directories first, mixed, files first). (#40160; thanks lparry)
  • Added tilde expansion support for LSP binary path in settings.json. (#41715; thanks errmayank)
  • The Editor key context now includes 'diffs_expanded' when diff changes are visible. (#40617; thanks FloppyDisco)
  • Improved pane: reopen closed item to not reopen closed preview tabs. (#42568)
  • Added a terminal.scrollbar.scroll_multiplier option. (#39463; thanks marcocondrache)

Bug Fixes

  • macOS: Fixed title bar not fully draggable. (#41839; thanks ivanpasq)
  • macOS: Fixed not being able to maximize or restore the window with double click on the whole title bar. (#41839; thanks ivanpasq)
  • Windows: Fixed Zed only finding pwsh, but not powershell. (#43526)
  • Collab: Fixed a regression where search matches wouldn't expand the parent channel if that happened to be collapsed. (#42743)
  • Agent: Fixed a bug where the label for model names wouldn't use all the available space in the model picker. (#42921)
  • Agent: Fixed a bug where hitting the NewThread keybinding when focused inside a terminal within the agent panel would create a new terminal tab instead of a new thread. (#42898)
  • Agent: Fixed a bug where images copied from Windows Explorer were not pastable in the agent panel. (#42858)
  • Agent: Fixed a bug where agent commands and edit predictions would show up in the command palette even when the agent feature was disabled. (#42579)
  • Agent: Fixed an issue where the source property of MCP settings would show up as unrecognized. (#43417)
  • Debugger: Fixed CodeLLDB installation getting malformed due to ZIP unpacking bug. (#42714; thanks vasyl-protsiv)
  • Debugger: Fixed a bug where breakpoints were being created inside the breakpoint editor. (#42475; thanks RemcoSmitsDev)
  • Settings UI: Fixed a bug where the "Edit in settings.json" option wouldn't work for subpages like all the Language pages. (#42886)
  • Vim: Fixed a bug where pressing u after multiple . in rapid succession would undo all repeats instead of only the latest repeat. (#41735; thanks AidanV)
  • Fixed a bug where Zed sometimes experienced freezing while working with inline diagnostics. (#42896)
  • Fixed a bug where Zed did not respect the on_last_window_closed setting on macOS. (#43058)
  • Fixed a bug where PowerShell discovery disregarded admin requirements. (#43044)
  • Fixed a bug where extension panics crashed Zed on Linux. (#43005)
  • Fixed a bug where the terminal would open in the root directory when editing single files from the command line. (#42953; thanks canack)
  • Fixed a bug where the for keyword in Rust was highlighted incorrectly outside of for loops. (#42924;...
Read more

v0.214.5-pre

25 Nov 18:27
bed482e

Choose a tag to compare

v0.214.5-pre Pre-release
Pre-release
  • Add support for Gemini 3 to Copilot (#43096)
  • Gemini 3 now works on OpenRouter in the Agent Panel (#43416)
  • Fixed an issue where the source property of MCP settings would show up as unrecognised (#43417)
  • Fixed modals not getting focus on window reopen (#43451)