Commit log

a4a1797 Merge pull request #2171 from zed-industries/add-option-to-advance-cursor-downward-when-toggling-comment

Click to expand commit body
Add option to advance cursor downward when toggling comment

Joseph T. Lyons created

19b686a Merge pull request #2177 from zed-industries/check-before-test

Click to expand commit body
Cargo check before test to catch warnings/errors

Julia created

ac882c7 Merge pull request #2179 from zed-industries/debounce-diagnostics

Click to expand commit body
Simulate disk-based diagnostics finishing 1s after saving buffer

Antonio Scandurra created

baee6d0 Simulate disk-based diagnostics finishing 1s after saving buffer

Click to expand commit body
Previously, we would simulate disk-based diagnostics finishing after
saving a buffer. However, the language server may produce diagnostics
right after emitting the event, causing the diagnostics status bar item
to not reflect the latest state of the buffer.

With this change, we will instead simulate disk-based diagnostics finishing
after 1s after saving the buffer (only for language servers that
don't have the concept of disk-based diagnostics, such as TypeScript). This
ensures we always reflect the latest state and doesn't cause the UI to flicker
as a result of the LSP sending us diagnostics after every input.

Antonio Scandurra created

50ccf16 Cargo check before test to catch warnings/errors

Click to expand commit body
Co-Authored-By: Nathan Sobo <nathan@zed.dev>

Julia and Nathan Sobo created

bef2013 wip

Kay Simmons created

2c904cb Merge pull request #2176 from zed-industries/better-move-to-brackets

Click to expand commit body
Make jump to matching bracket action more predictable

Kay Simmons created

3330684 add tree-sitter-typescript to editor crate test support features

Kay Simmons created

30caeea fix comment typo

Kay Simmons created

0ba051a use more predictable rules for selecting which bracket to jump to and where

Kay Simmons created

32191e3 Merge pull request #2175 from zed-industries/restore-toggle-dock-binding

Click to expand commit body
Put back shift-escape binding for FocusDock action

Max Brunsfeld created

7037842 Put back shift-escape binding for FocusDock action

Max Brunsfeld created

8bd20d8 Merge pull request #2173 from zed-industries/tab-bar-background-focus-pane

Click to expand commit body
Focus pane when clicking on tab bar background

Julia created

df17753 Merge pull request #2172 from zed-industries/window-title-shenanigans

Click to expand commit body
Window title shenanigans

Julia created

df0715e Indicate in native window title if project is shared or remote

Julia created

e56dfd9 Tell OS about window title

Julia created

afb375f v0.75.x dev

Joseph Lyons created

bcf7a32 Update pull_request_template.md

Joseph T. Lyons created

5fbc973 Add option to advance cursor downward when toggling comment

Click to expand commit body
Co-Authored-By: Julia <30666851+ForLoveOfCats@users.noreply.github.com>

Joseph Lyons and Julia created

fbd2398 Merge pull request #2161 from zed-industries/community/3-reveal-in-finder

Click to expand commit body
Introduce Reveal in Finder

Petros Amoiridis created

114eef8 Merge pull request #2170 from zed-industries/fix-persistent-lsp-messages

Click to expand commit body
Fix LSP status messages persisting

Antonio Scandurra created

5df50e2 Add timeouts to HTTP client

Antonio Scandurra created

7a667f3 Use open_url from the platform module

Click to expand commit body
And remove the open function from the `util` crate.

Petros Amoiridis created

2482a1a Add timeout to HTTP requests during `npm info` and `npm fetch`

Antonio Scandurra created

7641965 Merge pull request #2169 from zed-industries/improve-autocomplete

Click to expand commit body
Score matches case-sensitively when query contains an uppercase char

Antonio Scandurra created

8db131a Score matches case-sensitively when query contains an uppercase char

Antonio Scandurra created

4f1e8c9 Merge pull request #2168 from zed-industries/auto-update-setting

Click to expand commit body
Add auto update setting

Mikayla Maki created

c2de0f6 Add auto update setting

Mikayla Maki created

17e8172 Merge pull request #2167 from zed-industries/clear-terminal-highlights

Click to expand commit body
Reset search matches when the terminal is cleared

Mikayla Maki created

8e9d95f Fix error where terminal search matches wouldn't be updated when clearing

Mikayla Maki created

3a7ac9c Focus pane when clicking on tab bar background

Julia created

88c6b89 Merge pull request #2165 from zed-industries/toggle-soft-wrap

Click to expand commit body
Introduce `editor: toggle soft wrap` bound to `alt-z`

Antonio Scandurra created

1012cea Soft wrap at editor width if it's narrower than preferred line length

Antonio Scandurra created

4a2b7e4 Use `alt-z` to toggle soft wrap in active editor

Click to expand commit body
When there isn't a default soft-wrapping for the active editor, we
will soft wrap at the editor width. This is consistent with Visual
Studio Code.

Antonio Scandurra created

6c0b35a Merge pull request #2164 from zed-industries/fix-surround-rust-star

Click to expand commit body
Surround with bracket only when opening brace is 1 character long

Antonio Scandurra created

888fcb5 Surround with bracket only when opening brace is 1 character long

Antonio Scandurra created

015b8db Introduce reveal_path in Platform

Click to expand commit body
And implement it for MacPlatform, and instead of using an external process to run `open`, use the NSWorkspace selectFile instance method.

Petros Amoiridis created

ebe1fa7 Merge pull request #2163 from zed-industries/quick-invite-bug

Click to expand commit body
Avoid creating more than one room when inviting multiple people at once

Antonio Scandurra created

7be868e Avoid creating more than one room when inviting multiple people at once

Click to expand commit body
Previously, when initiating a call by calling multiple people, only
the first person would get the call while all the others would briefly
show a "pending" status but never get the call.

This would happen because `ActiveCall` was trying to a create a different
room for each person called, because the original room creation hadn't finished
and so a `ModelHandle<Room>` wasn't being store in the active call.

With this commit, only one room can be created at any given time and further
invites have to wait until that room creation is done.

Antonio Scandurra created

087d516 Fix test that wasn't properly verifying disconnection from livekit

Antonio Scandurra created

ea663f3 Bump tree-sitter for tree-balancing bugfix

Max Brunsfeld created

5041300 Merge pull request #2157 from zed-industries/vim-fixes

Click to expand commit body
Vim fixes

Kay Simmons created

2c9199f fix build error

Kay Simmons created

327932b Remove catch all keymap and KeyPressed action

Kay Simmons created

4590607 fix sqlez warning, introduce tab and enter bindings to vim for inputing tab and enter text when waiting for text

Kay Simmons created

3d53336 More vim fixes and move some more things out of app.rs

Kay Simmons created

c1812dd fix issue with single line editors in vim not properly unhooking vim mode bindings

Kay Simmons created

d80dba1 Switch from vec to smallvec

Mikayla Maki created

6703264 Limit `BufferSnapshot::chunks` to the outline item range

Click to expand commit body
Co-Authored-By: Max Brunsfeld <max@zed.dev>

Antonio Scandurra and Max Brunsfeld created

0a50d27 Merge pull request #2158 from zed-industries/split-feedback-editor

Click to expand commit body
Split up feedback_editor.rs

Joseph T. Lyons created