-
-
Couldn't load subscription status.
- Fork 656
Add C-u / C-d for page up / page down #1886
-
Beta Was this translation helpful? Give feedback.
All reactions
-
👍 2
I believe you can achieve this behavior by adding the following lines into your key_bindings.ron
(
page_up: Some(( code: Char('u'), modifiers: ( bits: 2,),)),
page_down: Some(( code: Char('d'), modifiers: ( bits: 2,),)),
)
Replies: 5 comments
-
This issue has been automatically marked as stale because it has not had any activity half a year. It will be closed in 14 days if no further activity occurs. Thank you for your contributions.
Beta Was this translation helpful? Give feedback.
All reactions
-
Boink
Beta Was this translation helpful? Give feedback.
All reactions
-
if C-u is a combo of first pressing C and then u this is a concept that gitui does not support. otherwise please clarify
Beta Was this translation helpful? Give feedback.
All reactions
-
if
C-uis a combo of first pressingCand thenuthis is a concept that gitui does not support. otherwise please clarify
It means Ctrl-u. C-u and C-d are the page up and down commands in vim.
Beta Was this translation helpful? Give feedback.
All reactions
-
I believe you can achieve this behavior by adding the following lines into your key_bindings.ron
(
page_up: Some(( code: Char('u'), modifiers: ( bits: 2,),)),
page_down: Some(( code: Char('d'), modifiers: ( bits: 2,),)),
)
Beta Was this translation helpful? Give feedback.
All reactions
-
👍 2