Commit log

b324241 Show tooltip when hovering over jump to diagnostic icon

Antonio Scandurra created

982de97 Introduce a new `Tooltip` element and a `with_tooltip` helper

Antonio Scandurra created

94fc28b WIP: start on tooltips

Antonio Scandurra created

d180f7a Jump to primary diagnostic when clicking on header's jump icon

Antonio Scandurra created

4f9c207 Show a clickable jump icon for each diagnostic group header

Antonio Scandurra created

aefdde6 Pass a `&mut BlockContext` when rendering blocks

Click to expand commit body
This wraps and derefs to `RenderContext<Editor>`, so that we can
easily use `MouseEventHandler`s in blocks.

Antonio Scandurra created

9fa03b2 Merge pull request #1086 from zed-industries/server-memory-improvements

Click to expand commit body
Improve server memory usage

Antonio Scandurra created

1ce8682 Clear language server and worktree statuses when unsharing on server

Antonio Scandurra created

339069b Cap `MessageStream` buffer size to 1MB

Click to expand commit body
We temporarily let it grow when the message size exceed the limit,
but restore the buffer's capacity shortly after. This ensures that,
for each connection in its entire lifetime, we only ever use 1MB.

Antonio Scandurra created

da46d78 Merge pull request #1081 from zed-industries/project-panel-with-new-mouse-events

Click to expand commit body
Introduce context menu to project panel

Antonio Scandurra created

34bf248 Avoid notifying views that have been removed

Antonio Scandurra created

e067212 Always re-render visible elements in `List`

Antonio Scandurra created

0fd47da Prevent mouse down events from piercing through overlays

Antonio Scandurra created

e4641da Don't show "add/remove folder to/from project" for remote projects

Antonio Scandurra created

1eb03f2 Bump protocol version

Antonio Scandurra created

354488e Don't eagerly populate copied subdirectory

Click to expand commit body
This can race anyway with snapshot updates, so we just eagerly refresh
the root entry and wait for updates to come in to populate it.

Antonio Scandurra created

7f292da Merge pull request #1082 from zed-industries/no-honeycomb

Click to expand commit body
Remove opentelemetry tracing subscriber

Max Brunsfeld created

365cda0 Remove opentelemetry tracing subscriber

Click to expand commit body
We'll see if this stops the server from leaking memory. We still
have spans in our logs.

Co-Authored-By: Antonio Scandurra <me@as-cii.com>

Max Brunsfeld and Antonio Scandurra created

604b737 :lipstick:

Antonio Scandurra created

06ab2ac Don't steal focus from context menu when dispatching an action

Antonio Scandurra created

f832c00 Fix memory leak in `ListState`

Antonio Scandurra created

20e1044 Merge branch 'main' into project-panel-with-new-mouse-events

Antonio Scandurra created

88fdd86 Eagerly populate child entries when copying a directory via RPC

Antonio Scandurra created

51adc65 WIP: start on an integration test for `copy_entry`

Antonio Scandurra created

3336bc6 Implement copy paste for ProjectPanel

Antonio Scandurra created

37a0c7f Implement cut/paste for `ProjectPanel`

Antonio Scandurra created

6c145b2 Show keystrokes as uppercase

Antonio Scandurra created

6390061 Dismiss context menu when one of its action is dispatched

Antonio Scandurra created

2b9015c Introduce `{MutableAppContext,ViewContext}::observe_actions`

Antonio Scandurra created

e7ab61d Dismiss context menu when (right-)mousing down outside of it

Antonio Scandurra created

fb26f81 Sort mouse regions by their stacking context's depth

Antonio Scandurra created

733cf4c Merge pull request #1075 from zed-industries/integration-test-cleanup

Click to expand commit body
Integration test cleanup

Max Brunsfeld created

bc6f8da Move integration tests into their own file

Max Brunsfeld created

8393ae8 Clean up integration tests

Click to expand commit body
* Use 'build_local_project' helper to reduce boilerplate
* Peform the setup steps in a consistent order

Max Brunsfeld created

35ada0d Merge pull request #1074 from zed-industries/misc-menu-items

Click to expand commit body
Add a few more important menu items

Max Brunsfeld created

1c932ae Add help menu items to visit zed.dev and the zed twitter page

Max Brunsfeld created

df4f305 Add app menu items for opening settings and keymap

Max Brunsfeld created

e1a05d4 Add "Reset Zoom" action and application menu item

Max Brunsfeld created

44c8ee5 Add mouse down out handlers

Click to expand commit body
These will fire whenever the left/right mouse button is pressed down outside a specific region. I'll use these to cancel the context menu in the next commit.

Nathan Sobo created

4a5317b Remove unused context_menu file in rust crate

Keith Simmons created

48abbb7 Merge pull request #1019 from zed-industries/vim-visual-line-mode

Click to expand commit body
Vim visual line mode

Keith Simmons created

b2adff6 Merge pull request #1073 from zed-industries/window-menu

Click to expand commit body
Add a Window application menu

Max Brunsfeld created

9909fc5 Allow context menu to be cancelled after deploying it twice

Click to expand commit body
Previously, two right clicks would cause an issue with cancelling the context menu via escape.

Nathan Sobo created

c3baf27 Block hovering behind overlays

Nathan Sobo created

23cd948 Adjust test to flush effects between splitting pane and following

Click to expand commit body
Panes now emit an event when adding the first item, so we need to flush
effects between splitting and following in order to avoid accidentally
cancelling the follow.

Max Brunsfeld created

a88b4eb Populate the window title whenever worktrees or active path change

Click to expand commit body
* Refactor the way the project's active entry is assigned. Assign it
  together with the window title, as opposed to on every notification
  from a pane.
* Emit the ActiveItem event from panes consistently, even when adding
  the first item to an empty pane.

Max Brunsfeld created

e6be151 Emit the WorktreeRemoved event when removing a worktree from a project

Max Brunsfeld created

a1a4c70 Emit an event when adding a worktree to a project

Max Brunsfeld created

04bd57b Add an API for setting a window's title

Click to expand commit body
This controls how the window appears in the Window menu.

Max Brunsfeld created

5413a97 Restrict multiple hovered regions to a single stacking context

Click to expand commit body
We won't hover regions from stacking contexts that are below the one being hovered.

Nathan Sobo created