summaryrefslogtreecommitdiffstats
path: root/src/key_command/impl_appexecute.rs
diff options
context:
space:
mode:
authorJeff Zhao <jeff.no.zhao@gmail.com>2022-04-20 11:19:34 -0400
committerJeff Zhao <jeff.no.zhao@gmail.com>2022-04-20 11:20:34 -0400
commit763815418ac3acd56aa7e936c48861ae6e73ca40 (patch)
treef8213b7ffaf588dc49ad83f502b5db42f2c435e2 /src/key_command/impl_appexecute.rs
parentd78e36a0648f580ad950e6dc26b886de7fed180b (diff)
add H, L and M vim actions
Diffstat (limited to 'src/key_command/impl_appexecute.rs')
-rw-r--r--src/key_command/impl_appexecute.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/key_command/impl_appexecute.rs b/src/key_command/impl_appexecute.rs
index 6b652b5..bb2e752 100644
--- a/src/key_command/impl_appexecute.rs
+++ b/src/key_command/impl_appexecute.rs
@@ -45,6 +45,10 @@ impl AppExecute for Command {
Self::CursorMovePageUp(p) => cursor_move::page_up(context, backend, *p),
Self::CursorMovePageDown(p) => cursor_move::page_down(context, backend, *p),
+ Self::CursorMovePageHome => cursor_move::page_home(context, backend),
+ Self::CursorMovePageMiddle => cursor_move::page_middle(context, backend),
+ Self::CursorMovePageEnd => cursor_move::page_end(context, backend),
+
Self::ParentCursorMoveUp(u) => parent_cursor_move::parent_up(context, *u),
Self::ParentCursorMoveDown(u) => parent_cursor_move::parent_down(context, *u),