mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-22 01:16:18 +04:00
Add command to rotate view backward (#5356)
This commit is contained in:
parent
9530fab4b6
commit
e7e47fd542
@ -384,6 +384,7 @@ pub fn doc(&self) -> &str {
|
||||
swap_view_down, "Swap with split below",
|
||||
transpose_view, "Transpose splits",
|
||||
rotate_view, "Goto next window",
|
||||
rotate_view_reverse, "Goto previous window",
|
||||
hsplit, "Horizontal bottom split",
|
||||
hsplit_new, "Horizontal bottom split scratch buffer",
|
||||
vsplit, "Vertical right split",
|
||||
@ -4317,6 +4318,10 @@ fn rotate_view(cx: &mut Context) {
|
||||
cx.editor.focus_next()
|
||||
}
|
||||
|
||||
fn rotate_view_reverse(cx: &mut Context) {
|
||||
cx.editor.focus_prev()
|
||||
}
|
||||
|
||||
fn jump_view_right(cx: &mut Context) {
|
||||
cx.editor.focus_direction(tree::Direction::Right)
|
||||
}
|
||||
|
@ -1285,6 +1285,10 @@ pub fn focus_next(&mut self) {
|
||||
self.focus(self.tree.next());
|
||||
}
|
||||
|
||||
pub fn focus_prev(&mut self) {
|
||||
self.focus(self.tree.prev());
|
||||
}
|
||||
|
||||
pub fn focus_direction(&mut self, direction: tree::Direction) {
|
||||
let current_view = self.tree.focus;
|
||||
if let Some(id) = self.tree.find_split_in_direction(current_view, direction) {
|
||||
|
Loading…
Reference in New Issue
Block a user