-
-
Notifications
You must be signed in to change notification settings - Fork 16.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix case of keyboard shortcuts, add Page Up/Down #2154
base: dev
Are you sure you want to change the base?
Conversation
Indicate keys in lower-case to avoid confusion. (E.g., the search plugin makes use of Ctrl-Shift-F.) Document PageUp and PageDown.
On my keyboard keys are labelled uppercase but when I press them I get lowercase letters...very confusing indeed. 😉 Joking aside, I agree that it actually add clarity, so 👍 from me. |
Good catch documenting page up/down. I prefer the alphabet keys in uppercase as on a keyboard though. If you can roll that back I'll merge this in. Thanks! |
e8247ff
to
7955e72
Compare
'N , SPACE': 'Next slide', | ||
'P': 'Previous slide', | ||
'← , H': 'Navigate left', | ||
'→ , L': 'Navigate right', | ||
'↑ , K': 'Navigate up', | ||
'↓ , J': 'Navigate down', | ||
'n , PageDown , SPACE': 'Next slide', | ||
'p , PageUp': 'Previous slide', | ||
'← , h': 'Navigate left', | ||
'→ , l': 'Navigate right', | ||
'↑ , k': 'Navigate up', | ||
'↓ , j': 'Navigate down', | ||
'Home': 'First slide', | ||
'End': 'Last slide', | ||
'B , .': 'Pause', | ||
'F': 'Fullscreen', | ||
'ESC, O': 'Slide overview' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'Home': 'First slide', | ||
'End': 'Last slide', | ||
'B , .': 'Pause', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Indicate keys in lower-case to avoid confusion.
(E.g., the search plugin makes use of Ctrl-Shift-F.)
Document PageUp and PageDown.