Kirill Bulatov
Kirill Bulatov
While less discoverable compared to the "file name", all other separators are clickable too: as well as the navigate arrow in the gutter: also, "file name" per se hints the...
One issue with cmd-click is the fact that it only displays on a focused terminal, so an extra click is needed to make it happen. https://github.com/zed-industries/zed/issues/6746
Some extra info: https://github.com/zed-industries/zed/pull/7569 fixed issues with this modal spawning extra `Discard feedback?` dialogues popping up, but this one is still not fixed. The reason for this seems to be...
Should come in Zed 0.136 thanks to @\alygin
We use a two staged approach to highlight such links, represented via `NewNavigationTarget` event: https://github.com/zed-industries/zed/blob/ac3b682900f77c978bfed27d7aa15a38f995bb6b/crates/terminal_view/src/terminal_view.rs#L177 both stages (and the only two files that use this enum variant) need adjustments: 1....
https://github.com/zed-industries/zed/pull/7303 has implemented that, comes in the next preview.
There's actually a way to remove all related buttons and effectively disable the functionality too: ``` "collaboration_panel": { "button": false, }, "collaboration_panel": { "button": false, }, "chat_panel": { "button": false,...
To start with, `ctrl-enter` by default does not open any panels but the assistant "modal"-ish thing, which can be closed by `ESC`; assistant panel shortcut is `cmd-shift-?`. While not convenient,...
As noted above, removing buttons cleans the interface, but leaves the possibility to e.g. open the related features with the keybindings. But without having those, we would not see e.g....
That seems like a language which could use an LSP integration, so I'm not sure whether we should merge this at its stage: neither Zed uses this nor there's an...