summaryrefslogtreecommitdiffstats
path: root/src/key_command/impl_comment.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_comment.rs
parentd78e36a0648f580ad950e6dc26b886de7fed180b (diff)
add H, L and M vim actions
Diffstat (limited to 'src/key_command/impl_comment.rs')
-rw-r--r--src/key_command/impl_comment.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/key_command/impl_comment.rs b/src/key_command/impl_comment.rs
index 99234f7..b7d3cc5 100644
--- a/src/key_command/impl_comment.rs
+++ b/src/key_command/impl_comment.rs
@@ -47,6 +47,10 @@ impl CommandComment for Command {
Self::CursorMovePageUp(_) => "Move cursor one page up",
Self::CursorMovePageDown(_) => "Move cursor one page down",
+ Self::CursorMovePageHome => "Move cursor to top of page",
+ Self::CursorMovePageMiddle => "Move cursor to middle of page",
+ Self::CursorMovePageEnd => "Move cursor to bottom of page",
+
Self::ParentCursorMoveUp(_) => "Cursor up in parent list",
Self::ParentCursorMoveDown(_) => "Cursor down in parent list",