aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src
diff options
context:
space:
mode:
authorBlaž Hrastnik2022-08-23 02:44:10 +0000
committerBlaž Hrastnik2022-08-23 02:44:10 +0000
commit7b8e4ac95a83513b315af29591ae957ae861605c (patch)
treefec4ef2d4fc2cdb5d2c223cc8e585f1051d18708 /helix-term/src
parentdd2b9e55a20be4db7b7c5ed72f9760b0ad4d719c (diff)
Editor: remove duplication for view focus/swap commands
Diffstat (limited to 'helix-term/src')
-rw-r--r--helix-term/src/commands.rs17
1 files changed, 9 insertions, 8 deletions
diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs
index ccc959c6..16f7e601 100644
--- a/helix-term/src/commands.rs
+++ b/helix-term/src/commands.rs
@@ -33,6 +33,7 @@ use helix_view::{
info::Info,
input::KeyEvent,
keyboard::KeyCode,
+ tree,
view::View,
Document, DocumentId, Editor, ViewId,
};
@@ -4080,35 +4081,35 @@ fn rotate_view(cx: &mut Context) {
}
fn jump_view_right(cx: &mut Context) {
- cx.editor.focus_right()
+ cx.editor.focus_direction(tree::Direction::Right)
}
fn jump_view_left(cx: &mut Context) {
- cx.editor.focus_left()
+ cx.editor.focus_direction(tree::Direction::Left)
}
fn jump_view_up(cx: &mut Context) {
- cx.editor.focus_up()
+ cx.editor.focus_direction(tree::Direction::Up)
}
fn jump_view_down(cx: &mut Context) {
- cx.editor.focus_down()
+ cx.editor.focus_direction(tree::Direction::Down)
}
fn swap_view_right(cx: &mut Context) {
- cx.editor.swap_right()
+ cx.editor.swap_split_in_direction(tree::Direction::Right)
}
fn swap_view_left(cx: &mut Context) {
- cx.editor.swap_left()
+ cx.editor.swap_split_in_direction(tree::Direction::Left)
}
fn swap_view_up(cx: &mut Context) {
- cx.editor.swap_up()
+ cx.editor.swap_split_in_direction(tree::Direction::Up)
}
fn swap_view_down(cx: &mut Context) {
- cx.editor.swap_down()
+ cx.editor.swap_split_in_direction(tree::Direction::Down)
}
fn transpose_view(cx: &mut Context) {