The Zed release v0.177.9 introduces a variety of enhancements, such as the implementation of multibuffer key context, the addition of editor::MoveToStartOfNextExcerpt and editor::MoveToEndOfPreviousExcerpt functionalities, resolution of issues related to pre-commit hooks, corrections of bugs in the project diff view, and rectification of the Git panel not displaying a "Initialize Repositories" button in empty projects. Furthermore, vim::PreviousSectionEnd has been updated to navigate to the start of the line, aligning its functionality with that of vim::NextSectionEnd.
Zed Release v0.177.9
- Added
multibuffer
key context. ( #26264)- Added
editor::MoveToStartOfNextExcerpt
andeditor::MoveToEndOfPreviousExcerpt
. ( #26264)cmd-down
andcmd-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)- 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
vim::PreviousSectionEnd
(bound to[ ]
) to move to the beginning of the line, matching the behavior ofvim::NextSectionEnd
. ( #26264)