mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-09 21:26:14 +03:00
Add keybinding to swap pane items (#15583)
- Rearrange tabs (left: `ctrl-shift-pageup`, right: `ctrl-shift-pagedown`) like Chrome Co-authored-by: Peter Tripp <peter@zed.dev>
This commit is contained in:
parent
adbe973f02
commit
1b36c62188
@ -245,6 +245,8 @@
|
||||
"bindings": {
|
||||
"ctrl-pageup": "pane::ActivatePrevItem",
|
||||
"ctrl-pagedown": "pane::ActivateNextItem",
|
||||
"ctrl-shift-pageup": "pane::SwapItemLeft",
|
||||
"ctrl-shift-pagedown": "pane::SwapItemRight",
|
||||
"ctrl-w": "pane::CloseActiveItem",
|
||||
"ctrl-f4": "pane::CloseActiveItem",
|
||||
"alt-ctrl-t": "pane::CloseInactiveItems",
|
||||
|
@ -285,6 +285,8 @@
|
||||
"cmd-}": "pane::ActivateNextItem",
|
||||
"alt-cmd-left": "pane::ActivatePrevItem",
|
||||
"alt-cmd-right": "pane::ActivateNextItem",
|
||||
"ctrl-shift-pageup": "pane::SwapItemLeft",
|
||||
"ctrl-shift-pagedown": "pane::SwapItemRight",
|
||||
"cmd-w": "pane::CloseActiveItem",
|
||||
"alt-cmd-t": "pane::CloseInactiveItems",
|
||||
"ctrl-alt-cmd-w": "workspace::CloseInactiveTabsAndPanes",
|
||||
|
@ -158,6 +158,8 @@ actions!(
|
||||
SplitDown,
|
||||
SplitHorizontal,
|
||||
SplitVertical,
|
||||
SwapItemLeft,
|
||||
SwapItemRight,
|
||||
TogglePreviewTab,
|
||||
TogglePinTab,
|
||||
]
|
||||
@ -1054,6 +1056,26 @@ impl Pane {
|
||||
self.activate_item(index, activate_pane, activate_pane, cx);
|
||||
}
|
||||
|
||||
pub fn swap_item_left(&mut self, cx: &mut ViewContext<Self>) {
|
||||
let index = self.active_item_index;
|
||||
if index == 0 {
|
||||
return;
|
||||
}
|
||||
|
||||
self.items.swap(index, index - 1);
|
||||
self.activate_item(index - 1, true, true, cx);
|
||||
}
|
||||
|
||||
pub fn swap_item_right(&mut self, cx: &mut ViewContext<Self>) {
|
||||
let index = self.active_item_index;
|
||||
if index + 1 == self.items.len() {
|
||||
return;
|
||||
}
|
||||
|
||||
self.items.swap(index, index + 1);
|
||||
self.activate_item(index + 1, true, true, cx);
|
||||
}
|
||||
|
||||
pub fn close_active_item(
|
||||
&mut self,
|
||||
action: &CloseActiveItem,
|
||||
@ -2574,6 +2596,8 @@ impl Render for Pane {
|
||||
.on_action(cx.listener(|pane: &mut Pane, _: &ActivateNextItem, cx| {
|
||||
pane.activate_next_item(true, cx);
|
||||
}))
|
||||
.on_action(cx.listener(|pane, _: &SwapItemLeft, cx| pane.swap_item_left(cx)))
|
||||
.on_action(cx.listener(|pane, _: &SwapItemRight, cx| pane.swap_item_right(cx)))
|
||||
.on_action(cx.listener(|pane, action, cx| {
|
||||
pane.toggle_pin_tab(action, cx);
|
||||
}))
|
||||
|
@ -406,7 +406,7 @@ TBD: Add Column with Linux shortcuts
|
||||
#### Pane
|
||||
|
||||
| **Command** | **Target** | **Default Shortcut** |
|
||||
| ----------------------------- | -------------- | ----------------------- |
|
||||
| ----------------------------- | -------------- | ----------------------------- |
|
||||
| Activate item 1 | Pane | `Control + 1` |
|
||||
| Activate item 2 | Pane | `Control + 2` |
|
||||
| Activate item 3 | Pane | `Control + 3` |
|
||||
@ -421,6 +421,8 @@ TBD: Add Column with Linux shortcuts
|
||||
| Activate next item | Pane | `⌘ + }` |
|
||||
| Activate prev item | Pane | `Alt + ⌘ + Left` |
|
||||
| Activate prev item | Pane | `⌘ + {` |
|
||||
| Swap item to left | Pane | `Control + Shift + Page Up` |
|
||||
| Swap item to right | Pane | `Control + Shift + Page Down` |
|
||||
| Close active item | Pane | `⌘ + W` |
|
||||
| Close all items | Pane | `⌘ + K, ⌘ + W` |
|
||||
| Close clean items | Pane | `⌘ + K, U` |
|
||||
|
Loading…
Reference in New Issue
Block a user