Releases

Keep up with the weekly Zed releases.


April

0.181.2

04/03/2025

macOS
Linux
  • Agent Beta: Added token count in the thread view. (#28037)
  • Agent Beta: Improved rendering of tool uses without text. (#28030)
  • Agent Beta: Fixed a rendering bug that caused context in the agent to not wrap properly. (#28029)

0.181.1

04/03/2025

macOS
Linux
  • Agent Beta: Added the ability to edit previous user messages. (#27965)
  • Agent Beta: Fixed an issue where the thinking step would show up as pending even when the generation was cancelled. (#28019)

Sign up for the agent editing beta waitlist here.

0.181.0

04/02/2025

macOS
Linux

Today, we're kicking off a new beta release: Agentic Editing in Zed. If you want access to it, join the beta waitlist.

Enhancements

  • Added support for automatically inserting a newline when hitting enter between opening and closing tags in JSX/TSX (#27618)
  • Improved restoration of editor state when files are reopened (folds, selections, scroll position). (#27672)
  • Added persistent history of command palette usages. (#26948; thanks KyleBarton)
  • Added correct syntax highlighting for use bounds and async closures in Rust. (#27875)
  • Mouse cursor now auto-hides in more circumstances. This behavior can be changed by setting hide_mouse to on_typing_and_movement, on_typing or never.
  • Improved how upper-case characters are handled in keybinds. "Special" keys such as the function keys, control, shift, etc. are now parsed case-insensitively, so for example F8, CTRL, SHIFT are now acceptable alternatives to f8, ctrl, and shift when declaring keybindings. Additionally, upper-case (ASCII) characters will now be converted explicitly to shift + the lowercase version of the character, to match the Vim behavior. (#27813)
  • Keybinds in context menus will now be dimmed if the corresponding action is currently disabled (#27693; thanks MrSubidubi)
  • Added ability to double click on empty pane to open a new file (#27521; thanks loczek)
  • Added support for project panel hiding gitignored files. Use the ProjectPanel::ToggleHideGitIgnore action to toggle the new project_panel.hide_gitignore setting. (#26636; thanks AlvaroParker)

Git

  • Added the ability to show past commits in Zed. You can view the most recent commit by clicking its message in the commit panel. And when viewing a git blame, you can show any commit by clicking its sha. (#27636)
  • Ensured that only one repository is shown in the git UI when two subdirectories of a common repository root are open in Zed. (#27884)
  • Zed will now use GIT_ASKPASS if you already have one set instead of overriding with our own. Fixes git push in Coder. (#27681)
  • Changed the git panel to prompt before restoring a file. (#27525)
  • Fixed git repositories being added for files outside the project. (#27894)
  • Fixed a bug where the git panel displayed a commit's committer in place of its author. (#27856)
  • Fixed an issue where Git committer was displayed instead of Git author. (#27628)

Languages

  • Python: Improved detection of virtualenvwrapper environments in work trees. (#26759; thanks elprans)
  • Python: Improved highlighting of function parameters in Python. (#26815; thanks MrSubidubi)
  • Python: Improved display of environments in toolchain selector. (#26741; thanks elprans)

Vim

  • Added :ls and :buffers. (#27797; thanks 5brian)
  • Added :options and :map. (#27798; thanks 5brian)
  • Added g? convert to Rot13/Rot47. (#27824; thanks 0x2CA)
  • Fixed d]} to not delete the closing brace (#27786)
  • Fixed d} from the start of the line to not delete the paragraph separator (#27786)
  • Fixed d} from the middle of the line to not delete the final newline (#27786)
  • Fixed space on multibyte characters at end of line. (#27860; thanks mastion)
  • Fixed o and shift-o in visual block mode. (#27678; thanks mastion)
  • Added support for Terminal && vi_mode as keybinding context to detect when the terminal is in vi_mode. (#26236; thanks iyht)

AI

  • Added support for DeepSeek R1 hosted on AWS Bedrock. (#27495; thanks 5herlocked)
  • Fixed an issue where context servers defined in project settings would not be respected in some scenarios. (#27633)

Bug Fixes

  • Fixed an issue where fuzzy matching in file finder did not properly prioritize matches in file names. (#27937)
  • Fixed padding issue with the signature popovers. (#27734; thanks WeetHet)
  • Fixed code actions tooltip opening on top of code actions menu. (#27809)
  • Fixed the mouse cursor not hiding while typing in Vim mode. (#27804)
  • Fixed a bug where unchanged buffers were marked as conflicting if their files were deleted outside of Zed (#27701)
  • Fixed an issue where accepting LSP snippet completion would insert the label instead of expanding the snippet (#27630)
  • Fixed an issue where workspace::ToggleRightDock would open the assistant panel even when disabled via settings (#27215; thanks MrSubidubi)
  • Collaboration: Fixed a bug where AirPods had bad sound quality. (#27126)
  • Collaboration: Fixed a bug where Zed might hang when muting/unmuting/leaving/joining a channel. (#27126)
  • Collaboration: Fixed echo cancellation in calls on Linux. (#27126)
  • Collaboration: Removed dependency on WebRTC.framework on Mac. (#27126)
  • SSH: Fixed remote not restoring when opening for second time. (#27830)
  • SSH: Fixed project panel not opening when opening new SSH remote folder. (#27830)
  • SSH: Fixed remote clients unable to query custom, lsp_ext, commands (#27775)
  • SSH: Fixed trash to work on remotes with no Linux desktop environment configured (#27682)
  • Removed a small gap between the editor gutter and horizontal scrollbar. (#24887; thanks MrSubidubi)
  • Terminal: Fixed an issue where editor theme colors (text, background) were incorrectly being used instead of terminal theme colors (terminal.{foreground,background}) (#27617)

Linux Video

  • Added the ability to specify which GPU Zed uses on Linux by setting the ZED_DEVICE_ID environment variable. You can obtain the device ID of your GPU by running lspci -nn | grep VGA which will output each GPU on one line like:
    08:00.0 VGA compatible controller [0300]: NVIDIA Corporation GA104 [GeForce RTX 3070] [10de:2484] (rev a1)
    
    where the device ID here is 2484. This value is in hexadecimal, so to force Zed to use this specific GPU you would set the environment variable like so:
    ZED_DEVICE_ID=0x2484
    
    Make sure to export the variable if you choose to define it globally in a .bashrc or similar

Breaking Changes and Notices

  • Renamed hide_mouse_while_typing setting to hide_mouse (#27677)
  • Keymaps: Upper-case (ASCII) characters will now be converted explicitly to shift + the lowercase version of the character, to match the Vim behavior. (#27813)
  • Zed now requires clang 16+ to build on macOS. You may need to upgrade your Xcode.
March

0.180.2

03/28/2025

macOS
Linux
  • Fixed language server restarts sometimes not restarting a language server. (#27658)

0.180.1

03/27/2025

macOS
Linux
  • Git: Fix hunks being skipped when staging too quickly. (#27552)
  • Git: Fix crash when staging a hunk that overlaps multiple unstaged hunks. (#27545)
  • Zed now hides the mouse cursor when the user is typing. This behavior can be configured with the hide_mouse_while_typing setting. (#27519)

0.180.0

03/26/2025

macOS
Linux

Enhancements

  • Added persistence to editor folds to preserve them between restarts. (#27252)
  • Added an editor::CopyAndTrim action to trim selections when copying. (#27206)
  • Added a go_to_definition_fallback setting, which can be assigned find_all_references (default) or none. (#27426)
  • Added a scrollbar to the extensions page. (#27303)
  • Added the --system-specs flag to the Zed binary (not the CLI!), to retrieve the system specs we ask for in GitHub issues without needing to open Zed. (#27285)
  • Added option to copy extension author's name and email from extension context menu. (#27221)
  • Added the ability to set a language server's environment variables. For example: {"lsp": {"rust-analyzer": {"binary": {"path": "/some/abs/path/rust-analyzer", "env": {"RA_PROFILE": "*>100"} }}}}. (#27213; thanks davidbarsky)
  • Added a notification when saving the tasks.json file while in an invalid state. (#27185)
  • Improved user menu placement. (#27329; thanks huacnlee)
  • Improved memory usage around installed monospace fonts. On Arch Linux with the nerd-fonts package installed (which provides around 2000 monospaced fonts), it decreases RAM usage from ~800MB to around ~300MB. (#27362; thanks AlvaroParker)
  • Improved Regex syntax highlighting. (#25332; thanks chbk)
  • Improved scrolling of editor::SelectLargerSyntaxNode for better visibility. (#27295)
  • Improved autocomplete suggestions in settings.json, now the whole string is queried instead of just the last word of the string, which filters out a lot of false positives. (#27175)
  • Improved selection of action in keymap.json, where now you can double click to only select certain parts of an action, instead of selecting the whole action. (#27175)
  • Removed the stderr-prefix of a language server's stderr logs. (#27213; thanks davidbarsky)

Languages

  • Python: Added detection for runnable Python modules. (#26462; thanks griendt)
  • Python: Added Python-specific task to run a Python file as a module from inside the project's scope. (#26462; thanks griendt)
  • Python: File, line references from Python, like File "file.py", line 8 are now clickable in the terminal. (#26903; thanks thorbenk)
  • Python: Show tasks from Python plugin for standalone files. (#27183)
  • JavaScript / TypeScript: Improved autocomplete suggestions for imports. (#27235)
  • Added recognition for APKBUILD files as "Shell Script". (#27099; thanks vixalien)
  • Improved language server autocomplete to show more possible matches. (#27199)
  • Updated bun.lock files to be recognized as JSONC. (#27359; thanks A-caibird)

Vim

  • Added ' and " marks (last location jumped from in the current buffer, and location when last exiting a buffer). (#27231; thanks AidanV)
  • Added :marks which brings up a list of current marks. (#26885; thanks AidanV)

AI

  • Added support for Gemini 2.5 Pro Experimental model to Zed AI. (#27468)
  • Added support for Claude Sonnet 3.7 Thought in the assistant panel. (#27085)
  • Added support for Claude Sonnet 3.7 Thought to GitHub Copilot Chat. (#27409; thanks jiahaoxiang2000)
  • Updated Copilot to use the official @github/copilot-language-server. (#27401)
  • Inline assistant will now expand empty selections to the block under the cursor. (#27282)

Bug Fixes

  • Fixed invisible scrollbar tracks being inserted into the editor when scrollbars are explicitly disabled via settings. (#27467; thanks MrSubidubi)
  • Fixed an issue where code block highlight and indentation in Markdown preview was rendered incorrectly. (#27463)
  • Fixed an issue where Markdown preview was not rendering bullet points beginning with HTML. (#27018; thanks nilskch)
  • Fixed color swatches shrinking upon re-adding a color-related property. (#27450)
  • Fixed a conflict between LaTeX and cspell extensions affecting code formatting on save. (#27286; thanks lnay)
  • Fixed an issue where except, finally, else, and elif control flow keywords in Python would be incorrectly indented when entered at the correct level of indentation. (#27428)
  • Fixed a bug where inactiveRegions didn't replace existing diagnostics anymore when using the clangd language server. (#26737; thanks naim94a)
  • Fixed an issue where both the predict edit and git onboarding banners would show at the same time. (#27412)
  • Fixed a rare panic in the project diff view. (#27395)
  • Fixed an issue with JSX tag auto-close where components containing a . access like <Foo.Bar> would be auto-closed as </> instead of </Foo.Bar>. (#27374)
  • Fixed images in the Markdown preview appearing not at all or too often. (#25592; thanks not-my-profile)
  • Fixed an issue with context server paths not being interpreted relative to the extension's work dir. (#27201)

Breaking Changes and Notices

  • Files that are 6GB or larger will now not open. This is a temporary workaround for inefficient handling of large files resulting in extremely high memory usage, often resulting in system freezing, requiring a restart of Zed or the entire system. (#27458)
  • Changed Markdown default to soft_wrap at window width instead of preferred_line_length. (#27205)

0.179.2

03/24/2025

macOS
Linux
  • Git: Fixed a regression in Git status colors in the project panel. (#27272)
  • Extended timeout used when connecting to remote instances. (#27250)

0.179.1

03/20/2025

macOS
Linux
  • Fixed an issue that prevented formatting from working when working with remote dev
  • Fixed an issue when using code actions as a format step where the edits made by the code actions would not be grouped with the other format edits in the undo history (#27198)
  • Fixed custom tasks not shown (#27187)
  • Added fallback colors for the version_control.<variant> theme properties. (#27106)

0.179.0

03/19/2025

macOS
Linux

We introduced a new display mode for Edit Prediction called subtle, which makes predicted text hidden by default and only visible when you're holding a modifier key. To turn it on, open the Edit Prediction status bar menu and select subtle. This can also be adjusted via your settings.json with: "edit_predictions": { "mode": "subtle" }. To read about this new mode, check the blog post.

Enhancements

  • Added support for word-based completions via editor: show word completions. (#26410)
  • Added the ability to filter the list of extensions by category. (#27005)
  • Added support for reading from anonymous file descriptors (e.g., created as part of process substitution) on macOS and Linux. (#26744)
  • Added a setting use_system_prompts. On macOS, you can set this to false to use Zed's in-window confirmation dialogs instead of the system ones. (On Linux, Zed's dialogs are always used). (#26201; thanks Hawkbawk)
  • Git: Added a SelectRepo action that opens the repository selector in a modal. (#26950)
  • Git: Added a new git_hosting_providers setting for configuring custom Git hosting providers. (#26879; thanks khayyamsaleem)
  • Git: Improved the placement of the repo and branch picker popovers in the git panel. (#26950)
  • Git: Improved consistency of colors relating to Git status. (#26951; thanks jakucermak)
  • Git: Synced Git action buttons between the project diff and git panel. (#26938)
  • Git: Removed a behavior where staging the last hunk in the project diff would open the commit modal. (#26939)
  • SSH: Improved handling of multiple @ in connection strings: e.g., ssh jim.lv@es2@10.220.67.57@11.239.1.231 improving support of jump hosts running JumpServer. (#25314; thanks ColorFuzzy)
  • Multi-buffer: Improved Expand Excerpt Down so the button stays in place, allowing rapid expansion without moving the mouse. (#27058)
  • Improved Multibuffer design. Multibuffers now use less vertical space for excerpt boundaries. Additionally, the expand up/down arrows are hidden at the start and end of the buffers. (#24428)
  • Improved performance when using the scroll wheel and some other mouse interactions. (#25009; thanks huacnlee)
  • Improved support for extended keyboards on Mac (F20-F35). (#26899; thanks 0x2CA)
  • Improved autocomplete for keymap.json by treating :: like word characters when inside a string. (#26574; thanks KyleBarton)
  • Improved save dialogues for new files to default to the directory you're currently working in instead of the project root. (#22563; thanks CharlesChen0823)

Vim

  • Added global marks '[A-Z]. (#25702; thanks AidanV)
  • Added persistence for global (and local) marks. When re-opening the same workspace, your previous marks will be available. (#25702; thanks AidanV)
  • Added sentence marks '( and '). (#25702; thanks AidanV)

AI

  • Copilot: You can now sign into Copilot from assistant settings without making it your edit prediction provider. This is useful if you want to use Copilot chat while keeping a different provider, like Zed, for predictions. (#26689)
  • Copilot: Removed the copilot key from features in settings. Use edit_prediction_provider instead. (#26689)
  • Edit Prediction: Enabled toggling display modes (eager or subtle) directly from the UI via the status bar menu (#26680)

Bug Fixes

  • Fixed buffer search keeping focus when pressing enter in vim mode. (#26266; thanks CharlesChen0823)
  • Fixed an issue where navigating code from a preview tab with enable_preview_from_code_navigation set to true, "Go Back" from a newly opened tab could focus on the tab to the right instead of returning to the original preview tab. (#26943)
  • Fixed an issue where selecting the first line in the terminal would cause it to scroll. (#26842)
  • Fixed a bug where context for the terminal assistant would add line breaks in the presence of soft wrapped lines. (#25415; thanks 0xRichardH)
  • Fixed the interaction between auto_reveal, file_scan_inclusions, and .gitignore within the Project Panel. Files that are always included will now be auto-revealed in the Project Panel, even if those files are also gitignored. (#26197; thanks Hawkbawk)
  • Fixed edit predictions appearing in read-only buffers. (#26804; thanks MrSubidubi)
  • Fixed attributes in Rust being improperly highlighted. (#26172; thanks MrSubidubi)
  • Fixed selection highlight appearing in input fields like the file picker, command palette, etc. (#26805)
  • Fixed auto-paired quotes being inserted when typing a quote immediately next to a word character. (#26803)
  • Fixed a rare case where languages had no associated icon in the language selector. (#26376; thanks MrSubidubi)
  • Fixed an issue where file names with newlines and multi-byte characters could cause a crash in certain cases. (#26791)
  • Fixed an issue where Zed would show macOS native tabs when opening new fullscreen windows on macOS. (#26774)
  • Fixed a bug where editor's outline view wouldn't move the cursor on confirm action. (#26761)
  • Fixed an issue where autocomplete suggestions and diagnostics for languages and (icon) themes in settings would not update when the extension with which they were added was installed or uninstalled. (#26633)
  • Linux: Added a workaround for an issue where Zed would crash on AMD Linux systems when selecting long lines. (#26890; thanks not-my-profile)
  • Git: Fixed git commit messages not being syntax-highlighted. (#26988)
  • Git: Fixed involuntary joining of lines when typing in the commit message editor. (#26953)
  • Git: Fixed being unable to type whitespace after a comment character at the start of a line in the commit message editor. (#26953)
  • Vim: Fixed space not handling non-ASCII characters. (#27053; thanks 5brian)

0.178.4

03/18/2025

macOS
Linux
  • Git: Changed git commit message editors to use placeholder text for Git's suggested merge messages. (#26992)
  • Git: Fixed various minor bugs.

0.178.3

03/17/2025

macOS
Linux
  • Git: Added a git.hunk_style setting to control whether staged or unstaged hunks are hollow. (26816; thanks jakcharvat)
  • Git: Improved gutter diff hunks to show whether a hunk is staged. (#26809; thanks jakcharvat)
  • Fixed a bug that prevented typing in the in-app feedback form. (#26793)

0.178.2

03/14/2025

macOS
Linux
  • Git: On macOS, switched to using the system's Git binary to create commits. This fixes issues that some users were seeing with pre-commit hooks. Compatibility note: after this change, it is no longer possible to commit from Zed unless Git is installed. (#26705)
  • Git: Fixed a bug that prevented putting the cursor after a deletion hunk at the end of a file, in the absence of trailing newlines. (#26621)
  • Git: Fixed flicker when reverting last hunk in project diff view. (#26706)
  • Git: Fixed the Git panel to not show an "Initialize Repositories" button in empty projects. (#26713)
  • Git: Fixed showing commit messages for all repos. (#26709)
  • Fixed an issue where file paths in the terminal surrounded by () or [] would not be highlighted properly. (#26695)

0.178.1

03/13/2025

macOS
Linux
  • Git: Fixed git-credential-manager. (#26573)
  • Git: Fixed a bug where unstage/stage all in project diff wouldn't work while Git panel was closed. (#26575)
  • Git: Commit messages are now wrapped "as you type" to 72 characters. (#26507)
  • Git: Renamed editor::ToggleGitBlame to git::Blame. (#26565)
  • Theme: Fixed an issue where version control colors weren't applying correctly. (#26665, #26606)
  • Fixed a bug where the modal layer could not be dismissed via the mouse.
  • Fixed goto single file worktrees during terminal cmd-clicks. (#26582)
  • Fixed issue where Zed would behave weirdly when opening new fullscreen windows by disabling window tabbing. (#26600)

0.178.0

03/12/2025

macOS
Linux

Enhancements

  • Git: Added a small onboarding banner for the git launch. (#26518)
  • Git: Added horizontal scrolling in the git panel. (#26402)
  • Git: Improved the stage-and-next and unstage-and-next actions in the project diff editor to start a commit after acting on the last hunk. (#26434)
  • Git: Switched showing git operation results from notifications to status toasts. (#26420)
  • Git: Smart truncate long branch and repository names in their respective selectors in the Git panel. (#26483)
  • Git: Removed the git.hunk_style setting; staged_border behavior is now universal. (#26504)
  • Added copy permalink action for self-hosted GitHub enterprise instances. (#26482)
  • Added a keybinding to alt-shift-enter to interact with the button on the new status toasts, toast::RunAction. (#26420)
  • Added Open Remote... to File menu. (#26288)
  • Added a "secondary" meta key to the Zed keystroke parser, which maps to cmd on macOS and ctrl off of macOS. (#26390)
  • Added support for opening folders in Zed from third-party macOS file managers like Path Finder and Super Charge through their Open With menu. (#26357)
  • Added a sign-out button for Copilot in Assistant settings. (#26340)
  • Added editor::MoveToStartOfNextExcerpt and editor::MoveToEndOfPreviousExcerpt. (#26264)
  • Added multibuffer key context. (#26264)
  • cmd-down and cmd-shift-down on Mac now move to the end of the last line of a singleton buffer instead of the beginning. In multibuffers, these now move to the start of the next excerpt. (#26264)
  • Added support for workspace/executeCommand for actions' data. (#26239)
  • Improved cmd-click in terminal to find more paths. (#26174)
  • Improved the terminal tab for when command is run via vim mode, in order to disable the rerun button, seeing as Zed does not support it. (#26122; thanks dinocosta)
  • User and global .npmrc configuration is now respected when running user-provided NPM binary (which also happens automatically when npm from PATH is newer than 18.0.0). (#26209)
  • Gruvbox Themes: Added a color for @variable.special syntax highlights. (#26271; thanks edwloef)
  • Linux: Made nano save (ctrl-o) work by default in terminal. (#26479)

Languages

  • Added support for auto-closing of JSX/TSX tags. (#25681)
  • Added support for clangd's inactiveRegions extension. (#26146; thanks naim94a)
  • Added vtsls and typescript-language-server to the list of available language servers. (#26046; thanks sacki5)
  • Improved Python highlighting for default function arguments and scoped identifiers. (#25813; thanks MrSubidubi)
  • Enabled soft-wrap by default in Markdown. (#26247)

Vim

  • Added <count>% motion. (#25839; thanks 5brian)
  • Added :reg[isters] to show the current values of registers. (#25945; thanks AidanV)
  • Added support for toggling boolean values with ctrl-a/ctrl-x. (#25997; thanks 5brian)

AI

  • Edit Predictions: Improved UX when there's no keybinding for accepting predictions. (#25815)

Bug Fixes

  • Git: Fixed an issue where pressing up or down in the git panel's commit message editor would change the selected status entry. (#26501)
  • Git: Fixed the generate commit message button still showing when the assistant is disabled. (#26519)
  • Git: Fixed a bug where our push button would always overwrite the current branch's upstream. (#26486)
  • Fixed an issue where text selection was not visible on top of a text background in the editor. (#26454)
  • Fixed an issue where Zed showed transparent titlebar in fullscreen mode on macOS. (#26403)
  • Fixed a bug where file paths in the built-in terminal of the format path/to/file.ext:row:col:description or error message would not be correctly identified as file paths due to the colon & additional text at the end. (#26401)
  • Fixed an issue where clicking the editor with the mouse while the Go to Line palette is open would cause it to jump to the previous scroll position. (#26362)
  • Fixed LSP completion items modified before resolve request. (#26347)
  • Fixed an issue where signing into Copilot required restarting Zed. (#26330)
  • Fixed vim::PreviousSectionEnd (bound to [ ]) to move to the beginning of the line, matching the behavior of vim::NextSectionEnd. (#26264)
  • Fixed default file type associations overriding associations provided by extensions for txt files. (#25420; thanks MrSubidubi)
  • Fixed an issue where multi-line pasted content was auto-indented incorrectly if copied from the middle of an existing line. (#26246)
  • Fixed SSH remotes running Nushell. (#25613)
  • Fixed the terminal tab title when using !! to rerun the last command. (#26122; thanks dinocosta)
  • Fixed an issue where cmd+click on a URL was not working sometimes. (#26128)
  • Fixed an issue where the wrong file from a different worktree would open when using Cmd+Click on a file import. (#26120)
  • Fixed font sizes not reacting on settings change. (#26060)
  • Fixed the "Open a file or project to get started" message not always showing after all buffers have been closed. (#26044; thanks felixpackard)
  • Fixed soft_wrap setting not applying to buffers starting with a different language. (#25880; thanks alexozer)
  • Fixed lost focus when navigating back in project search result. (#22483; thanks feeiyu)
  • Fixed broken C++ completion suggestions. (#25405; thanks BorisVassilev1)
  • Fixed wrong file icons being shown for files outside of the current project. (#25933; thanks MrSubidubi)
  • Fixed constants not being highlighted in Python files. (#25813; thanks MrSubidubi)
  • Fixed regex search box being overly green. (#25962)
  • Vim: Fixed insert before (shift-i) in visual modes. (#25603; thanks 5brian)
  • Vim: Fixed Vim ignoring cursor_shape settings. (#25439; thanks 0x2CA)
  • Vim: Fixed . repeat for remapped surrounds/exchange actions. (#26101)
  • Vim: Fixed "seed_search_query_from_cursor" : "selection". (#26107; thanks 0x2CA)
  • Vim: Fixed vim exchange's "clear exchange" function didn't clear the exchange and kept you in operator pending mode. (#25804; thanks thomasheartman)
  • Vim: Fixed incorrect behavior of backward search. (#24974; thanks nilehmann)
  • Vim: Fixed x g ctrl-a step. (#26023; thanks 0x2CA)
  • Linux: Fixed ctrl-alt-f not correctly toggling search filters in project search. (#25917; thanks GuilhermeRGoncalves)

Breaking Changes and Notices

  • Renamed the vim::Backspace and vim::Space actions to vim::WrappingLeft and vim::WrappingRight respectively. The old names are still available, but they are marked as deprecated and users are advised to use the new names. (#25694; thanks asqarslanov)

0.177.7

03/11/2025

macOS
Linux

The Git beta is now publicly available to everyone on Zed Preview. 🎉

  • Git Beta: Added keyboard shortcuts (when the panel is open) for fetch ctrl-g ctrl-g, pull ctrl-g down, push ctrl-g up, force-push ctrl-g shift-up, open diff ctrl-g d. (#26374)
  • Git Beta: Added a panel header with an open diff and stage/unstage all buttons. (#26354)
  • Git Beta: Added more information about Git branches to the branch picker. (#25359)
  • Git Beta: Passed down environment variables from project to Git operations. (#26301)
  • Git Beta: Truncated the branch selector in the commit modal. (#26417)
  • Git Beta: Fixed a bug that caused the project diff not to update in response to Git-related events. (#26396)
  • Git Beta: Fixed escape tooltip in commit modal. (#26405)
  • Git Beta: Fixed opening the branch selector in the commit modal with cmd-option-b. (#26417)
  • Git Beta: Fixed being unable to enter a newline in the Git panel's commit editor on Linux. (#26427)
  • Git Beta: Fixed a panic that could occur when using the project diff. (#26394)
  • Fixed editor: copy permalink to line to now use the upstream of the current branch instead of origin. (#26398)

0.177.6

03/10/2025

macOS
Linux
  • Git Beta: Added git::Switch and git::CheckoutBranch as aliases for the existing git::Branch. (#26315)
  • Git Beta: Added git::Add as an alias for the existing git::Diff. (#26316)
  • Git Beta: Improved performance of Zed in large repos with lots of file system events. (#26244)
  • Git Beta: Adjusted the default hunk styling for staged and unstaged changes. (#26299)
  • Git Beta: Made the empty project diff state a little more helpful with a button to push, and a button to close the item. (#26316)
  • Git Beta: Disabled commit message generation when commit is not possible. (#26329)
  • Git Beta: Removed limitation that made it impossible to create a branch from the branch picker when it too closely resembled an existing branch name. (#26287)
  • Git Beta: Fixed a beachball when restarting in a large repo with a large number of open files. (#26237)
  • Git Beta: Fixed an issue where error messages from Git were not being displayed in toast notifications. (#26303)
  • Git Beta: Fixed a few bugs where the suggested commit text wouldn't show in certain cases, or would update slowly. (#26313)
  • Git Beta: Fixed a bug where the 'generate commit message' keybinding wasn't working. (#26316)
  • Improved performance of rendering multibuffers with very large numbers of buffers. (#26308)

0.177.5

03/07/2025

macOS
Linux
  • Git Beta: Added support for generating commit messages using a language model. (#26227)
  • Git Beta: Added hunk style settings to emphasize the unstaged state, rather than the staged state. (#26259)
  • Git Beta: Updated the Git panel to use worktree-relative paths and support opening files outside the active repository's worktree. (#26047)
  • Git Beta: Disabled hunk restore action and button for created files. (#25841)
  • Git Beta: Fixed issue where git panel wasn't using default width after restart. (#26220)
  • Fixed a bug causing slowness when viewing multi buffers with lots of excerpts. (#26253)
  • Fixed some potential panics in the AWS Bedrock model provider. (#26238)

0.177.4

03/06/2025

macOS
Linux
  • Git Beta: Added support for push/pull/fetch when remote requires authentication. (#25953)
  • Git Beta: Fixed resolution of conflicts from cherry-picks not being reflected in the Git panel. (#26145)
  • Git Beta: Fixed commit font_fallbacks. (#26184)
  • Git Beta: Fixed a panic that could occur when selecting text in one of the commit message editors. (#26186)
  • Git Beta: Fixed a bug where the branch selector would only show for the first repository opened. (#26148)
  • Git Beta: Fixed a bug where discarding a hunk in the project diff view performed two concurrent saves of the buffer. (#26173)
  • Git Beta: Fixed a bug where the repository selector could be too narrow. (#26149)
  • Git Beta: Fixed a bug where diff hunks appeared in the wrong state after failing to write to the Git index. (#26173)

0.177.3

03/05/2025

macOS
Linux
  • Git Beta: Fixed a performance regression related to buffer diffs. (#26137)
  • Git Beta: Fixed a panic when expanding diff hunks while git blame is open. (#26130)
  • Fixed a hang that could occur when editing certain Zig files. (#26092)
  • Fixed an issue where language models would not be authenticated until after the model selector was opened (Preview only). (#26138)

0.177.2

03/05/2025

macOS
Linux
  • Git Beta: Allowed opening the commit modal even if we're unable to commit. (#26068)
  • Git Beta: Synchronized selections between the modal editor and the panel editor. (#26068)
  • Git Beta: Fixed a performance problem when a large diff hunk was displayed in an editor. (#26088)
  • Git Beta: Fixed frame drops caused by opening the git panel. (#26090)
  • Git Beta: Fixed jumping to the previous diff hunk. (#26059)

0.177.1

03/04/2025

macOS
Linux
  • Git Beta: Added git.hunk_style setting to allow toggling between git hunk visual styles. (#26038)
  • Git Beta: Made suggested commits placeholders and allowed them to be committed. (#26006)
  • Git Beta: Improved .git scan heuristics. (#25927)
  • Git Beta: Improved consistency between Git panel and Git modal. (#25990, #25988, (#26000)
  • Git Beta: Changed the behavior of git features to not treat $HOME as a git repository unless opened directly. (#25948)
  • Git Beta: Updated enter in the list of changed files to preserve focus. If you want the old behaviour, hit enter twice. (#25986)
  • Git Beta: Fixed bugs where the text on certain buttons would overflow due to long names. (#25940)
  • Git Beta: Fixed an issue where when the git panel would need to scroll all the items are pushed off the screen. (#25961)
  • Git Beta: Fixed a bug where the git panel footer wouldn't show up when on a detached HEAD. (#25968)
  • Git Beta: Fixed toggling folds from within deleted hunks. (#25967)
  • Git Beta: Fixed keyboard shortcut display in project diff view. (#26045)
  • Git Beta: Fixed a bug where staging/unstaging of hunks could use the wrong git repository if you had many open. (#25996)
  • Git Beta: Follow the cursor, not the scroll anchor, in the list. Although the scroll anchor was nice for passive scrolling, it broke if you had changed the overflow scroll settings. (#25986)
  • Vim: Fixed j/k on folded multibuffer header. (#25944)
  • Vim: Added git keyboard shortcuts: d u/d U for staging/unstaging in the project diff view. d o/d O to show hide/toggle staged in the editor and d p for restoring the hunk. (#26045)
  • Linux: Fixed a panic that could occur on theme appearance change. (#26019)

0.177.0

03/03/2025

macOS
Linux

Today, we are launching our private beta for enhanced Git integrations. We'll gradually invite users from the Git beta waitlist daily. Keep an eye out for an invite email from our team in the coming days.


Breaking Changes and Notices

  • Renamed several keymap actions for consistency (e.g., GoToPrevHunkGoToPreviousHunk, TabPrevBacktab, etc). Your existing configured keybindings will still work. You can click "Backup and Update" at the top of your keymap file to easily update to the new actions. (#25909)

Enhancements

  • Added support for stop_at_indent to Editor::DeleteToBeginningOfLine. (Thanks @felixpackard)
  • Added support to unfold multibuffer excerpts when editing their contents. (#25677)
  • Added a way to toggle inlay hints with modifiers. (#25752)
"inlay_hints": {
    /// A set of modifiers which, when pressed, will toggle the visibility of inlay hints.
    /// If the set is empty or not all the modifiers specified are pressed, inlay hints will not be toggled.
    "toggle_on_modifiers_press": {
        "control": false,
        "shift": false,
        "alt": false,
        "platform": false,
        "function": false
    }
}
  • SSH: Added support for specifying ssh_config files (ssh -F ssh_config) in connection string. (#25619)
  • SSH: Added support for downloading zed-remote-server with busybox wget (Alpine, etc). (#25621)
  • Improved Zed tasks' ZED_WORKTREE_ROOT fallbacks. (#25605)
  • Changed the always_show_close_button key to show_close_button and introduced a new hidden value, that allows never displaying the close button. (#23880; thanks @Morgandri1)
  • Updated bundled JSON schemas for package.json and tsconfig.json. (#25826)

Vim

Languages

  • Added editor::OrganizeImports action to organize imports (sort, remove unused, etc.) for supported LSPs. You can trigger it by using the alt-shift-o key binding. (#25793)
  • Added support for clickable file paths in the Odin language format. (#25842; thanks @devzeth)

AI

  • Edit Predictions: Added an enabled_in_assistant setting. (#25767)
  • Edit Predictions: Added support for absolute globs in edit_predictions.disabled_globs.

Bug Fixes

  • Fixed an issue where git hunk indicators in editor scrollbars used the incorrect colors. (#25824)
  • Fixed Markdown preview to display image with max width 100%. (#25632; thanks @huacnlee)
  • Fixed issues with ansible-language-server sending phantom diagnostic updates. (#25903)
  • Fixed an issue where the buffer search options would not be reset when using buffer: deploy search after using Vim search (* & #) which enable all search options. (#25838)
  • Fixed an issue where active_pane_modifiers settings would be applied to a parent pane if one of its child panes was active. (#25836)
  • Fixed search input regex highlight not going away after redeploy. (#25797)
  • Fixed an issue where Zed.log could grow excessively large during long sessions of Zed. (#25768)
  • Fixed Rust test tasks showing up outside of tests. (#25787)
  • Fixed markdown preview not updating when an edit prediction is accepted. (#25772)
  • Fixed a panic when Cyrillic characters are used in languages like Swift. (#25739)
  • Fixed an issue where the Bedrock model provider would not always respect the region. (#25716; thanks @5herlocked)
  • Fixed an issue where active diagnostics could become stale. (#25646)
February

0.176.1

02/27/2025

macOS
Linux
  • Fixed issues with launching Svelte/Biome language servers (#25757)
  • vim: Fixed a panic when submitting a search. (#25717)

0.176.0

02/26/2025

macOS
Linux

We are currently working to integrate Git more deeply into Zed. Join the waitlist for the private beta, and we will pull you in when it's ready!

Enhancements

  • Added an allow_rewrap setting to control the editor::Rewrap behavior for a given language. (#25173)
  • Added an on_last_window_closed setting, that allows users to quit the app when the last window is closed (#25185)
  • Added initial inline diagnostics support (#25297)
  • Added support for stop_at_indent option for MoveToBeginningOfLine and SelectToBeginningOfLine. (#25428)
  • Added support for checking for package-version-server on the $PATH. (#23849; thanks matthewpi)
  • Added support for repositories hosted on chromium.googlesource.com for Git blames and permalinks. (#24881; thanks hferreiro)
  • Added support for selecting the commit message in git commits (#25136)
  • Added support for tcsh/csh shells as login shell when loading environment variables. (#25122)
  • Added the ability to specify an HTTP/HTTPS proxy for Copilot (#24364; thanks eli-kaplan).
  • Improved diagnostic pane responsiveness with large # of diagnostics. (#25287)
  • Improved display of long paths in the file finder modal (#25049)
  • Improved expanded macro ergonomics (#25298)
  • Improved performance of project panel in large git repositories. (#25465)
  • Improved the scenario where there'd be a project panel entry highlighted/marked even if there is no open buffer. (#25457)
  • Improved Zed's handling of the following requests when the first language server in language server settings for a given language is not capable of handling them (#25591):
    • Perform Rename
    • Prepare Rename
    • Document Highlights
    • Find all references
    • Go to implementation
    • Go to definition
    • Go to declaration
    • Go to type definition

Syntax Highlighting / Themes

  • Added eager loading of the active theme and icon theme. This should address some reports of seeing the default themes briefly on startup. (#25368)
  • Added syntax scopes to themes (#25323; thanks chbk)
  • Added raw keyword to Rust language highlights (see the Rust 1.82.0 announcement). (#25342)
  • Improved the appearance of the file finder when long paths are shown by eliding path segments (#25303)
  • Improved C++ syntax highlighting for sized type specifiers. (#25362; thanks zeux)
  • Improved JavaScript and TypeScript syntax highlighting. (#25328; thanks chbk)
  • Improved Rust syntax highlighting. (#25333; thanks chbk)
  • Improved Python syntax highlighting. (#25331; thanks chbk)
  • Improved terminal reopening to be per workspace instead of global. (#25336)
  • Improved C and C++ syntax highlighting. (#25325; thanks chbk)
  • Improved Go syntax highlighting. (#25327; thanks chbk)
  • Improved JSON syntax highlighting. (#25329; thanks chbk)
  • Improved Bash syntax highlighting (#25324; thanks chbk)
  • Improved rendering of true and false to match boolean highlight defined in themes for C, C++, Go, JSON, JSONC, Python, and Rust. (#25338; thanks everdrone)
  • Gruvbox themes: Changed the color used for @variable syntax highlights to be less intense. (#25464)
  • One Dark theme: Adjusted the color used for @variable syntax highlights. (#25468)
  • Fixed theme selector resetting the buffer size. (#25425)

Vim

  • Vim: Added an implementation of vim-exchange (#24678; thanks thomasheartman)
  • Vim: Added missing default key binding for Vim::CurrentLine for replace with register mode (grr) (#24678; thanks thomasheartman)
  • Vim: Fixed gr in visual mode (#25301; thanks 0x2CA)
  • Vim: Fixed a bug where assistant: insert into editor was missing the selected range. (#25133; thanks rien7)
  • Vim: Fixed a bug where editor: copy was missing the selected range. (#25133; thanks rien7)
  • Vim: Fixed a bug where search results were skipped occasionally. (#25580)
  • Vim: Fixed cursor shape hollow only in block (#25235; thanks 0x2CA)
  • Vim: Fixed operations on backtick quotes. (#25502; thanks 5brian)
  • Vim: Fixed visual selections when jumping to marks (#25360; thanks dinocosta)

Keybind Improvements

  • Emacs: Added mapping for alt-m (back-to-indentation). (#25428)
  • Emacs: Added support for alt-{ and alt-} paragraph navigation. (#25284)
  • Fixed undo in emacs (ctrl-_) not working by default in Terminal on macOS. (#25578)
  • Fixed tmux ctrl-b being broken in the Terminal on Linux by default. (#25476)
  • Mac: In the default keymap, cmd-up now moves to the previous multibuffer excerpt start, and cmd-down moves to the next multibuffer excerpt end. For normal buffers these behave the same as before, moving to the beginning or end. (#25299)
  • Windows: Added support for "menu" key (#25000; thanks gim913)

Languages

  • Rust: Added support for --target-dir for Rust tasks (#24725; thanks bnjjj)
  • Rust: Added support for doc test in tasks for Rust (#24806; thanks bnjjj)
  • Rust: Fixed not being able to spawn the cargo test task for a tests module in lib.rs, main.rs, or mod.rs (#25092)
  • Python: Fixed a bug where indentation was applied when adding a newline to a comment ending in :. (#25437)
  • Python: Fixed Pyright failing to start when installed locally (#24873; thanks MrSubidubi)

AI

  • Added support for AWS Bedrock to the Assistant. (#21092; thanks 5herlocked)
  • Edit Predictions: Added support for detecting LICENSE.md and LICENCE.md files to license detection. (#25422; thanks pngdrift)
  • Edit Predictions: Disable This Buffer option when predictions are disabled for its language. (#25566)
  • Edit Predictions: Disable as soon as edit_prediction_provider is set to none. (#25505)
  • Edit Predictions: Do not require a modifier key when indentation is correct according to its surrounding block. (#25491)
  • Edit Predictions: Fixed mismatch between status bar settings and editor control settings. (#25505)
  • Edit Predictions: Fixed jump/accept popover position for long lines. (#25348)

Bug Fixes

  • Fixed a bug in the GoToDefinitionSplit action where splitting wouldn't happen if the definition was in the same active editor. (#24990)
  • Fixed a bug that would prevent rejoining projects sometimes. (#25530)
  • Fixed a bug where copy_recursive ran infinitely when copying a folder into its subfolder. (#25317)
  • Fixed a bug where run indicators were jumping when buffer content changed. (#25507)
  • Fixed a bug where shells spawned by the Zed terminal would not hide the login message when ~/.hushlogin exists (#25224)
  • Fixed a bug where the breadcrumb was showing in the image viewer when toolbar breadcrumbs were disabled. (#25654; thanks kaf-lamed-beyt)
  • Fixed a bug where you couldn't open the outline modal when focus was in the buffer search bar. (#25225)
  • Fixed a crash that could happen when typing in the assistant panel with edit predictions enabled. (#25598)
  • Fixed a hang that could occur when large files were changed on disk or formatted. (#25129)
  • Fixed a visual bug that could make context menus unusable when setting a custom buffer_line_height. (#25172)
  • Fixed an issue where screen sharing would be visible even when user didn't have the right permission resulting in errors later on. (#25192; thanks devzeth)
  • Fixed an issue where whitespace selections were incorrectly highlighted. (#25236)
  • Fixed being unable to toggle diff hunks with the mouse in some cases (#25367)
  • Fixed extremely small scrollbar thumb for long content in Terminal, Outline Panel, and more. (#25288)
  • Fixed gutter highlights not matching diff hunks in multibuffers in some cases. (#25600)
  • Fixed incorrect indentation when pasting multi-line content that was copied from another app. (#25300)
  • Fixed issue where scroll thumb was invisible or too small when viewing long or wide files. (#25162)
  • Fixed keymap use of shift- modifier symbol (#25238; thanks 0x2CA)
  • Fixed keystrokes rendering inconsistently on Linux (#25139)
  • Fixed panic caused when editor::SelectLargerSyntaxNode is called repeatedly in multi buffer. (#25585)
  • Fixed project panel entry not being marked when triggering open action via keyboard. (#25567)
  • Fixed project panel implementation of the menu::SelectLast action (#25160; thanks pjtatlow)
  • Fixed scenario where pasting a file in the project panel after a copy/cut operation wouldn't automatically open it in the editor (#25555).
  • Fixed some issues that caused AI providers to sometimes be misconfigured. (#25313)
  • Fixed yank + paste indenting incorrectly when auto_indent_on_paste was set to false in certain languages. (#25447)

Breaking Changes and Notices

  • Renamed editor::RevertSelectedHunks and editor::RevertFile to git::Restore and git::RestoreFile for consistency with git (#25197)
  • Renamed the editor::ExpandAllHunkDiffs action to editor::ExpandAllDiffHunks (#25369)

0.175.5

02/25/2025

macOS
Linux
  • Added Claude Sonnet 3.7 to Zed AI. (#25577)
  • Added Claude Sonnet 3.7 to GitHub Copilot Chat (#25529)
  • Fixed Rust analyzer renames sometimes failing. (Preview only) (#25553)

0.175.4

02/25/2025

macOS
Linux
  • Added support for Anthropic Claude 3.7. (#25497)
  • Fixed Zed sending out didOpen notification to a language server when opening documents. (#25411)

0.175.3

02/21/2025

macOS
Linux
  • Changed how workspace folders are shared with language servers, fixing a startup issue with next-ls in the process. (#25344)

0.175.2

02/20/2025

macOS
Linux
  • Fix some language servers (elixir-ls, tailwindcss, phpactor) failing to start up due to an unfilled root_uri property in the InitializeParams (#25290)

0.175.1

02/19/2025

macOS
Linux
  • Reverted an incomplete change to diff hunk controls (#25176)
  • Fixed a panic in the file finder (#25166)

0.175.0

02/19/2025

macOS
Linux

It's Quality Week at Zed Industries! 🎉 The team will be taking the week to focus mainly on squashing pesky bugs. 🐛💥 Next week, we will resume work on the improved Git functionality within Zed!


Breaking Changes and Notices

  • A number of themes are no longer installed in Zed by default: Andromeda, Atelier, Rosé Pine, Sandcastle, Solarized & Summercamp. If you would like to continue using one of these extensions (#24589):
    1. Open zed: extensions
    2. Install the zed-legacy-themes extension
    3. Re-select your desired theme
  • No longer open the split menu in the file finder when command is pressed. (#25097)

Enhancements

  • Added support for Gemini 2.0 Flash via Copilot Chat in Zed Assistant. (#24952; thanks 0xRichardH)
  • Added support for Mistral to the Assistant. (#24879; thanks Shidfar)
  • Added ability to extend selection with shift-click in the terminal. (#25143)
  • Added support for switching to columnar selection by pressing alt-shift while mouse is down. (#25096)
  • Added support to highlight all matching occurrences of text within the selection in editor. (#24835)
  • Added regex highlights in the query input. (#25005)
  • Added recognition for .bats files as Shell Script. (#24877; thanks bersace)
  • Added ability to specify port forwarding settings for remote connections. (#24474; thanks Tebro)
  • Added a way to configure user key bindings to toggle font size without adjusting user settings (#24857). By default, toggling font size will not result in the user settings being updated. You can opt into persistence by adding some of the following keybindings to your keybindings.json file:
    • "cmd-=": ["zed::IncreaseBufferFontSize", { "persist": true }]
    • "cmd-+": ["zed::IncreaseBufferFontSize", { "persist": true }]
    • "cmd--": ["zed::DecreaseBufferFontSize", { "persist": true }]
    • "cmd-0": ["zed::ResetBufferFontSize", { "persist": true }]
  • Icon Themes: Added the ability for icon themes to provide their own file associations. (#24926)
  • Icon Themes: Added file icon associations for .rdata and .RData files. (#24925; thanks aymennasri)
  • Icon Themes: Added the ability to change file icons for Visual Studio project files (#24851; thanks RandaZraik):
    • Solution files (.sln)
    • Solution User Options files (.suo)
    • C# Project files (.csproj)
    • F# Project files (.fsproj)
    • Visual Basic Project files (.vbproj)
  • Icon themes: Added the ability to change the file icon for Crystal (.cr, .ecr) files. (#24903; thanks nobodywasishere)
  • Improved LSP documentation file links by opening in Zed, not the system opener. (#25117)
  • Improved rendering of completion documentation markdown consistently with documentation markdown. (#25117)
  • Improved display of long paths in the file finder modal. (#25049)
  • Improved workspace serialization by persisting latest selections for editors. (#25083)
  • Improved redaction of Google Gemini keys from API errors in logs. (#24884)
  • Improved gutter color highlights by having separate highlights for removed and deleted portions of git modification hunks. (#24834)
  • Reduced the number of "theme not found" and "icon theme not found" errors in the logs for themes provided by extensions. (#25098)

Vim

  • Improved logic of aq, iq, ab, and ib motions to work more like mini.ai plugin. (#24167; thanks oca159)
  • Use visual mode for select all matches in search (to be consistent with ga). (#24897; thanks dinocosta)

AI

  • Handle edit_prediction_conflict context without modified keybinds for AcceptEditPrediction. (#25015)
  • Excluded Cloudflare Workers .dev.vars files from edit prediction. (#24838)

Bug Fixes

  • Fixed panics on completion with multi-byte characters input. (#25150)
  • Fixed an issue where configured languages models were not showing up in the language model selector until the configuration view was opened for the first time. (#25123)
  • Fixed a bug that made it possible to undo changes in dirty deserialized buffer (with restore_unsaved_buffers: true). (#25106)
  • Fixed diff hunks appearing in unchanged symlinked files. (#25058)
  • Fixed a parsing bug that caused memory leaks and crashes when using the Ansible extension. (#25054)
  • Fixed a bug where editor: split selection into lines was adding an extra line at the end of the selection. (#25053)
  • Fixed an issue where writing TypeScript using Allman style would result in incorrect auto-indent behavior. (#25051)
  • Fixed crash when trying to save terminal buffer. (#25028; thanks dylwil3)
  • Fixed a bug that sometimes caused incorrect syntax highlighting when deploying the inline assistant. (#25031)
  • Fixed issue where reload hangs for several minutes on Linux. (#24882)
  • Fixed an indentation bug in the outline view when working with Go code. (#24861; thanks ashishbhate)
  • Fixed edge-cases when closing multiple items, including multibuffers. Previously no prompt was generated when closing an item that was open in a multibuffer, now you will be prompted. (#24603)
  • Terminal: Fixed cmd-click on links/files when terminal is not focused. (#25104)
  • Terminal: Fixed a bug where links remained highlighted/clickable, even after releasing cmd, when switching to another application and back. (#25104)
  • Vim: Fixed crash in ci{. (#25138)
  • Vim: Fixed rendering of vim commands to preserve case sensitivity. (#24322; thanks dinocosta)
  • Vim: Fixed ReplaceWithRegister gr with dot repeat. (#24932; thanks xzbdmw)
  • Vim: Fix :wq in a multibuffer. (#24603)
  • Windows: Fixed handling of F10 and Alt+Fn. (#24745; thanks gim913)

0.174.4

02/18/2025

macOS
Linux
  • Fixed a bug where edit predictions would not interact correctly with code within folded blocks. Folded blocks are now automatically expanded when jumping to them (#25116).

0.174.3

02/18/2025

macOS
Linux
  • Fixed a bug that prevented renames for some languages. (#23706)

0.174.2

02/14/2025

macOS
Linux
  • Fixed an issue where the keybinding for task::Spawn opened the task selector instead of executing the task. (#24901)

0.174.1

02/14/2025

macOS
Linux
  • Fixed a panic when displaying a whitespace-only line in the edit prediction preview (#24874)
  • Fixed editor::ShowEditPrediction when show_edit_predictions is set to false. (#24868)
  • Fixed an issue where changing the icon theme would change the theme. (#24863)

0.174.0

02/13/2025

macOS
Linux

Today, we are announcing the public release of our new AI feature: Edit Predictions! 🎉

Edit Predictions is available in both preview and stable, to all Zed users. Read more about it here blog link!

Everything else that would've normally shipped to preview today has been fast-tracked to stable! See you next week!


  • Fixed some bugs for edit predictions.

0.173.8

02/13/2025

macOS
Linux
  • Added some under-the-hood tweaks for Edit Predictions (beta).

0.173.7

02/13/2025

macOS
Linux

Enhancements

  • Icon themes: Added the ability to change the file icon for Bicep (.bicep) files (#24757; thanks jezikk).

Vim

  • Add ToggleStagedSelectedDiffHunks action for staging and unstaging individual diff hunks (#24606).

Bug Fixes

  • Fixed keybind hints being improperly scaled for custom ui font sizes (#24708; thanks MrSubidubi).
  • Fixed an issue where subdirectories of an already opened project, when opened via the terminal, would open in the existing project instead of a new window (#24560).

0.173.6

02/12/2025

macOS
Linux

Enhancements

  • Icon themes: Added the ability for extensions to change the file icon for the following file types:
  • Icon themes: Added support for configuring both a light and dark icon theme and switching between them based on system preference (#24702).
{
  "icon_theme": {
    "mode": "system",
    "light": "Zed (Default)",
    "dark": "Zed (Default)"
  }
}
  • Added commands editor: copy file name and editor: copy file name without extensions (#22174; thanks ankddev).
  • Improved the settings migration banner. The migration banner will only appear in settings.json and keymap.json, if you have deprecated settings or keybindings, allowing you to migrate them to work with the new version on Zed (#24621).

Vim

  • Introduced first version of :set with support for [no]wrap, [no]number, [no]relativenumber (#24209; thanks maxbucknell).

Bug Fixes

  • Fixed issue where horizontal scrollbar would scroll few characters width when soft wrap is active (#24735).
  • Fixed editor::GoToDiagnostics action stuck when multiple diagnostics groups belong to the same place (#24697).
  • Fixed a crash caused by calling editor::SelectPrevious twice in a row (#24660).
  • Fixed a bug that caused OS-level CA certificate bundles to not be respected (#24656).
  • Vim: Fixed a bug where around word operations were selecting indentation (#24635; thanks 5brian).

0.173.5

02/11/2025

macOS
Linux

Enhancements

  • Added an option to open the icon theme selector from the user menu (#24482; thanks beniaminzagan).
  • Added icon support for additional Prettier config file types (#24496; thanks sethstha).
  • Added support for Google's new Gemini 2.0 models (#24448; thanks IaVashik).
  • Added an indicator in About/CopySystemSpecs when running in debug mode (#24457).
  • Added an explicit background color to the syntax tree view (#24524; thanks kaf-lamed-beyt).
  • Improved close active item to better handle pinned tabs: pinned tabs now stay open when using close shortcuts, auto focuses to any other non-pinned tab instead (#23488).
  • Improved the debug::OpenSyntaxTreeView action by automatically opening in split to the right (#24452).
  • Improved outline panel initial update (#24500).
  • Modified some keymap actions and settings for naming consistency (#23834). To ensure a smooth transition, we implemented a settings migrator. If Zed detects that you’ve customized a keybinding with an outdated name, you’ll receive a toast notification. This notification includes an action that, when activated, creates a backup of your current settings and updates the setting name while preserving your custom binding. Our aim is to establish consistent and easily-searchable action names. For any potential future changes, we’ll continue to use the migrator, so that you do not have to manually update your keymap.json file.

Vim

  • Added gr for replace with register (#24326).
  • Added a default keymap that returns the user to normal mode after pressing escape during a pending visual-surround operation (#24484; thanks roycrippen4).
  • Preserve trailing whitespace in inner text object selections (#24481; thanks 5brian).
  • Improved multi-line operations (#24518; thanks 5brian).

Bug Fixes

  • Fixed an issue where language server diagnostic codes would be converted to strings leading to errors with some language servers (#24347).
  • Fixed diff hunks not appearing when opening a single file within a larger repository (#24377).
  • Fixed Around Subword No Include Whitespace (#24356; thanks 0x2CA).
  • Fixed an issue where hidden files would have the default icon instead of the correct one (#24391).
  • Fixed an issue where files with specific icons (such as eslint.config.js) would not have their specific icon without a leading . (.eslint.config.js) (#24391).
  • Fixed an issue where doing line-wise operations in vim mode on the last line of a file with no trailing newline would not work properly (#24409).
  • Fixed deletion diff hunks not being syntax highlighted in some cases (#24413).
  • Added dimensions and file size information for images (#21675; thanks kaf-lamed-beyt).
  • Improved bracket auto-closing in PHP language extension (#24558; thanks MrSubidubi).
  • Fixed display of symbols such as &nbsp; in hover popovers (#24388; thanks WeetHet).
  • Fixed bug where select_next_git_entry project panel action would only select a previous entry or the currently selected entry (#24217; thanks Anthony-Eid).
  • Fixed a bug where toggling a diff hunk that immediately precedes another hunk would act on both hunks (#24355).
  • Fixed a crash in Wayland-based compositors like Sway when switching windows via the keyboard (#24379).
  • Fixed an edge case with multibuffers that could break language features within them (#22958).
  • Added a notification for deprecated settings and keymaps, allowing you to migrate them with a single click. A backup of your existing keymap and settings will be created in your home directory (#23834).
  • Fixed a bug where the json file icon could not be replaced via icon themes (#24432; thanks sethstha).
  • Fixed file icons not being properly updated upon icon theme upgrade or uninstall (#24449; thanks MrSubidubi).
  • Fixed an issue where worktree root name couldn't be renamed in project panel (#24487).
  • Fixed outline panel not focusing editor when outlines and search results were opened with outline_panel::Open (#24535).
  • Fixed outline panel issues in a multi-worktree set-up (#24538).
  • Fixed hover tooltips appearing after related element is pressed (#24540).
  • Fixed a crash when searching the outline view in certain Ruby files (#24574).
  • Fixed a rare crash during syntax highlighting (#24492; thanks Liamolucko).
  • Fixed an issue where, if multiple formatters were configured, they would run in parallel instead of sequentially, leading to unwanted artifacts (#24584). and incorrect output.
  • Assistant: Fixed an issue where the patch block was not being rendered when using "Suggest Edits" (#24461).

0.173.4

02/07/2025

macOS
Linux
  • Assistant: Fixed an issue where the patch block was not being rendered when using "Suggest Edits". (#24463)

0.173.3

02/06/2025

macOS
Linux
  • Improved the resolution of icons rendered by icon themes. (#24336)

0.173.2

02/05/2025

macOS
Linux
  • Fixed a panic when deleting text after a deletion hunk (#24255).
  • Fixed a bug where Zed could crash with certain input sources on macOS (#24284).
  • Fixed missing git blame and status output in some projects with multiple git repositories (#24292).

0.173.1

02/04/2025

macOS
Linux

Enhancements

  • Allow searching within the results of a project search (#23819).
  • Added a way to access the extension store from the theme selector to make it easier to find new themes (#24195).
  • Unified selection directions when performing editor: select all matches (#23993).
  • Pass the NODE_EXTRA_CA_CERTS environment variable through to NPM when installing language servers (#23662; thanks jswny).
  • Improved default completion label fallback (#23909).
  • Improved project_panel::NewSearchInDirectory to search the parent directory when triggered on a file (#23696; thanks wblazer).
  • Linux: Move from using openssl for collaboration to rustls/ring (#24141).
  • Added support for icon themes (#23987).
    • Extensions can now provide icon themes.
    • Use the icon theme selector: toggle action to switch between installed icon themes.

Vim

  • Added e for entire file object. yae to copy entire file (#24039).
  • Added ctrl-w a to close all items in the current pane (#24162).
  • Load vim keymap after a user-configured keymap (#24161).
  • Fixed ctrl-{<,>,+,-} for resizing docks in addition to panes (#23874; thanks AidanV).
  • Fixed //?, n/N, gn/gN,*/# in project search results (#23819).
  • Fixed navigating to end of line with inlay hints (#23975).
  • Fixed an issue in vim mode where changing the case of an object at the end of the line would not change the case of the last character in the object (#24163).

AI

  • Added OpenAI o3-mini support for the Assistant (#24044).
  • Added Copilot Chat support for o3-mini and remove support for o1-mini (#24080; thanks @SkywardSyntax).
  • Corrected Github Copilot o3-mini context length (#24152; thanks chapel).
  • Fixed an issue where the inline_completions > disabled_globs setting would not be respected when manually requesting a completion (editor: Show inline completion) (#24121).
  • Fixed usage of nonquantized models with LM Studio (#24054; thanks @cborup).

Languages

  • Add basic support for autoindent functionality in bash/shell files (#24156).
  • Fixed an issue where inserting an elif before an else in bash would not properly auto-indent (#24160).
  • Added file type associations for ESLint flat config files (#23994; thanks radmorecameron).
  • Added support for Go fuzz tests (#24107; thanks @cborup).

Bug Fixes

  • Fixed multiple save modals appearing when app is being closed multiple times (#24180).
  • Fixed a bug where closing an empty, named, file would warn about unsaved content (#24171).
  • Fixed display, revert and undo of deleted hunks when the file is empty (#24168).
  • Conditionally render divider in status bar (#24114; thanks ksweetie).
  • Fixes an issue with search actions so that they now execute on the clicked pane rather than the focused pane when using search UI in multiple panes (#24037).
  • Fixed a bug where pressing ctrl/cmd (or other modifiers) after mouse down but before mouse up still triggered ctrl/cmd+click behavior (e.g. "go to definition") (#22988; thanks smoores-dev).
  • Fixed mouse navigation buttons on some devices (Logitech, Mac OS) (#23332; thanks srsly4).
  • Fixed some modifier changed events not being present on Linux X11. This affected things like the project search palette, where holding ctrl would not cause the split options to appear. (#24154).
  • Fixed a bug where shifting focus to the terminal panel could be slow (#24172).
  • Fixed an issue in certain themes where diffs would render with the wrong red and green colors for deletions and insertions (#24151).
  • Fixed a crash that could happen when expanding certain diff hunks.
  • Fixed a bug where diff hunks were not syntax highlighted when reopening a project with previously-opened buffers.

0.172.8

02/04/2025

macOS
Linux
  • Fixed a bug where focus changes would be slow to transfer between panes (preview only)

0.172.7

02/04/2025

macOS
Linux
  • Fixed an issue in certain themes where diffs would render with the wrong red and green colors for deletions and insertions. (#24151)

0.172.6

02/03/2025

macOS
Linux
  • Added support for icon themes.
    • Extensions can now provide icon themes.
    • Use the icon theme selector: toggle action to switch between installed icon themes. (#23987)

0.172.5

02/01/2025

macOS
Linux
  • Add Copilot Chat support for o3-mini and remove support for o1-mini (#24080; thanks @SkywardSyntax)
  • Fixed Assistant token counts for OpenAI o3-mini models (#24068)
January

0.172.4

01/31/2025

macOS
Linux
  • Add support for OpenAI o3-mini (#24044).
  • Fixed usage of nonquantized models with LM Studio (#24054).
  • Improved default inline_completions.disabled_globs (#24051).

0.172.3

01/31/2025

macOS
Linux
  • "New Window" action will now bring App to foreground. (#24015)

0.172.2

01/31/2025

macOS
Linux
  • Fixed a crash that could happen when expanding certain diff hunks (#23990)
  • Fixed a bug where diff hunks were not syntax highlighted when reopening a project with previously-opened buffers. (#23990)

0.172.1

01/30/2025

macOS
Linux
  • Improved Predictive Edit onboarding (for users in the private beta)
  • Revised "Hide/Show Inline Completions" menu

0.172.0

01/29/2025

macOS
Linux

Enhancements

General

  • Added precise drag-and-drop for files onto folded directories in the Project Panel (#22983; thanks 0xtimsb).
  • Added functionality to expand or collapse a directory and all its contents (alt+click) (#22896; thanks 0xtimsb).
  • Added Open File action in file menu for Linux and Windows (#23707; thanks 0xtimsb).
  • Added a new show_tab_bar_buttons setting, under tab_bar, that enables hiding the pane tab bar buttons (#23752).
  • Added auto-completion support for snippet files (#23698; thanks loczek).
  • Added an editor: open selections in multibuffer (alt-enter) command (#23644).
  • Improved terminal hover word matching (#23776).
  • Improved diff rendering, allowing you to navigate with your cursor inside of deleted text in diff hunks (#22994).
  • Improved editor horizontal autoscroll to now place the cursor to the left of the scrollbar rather than under it (#23586).
  • Improved the task modal by using the full task label when it does not require truncation (#23611).
  • Improved project search performance in worktrees with binary files (#23581).
  • Improved the Copy Permalink menu item by disabling it when not in a Git repository (#23350; thanks Swiftaff).
  • Errors in settings file are now reported in UI on startup (#23817).

Language Support

  • Added Python syntax highlighting for class- and module-level docstrings, additional docstrings, and improved recognition of function-level docstrings (#20898; thanks jfmontanaro).
  • Improved support for yaml-language-server as YAML formatter (#23612).
  • Language servers now track their working directory more accurately (#23473).

AI

  • Accepting completions while the cursor is in the middle of suggested completion will now result in smaller edits being applied (#23490).

Vim, Emacs, and Keybinds

  • Vim: Added ab/ib "AnyBrackets" text objects that are the smallest of a(, a[ or a{ or i(, i[ or i{ (#23679; thanks oca159).
  • Vim: Added support for ctrl-g and {count} ctrl-g to show the filename in the status bar (#23562).
  • Vim: Fixed aq/iq "AnyQuotes" text objects when they are nested (#23679; thanks oca159).

Bug Fixes

  • Fixed terminal drag and drop, including project panel items (#23827).
  • Fixed inline Git blame not visible on long lines due to overflow (#23374; thanks 0xtimsb).
  • Fixed project_panel::NewDirectory, editor:: NewlineAbove in TextMate keymap (#23825; thanks huacnlee).
  • Fixed .gitignored files filter occasionally not working in context file picker (#23777).
  • Fixed an issue where snippets would not update when a snippets file contained comments (#23755; thanks loczek).
  • Fixed the issue where a file outside of the workspace was opening in a random window instead of the last active window (#23726; thanks 0xtimsb).
  • Fixed ZED_WORKTREE_ROOT incorrectly pointing to a file. Now points to a directory when current file is a project or unset when in out-of-project files (settings.json, tasks.json, etc) (#23150; thanks aborg-dev).
  • Fixed incorrect UTF-8 characters handling in GoToLine and caret position (#23654).
  • Fixed some instances of disabled list items still registering clicks (#23569).
  • Fixed The path /.../tsserver.js doesn't point to a valid tsserver install. Falling back to bundled TypeScript version. pop-up appearing (#23525).
  • Fixed panics on opening repositories with empty remotes (#23520).
  • Python: Fixed venv activation script path showing up in terminal for non-existent scripts (#23476).

Breaking changes

  • Changed editor: open excerpts split key binding to cmd-alt-enter on macOS and ctrl-alt-enter on Linux, to be more consistent with other actions that open files in a new split (#23646).

0.171.3

01/28/2025

macOS
Linux
  • Added support for DeepSeek to the Assistant. (#23800)

0.171.2

01/27/2025

macOS
Linux
  • Fixed a potential panic in handling of Git statuses. (#23556)
  • Fixed a potential panic in completion labels handling. (#23712)
  • Restore o1-preview to OpenAI provider (#23715)
  • Fixed Incorrect Keyboard Shortcuts shown in macOS Menu Items (Preview Only) (#23661).

0.171.1

01/23/2025

macOS
Linux
  • Fixed vtsls crashing on notification dismiss (#23536)
  • Fixed "The path /.../tsserver.js doesn't point to a valid tsserver install. Falling back to bundled TypeScript version." pop-up appearing (#22606)

0.171.0

01/22/2025

macOS
Linux

Enhancements

General

  • Added editor: swap selection ends action which swaps the cursor location from the beginning/end of a given selection (#23428).
  • Added workspace: activate next window and workspace: activate previous window actions for cycling between windows (#23356; thanks 0xtimsb).
  • Added new command to move the focused panel to the next valid dock position – workspace: move focused panel to next position (#23317; thanks dinocosta).
  • Added scrollbar to terminal (#23256; thanks 0xtimsb).
  • Added auto-expand for directories on hover for a while during dragging (#23080; thanks 0xtimsb).
  • Persisted font size changes made with actions to the user settings (#23265).
  • Tab switcher: Preserve selected position when tab is closed (#22861; thanks aborg-dev).
  • Improved which keybindings are selected for display. Now later entries within bindings will take precedence. The default keymaps have been updated accordingly (#23378).
  • Improved handling of errors within the user keymap file. Parse errors within context, keystrokes, or actions no longer prevent loading the key bindings that do parse (#23113).
  • Improved app responsiveness when encountering a large number of diagnostics (#23122).
  • The tooltip for inline git blame now waits a bit before disappearing when the mouse leaves it (#22644).
  • Linux: Added support for the Cut, Copy, Paste, Undo, Redo, New, Open, Save, and Find keys to the default keymap (#22997; thanks Jules-Bertholet).
  • Linux: Added a way to use audio in collaboration rooms (#23191).

Language Support

  • Improved syntax highlight for Python: new capture groups for @function.arguments, @function.kwargs, @type.class.inheritance, @keyword.definition, @attribute.builtin and @type.builtin (#21454; thanks elisiariocouto).

AI

  • Added deepseek-r1 to ollama context size defaults (#23420).
  • Switched from using o1-preview to o1 for OpenAI provider (#23425).

Vim, Emacs, and Keybinds

  • Added Emacs mark mode (ctrl-space / ctrl-@ to set mark; ctrl-x ctrl-x to swap mark/cursor) (#23297).
  • Added Vim :!, :<range>! and :r! support (#23169).
  • Added Vim ! operator in normal/visual mode (#23169).

Bug Fixes

  • Fixed % in Vim mode not working correctly for multi-char brackets, such as do/end in Elixir or \begin and \end in LaTeX (#23471).
  • Fixed broken symlinks when installing dev extensions (#22396; thanks Qkessler).
  • Fixed renaming project entries in remote development (#23382; thanks aborg-dev).
  • Fixed context menus staying open when action was triggered via keyboard (#23380).
  • Fixed project panel colors when one git repository is nested beneath another (#23300).
  • Fixed an issue where docks did not remember the active panel (#23207; thanks AaronFeickert).
  • Fixed outline panel navigation in unnamed files (#23273).
  • Linux: Fixed missing task terminal output for short-running commands (#23085; thanks aborg-dev).
  • Fixed a crash that occurred when adding a new file or directory to the first folded directory (#23217; thanks 0xtimsb).
  • Fixed editor: copy path not work in ssh remote (#23235; thanks CharlesChen0823).
  • Fixed active line number highlight (#23266).
  • Fixed the "Matches multiple schemas when only one must validate" warning for the assistant setting (#23190).
  • Fixed inlay hints handling for the same position (#23156).

Breaking changes

  • selection keyboard context has been replaced with selection_mode (#23297).

0.170.1

01/21/2025

macOS
Linux
  • Fixed completion labels becoming overly large due to LSP completion items with newlines (#23409)
  • Changed the default keybinding to accept partial inline completions from ctrl-right to ctrl-cmd-right on macOS, because ctrl-right is already bound to jump to the end of the line. (#23357)
  • Fixed an issue where horizontal scrollbars of editors would always be painted (even if there is no horizontal scrolling to be done) (#23339)
  • Fixed a bug that could prevent accepting a partial inline completion. (#23327)

0.170.0

01/15/2025

macOS
Linux

Enhancements

General

  • Improved app responsiveness with large number of diagnostics (#23122).
  • Improved visibility of errors from language servers by reporting them in the UI when the user invokes an LSP action (#23011).
  • Improved formatting of selection by adding support for multiple cursors (#22933).
  • Improved diagnostic excerpts by using syntactic info to determine the context lines to show (#22858).
  • Added an error toast that is shown when a dev extension fails to install (#22914).
  • Added the process ID (PID) to terminal tab tooltips (#21955; thanks Angelk90).
  • Added project_panel.entry_spacing setting to configure spacing between entries in the project panel: comfortable (default) or standard (#16255; thanks mikesun).
  • Improved keymap settings file with enhanced JSON schema information, enabling better json-language-server completions and tooltips, especially for actions requiring input (#23044).

Language Support

  • Added support for checking for yaml-language-server on the$PATH (#22036; thanks henryhchchc).
  • Changed default formatter for C/C++ to be the primary language server, not Prettier. Format-on-save is still disabled by default for C/C++, but if one uses the editor: format command now, it will default to the language server. clangd can format C++ files, whereas prettier cannot (#23112, #23119).
  • Fixed rename symbols action when the language server does not have the capability to prepare renames - such as luau-lsp (#23000).
  • Added configuration sent on initialization to the Server Info section of the language server logs (#23084).
  • Improved LSP debug logs by defaulting to soft wrap and folding a suffix of long lines. Also adds autoscroll, so if the cursor is on the last line of the logs they will scroll like tail (#22996).

AI

Vim, Emacs, and Keybinds

  • Vim: Added SubWord TextObject (#22387; thanks 0x2CA).
  • Vim: Added support for the popular vim_sneak plugin. This is disabled by default and can be enabled by binding a key to the Sneak and SneakBackward operators (#22793; thanks nilehmann).
  • Emacs: Added support for ctrl-t transposing characters on Linux (#22974).
  • Added Diagnostics key context allowing Diagnostic pane-specific keybinds (#23043; thanks everdrone).
  • macOS: Added fn-f keyboard shortcut for fullscreen toggle (#23184).

Bug Fixes

  • Fixed a bug binding to fn-X (where X is a printing key) on macOS (#23070).
  • Fixed highlighting of "tool" directives in go.mod (#22995).
  • Fixed error message about shell environment failing to load when joining projects in collaboration (#23138).
  • Fixed Vim dxG delete to line (#23053; thanks 0x2CA).
  • Fixed handling of selection ranges when formatting selections within a multibuffer (#22929).
  • Fixed result count in branch picker searches (#22908; thanks AaronFeickert).
  • Fixed issue with project-specific env not being found via .envrc (direnv) on Linux (#22803; thanks 0xtimsb).
  • Fixed outline items not scrolling properly (#22890).
  • Fixed extend/shrink selection in JetBrains keymap on macOS (#22814; thanks narqo).

Breaking changes

0.169.2

01/15/2025

macOS
Linux
  • Improved support for Phi4 with ollama. (#23036)
  • (temporarily) Removes the linux "save file as root" feature while we figure out bugs. (#23168)
  • Fixed inline completions (Copilot, Supermaven, ...) still being visible sometimes after leaving Vim's insert mode. (#23176)
  • Changed inline completions (Copilot, Supermaven, ...) to not show up in empty buffers. (#23125)
  • Changed the behavior of <tab> at start of line when an inline completion (Copilot, Supermaven, ...) is visible. If the cursor is before the suggested indentation, <tab> now indents the line instead of accepting the visible completion. (#22892)
  • Fixed duplicate "Fix with Assistant" entries showing in the code action list. (#23118)

0.169.1

01/13/2025

macOS
Linux
  • Fixed a bug where the relative position of an excerpt within the multibuffer was not accounted for while jumping to the buffer, causing the clicked line to drastically change position on screen. (#23101)
  • Fixed unresponsive buttons on load until the center pane is clicked.
  • Added auto-focus for the docked terminal on load when no other item is focused. (#23094)
  • Fixed terminal pane button opening two terminals on click (#23032)
  • Improved typescript-language-server's completion details rendering (#23034)