You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Added a detect_venv setting for the terminal. When configured, the Zed terminal will automatically activate Python virtual environments on terminal creation.
Improved project search by making it report results sooner.
Improved general LSP server load by delaying certain inlay hint requests.
Vim additions:
Added g {j,k,up,down,$,^,0,home,end} to navigate in display coordinates.
Added z o and z c to open and close folds.
Added z f in visual mode to fold selection.
Bug Fixes
Fixed a bug in project search where some results might not have been reported in presence of unnamed buffers.
Fixed a bug where [ and ] symbols would cause issues in terminal links (#1865).
Fixed a bug where the caret would blink when Zed application was not focused (#1116).
Fixed a bug where collaborators' cursors were rendered with the wrong color when not following them.
Fixed several styling bugs related to dragging the mouse cursor.
Disabled save as prompt for channel notes.
Vim bug fixes:
Fixed handling of motions when soft_wrap is enabled in zed. Like in vim, j,k,up,down,$,^,0,home,end will all now navigate in file coordinates, not display coordinates. Note, this may be a jarring change if you're grown used to the current behaviour of j and k. You can make the issue less acute by setting "soft_wrap":"none" in your settings; or you can manually copy the bindings for g j to the binding for j (etc.) in your keymap.json to preserve the existing behaviour.
Fixed y when on the last line of a file with no trailing newline.
Fixed a bug where scrolling vertically would sometimes enter visual mode.