Tags: zaucy/zed
Tags
Introduce a short-term solution for flickering (zed-industries#8542) This uses bounds checking alone to determine hover state to avoid flicker. It's a short-term solution because the rendering is incorrect. We think this is better than flickering though and buys us some time as we work on a more robust solution overall. Release Notes: - Fixed flickering when hovering. --------- Co-authored-by: Nathan <[email protected]>
Add :tabonly and :only vim commands (zed-industries#8337) Release Notes: - Added [`:tabo[nly][!]`](https://neovim.io/doc/user/tabpage.html#%3Atabonly), closes all the tabs except the active one but in the current pane only, every other split pane remains unaffected. The version with the `!` force closes the tabs while the one without asks you to save or discard the changes. - Added [`:on[ly][!]`](https://neovim.io/doc/user/windows.html#%3Aonly), closes all the tabs *and* panes except the active one. The version with the `!` force closes the tabs while the one without asks you to save or discard the changes. Since Zed does not have different splits per tab like in Neovim `:only` works the same as it does in VscodeVim. --------- Co-authored-by: Conrad Irwin <[email protected]>
Fix uploads to `edit_events` table (zed-industries#8318) This PR fixes uploads the `edit_events` table. We were trying to insert into a column that didn't exist: ``` HTTP error 500 Internal Server Error: failed to upload to table 'edit_events' Caused by: bad response: Code: 16. DB::Exception: No such column os_name in table default.edit_events ``` Release Notes: - N/A
PreviousNext