You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Remote pointers typically send PageDown and PageUp events to navigate
through slideshows. It would be therefore handy if jupyterlab-deck supported
these shortcuts.
PageDown: display the next fragment/subslide/slide PageUp: display the previous fragment/subslide/slide
So presumably PageDown and PageUp could simply be aliased to space and shift-space
(assuming I got their purpose correctly; see #49).
Thanks in advance!
The text was updated successfully, but these errors were encountered:
Otherwise: it's difficult to anticipate everyone's needs, and thus far those needs have been mine and the few people who wanted this built. On my box when presenting (as I don't have another device), space is big and easy, pgup and friends are tiny and useless, so it never crossed my mind.
Theoretically, there could be another settings stanza that offered a number of pre-baked schemes, but any current work will be driven by just keeping up with the upstreams, a la #36.
Thanks for the feedback! I confirm that shortcut configuration works. Up to one point, if I got it right: space (and similarly shift-space) is a compound key that actually runs two commands: down and forward.
Is that achievable with shortcut configurations, or would it require to create a new command subsuming
down+forward (which possibly could be best named forward, calling down+right, where right is the current forward?).
For information: I experimented with editing the sources, and adding the following
compound keys in token.js line 195, and that worked smoothly (up to #49):
Elevator Pitch
Remote pointers typically send
PageDown
andPageUp
events to navigatethrough slideshows. It would be therefore handy if jupyterlab-deck supported
these shortcuts.
PageDown
: display the next fragment/subslide/slidePageUp
: display the previous fragment/subslide/slideSo presumably
PageDown
andPageUp
could simply be aliased tospace
andshift-space
(assuming I got their purpose correctly; see #49).
Thanks in advance!
The text was updated successfully, but these errors were encountered: