Open selections in multi buffer (#23644)

Closes https://github.com/zed-industries/zed/issues/5126

Release Notes:

- Added an `editor: open selections in multibuffer` command.
This commit is contained in:
Joseph T. Lyons 2025-01-25 02:45:09 -05:00 committed by GitHub
parent f5102838f3
commit 75b507d38a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 88 additions and 14 deletions

View file

@ -477,6 +477,7 @@ impl EditorElement {
register_action(view, cx, Editor::spawn_nearest_task);
register_action(view, cx, Editor::insert_uuid_v4);
register_action(view, cx, Editor::insert_uuid_v7);
register_action(view, cx, Editor::open_selections_in_multibuffer);
}
fn register_key_listeners(&self, cx: &mut WindowContext, layout: &EditorLayout) {