Commit log

483a84a 0.22

Max Brunsfeld created

8f7966b Merge pull request #668 from zed-industries/no-lsp-when-following

Click to expand commit body
Avoid making LSP requests when moving cursor due to following

Max Brunsfeld created

cbd4ef2 Merge pull request #667 from zed-industries/fix-duplicate-nav-entries

Click to expand commit body
Fix duplicate nav entries

Max Brunsfeld created

eb40356 Merge pull request #666 from zed-industries/keychain

Click to expand commit body
Refine authentication and keychain interaction

Max Brunsfeld created

f7e7d58 Avoid making LSP requests when moving cursor due to following

Max Brunsfeld created

e36104f Add navigation deduping

Click to expand commit body
Co-authored-by: Antonio Scandurra <me@as-cii.com>

Keith Simmons and Antonio Scandurra created

4a42025 Authenticate on startup if ZED_IMPERSONATE is assigned

Click to expand commit body
Co-Authored-By: Max Brunsfeld <maxbrunsfeld@gmail.com>

Nathan Sobo and Max Brunsfeld created

657b92b Don't prompt for keychain access when launching from a pty

Click to expand commit body
Co-Authored-By: Max Brunsfeld <maxbrunsfeld@gmail.com>

Nathan Sobo and Max Brunsfeld created

ee9ed93 Don't try keychain after authentication fails

Click to expand commit body
Previously, we were achieving this by deleting the keychain item, but this can sometimes fail which leads to an infinite loop. Now, we explicitly never try the keychain when reattempting authentication after authentication fails.

Co-Authored-By: Max Brunsfeld <maxbrunsfeld@gmail.com>

Nathan Sobo and Max Brunsfeld created

5cd94b5 WIP

Antonio Scandurra created

255a8c5 Don't push a duplicate nav entry when changing selections via the mouse

Click to expand commit body
Co-Authored-By: Keith Simmons <keith@zed.dev>

Antonio Scandurra and Keith Simmons created

29892ce Merge pull request #663 from zed-industries/following-pending-selections

Click to expand commit body
Fix error in follower when leader creates pending selections

Max Brunsfeld created

0b3a63b Fix error in follower when leader creates pending selections

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

Max Brunsfeld and Nathan Sobo created

10f1760 Merge pull request #662 from zed-industries/fix-refresh-selections-when-mouse-selecting

Click to expand commit body
Account for pending selections when calling `Editor::refresh_selections`

Antonio Scandurra created

b73f57d Don't destroy pending selection on `Editor::refresh_selections`

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

Antonio Scandurra and Nathan Sobo created

004f98c Merge pull request #661 from zed-industries/follow

Click to expand commit body
Introduce basic following experience

Antonio Scandurra created

60b6b0b Cycle through panes spatially rather than in the order in which they created

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

Antonio Scandurra and Nathan Sobo created

5ac39aa Don't show local cursors when editor is not focused

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

Antonio Scandurra and Nathan Sobo created

4f27049 Focus followed items when they become active if the pane is active

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

Antonio Scandurra and Nathan Sobo created

edc038a Activate previous pane and next pane via `cmd-k cmd-left` and `cmd-k cmd-right`

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

Antonio Scandurra and Nathan Sobo created

097bbe3 Update follow binding, remove unfollow binding

Click to expand commit body
The previous binding to follow had ergonomics issues for the frequency that I think we'll want to use it. It would also conflict with the sub-word selection binding.

Now that moving the cursor etc unfollows, I don't think we need the follow binding.

Nathan Sobo created

da15669 Merge pull request #656 from zed-industries/add-editor-lifetime-events

Click to expand commit body
Add editor lifetime events

Nathan Sobo created

d24bd6f Account for pending selections when calling `Editor::refresh_selections`

Antonio Scandurra created

3298529 Fix global nested event test after turning subscriptions into effects

Antonio Scandurra created

7acde40 Merge pull request #655 from zed-industries/add-editor-selection-helpers

Click to expand commit body
Add editor selection helpers

Keith Simmons created

fa62fd9 Autoscroll when leader moves cursors

Click to expand commit body
instead of copying their scroll top.

Co-Authored-By: Nathan Sobo <nathan@zed.dev>

Max Brunsfeld and Nathan Sobo created

fad299e Add unit test for editor's following methods

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

Max Brunsfeld and Nathan Sobo created

8699dd9 Replicate fractional component of leader's scroll position

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

Max Brunsfeld and Nathan Sobo created

880eaa2 Coalesce followed view updates only within one frame

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

Max Brunsfeld and Nathan Sobo created

4435d9b Combine updates from multiple view events when updating followers

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

Max Brunsfeld and Nathan Sobo created

fba6f24 Add editor lifetime events

Keith Simmons created

6a1c197 Add editor selection utilities

Click to expand commit body
Also improved test that was failing during above to use marker text approach as a drive by

Keith Simmons created

308bfa3 Merge pull request #654 from zed-industries/remove-movment-results

Click to expand commit body
Remove results from movement functions

Keith Simmons created

fc811e0 Don't represent editor's scroll top anchor as an option

Click to expand commit body
Use Anchor::min as the special value representing a scroll top of zero

Max Brunsfeld created

0a3f013 Use env_logger when running the app in a terminal

Max Brunsfeld created

c105802 Allow customizing the pane's following border width in the theme

Max Brunsfeld created

4ed8f6f Make UpdateBuffer a foreground message

Max Brunsfeld created

df75186 Remove results from movement function return values, and move editor test utilities to test file

Keith Simmons created

ec7bada Merge pull request #651 from zed-industries/refine-word-movement

Click to expand commit body
Add sub-word movement and helper functions for finding word boundaries

Max Brunsfeld created

c78bcf7 Ensure leader updates don't change the active pane of followers

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

Antonio Scandurra and Nathan Sobo created

9885c4f Don't trigger observations with notifications emitted prior to observing

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

Antonio Scandurra and Nathan Sobo created

5ecf945 Don't trigger global subscriptions with events emitted prior to subscribing

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

Antonio Scandurra and Nathan Sobo created

73eae28 Don't trigger subscriptions with events emitted prior to subscribing

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

Antonio Scandurra and Nathan Sobo created

284a446 WIP

Antonio Scandurra created

381c827 Bump protocol version

Antonio Scandurra created

016fb01 Merge branch 'main' into follow

Antonio Scandurra created

e5a99cf Stop following when leader disconnects

Antonio Scandurra created

ffaf409 Forget last pane's leader when such pane is removed

Click to expand commit body
This is just a memory optimization and doesn't cause any observable
change in behavior.

Antonio Scandurra created

5dc3626 Reflect leader's view state when recycling existing local editors

Antonio Scandurra created

34e5a1f Always render local selections on top of remote ones

Antonio Scandurra created