-
Notifications
You must be signed in to change notification settings - Fork 22
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
feat: space as pagedown in read-only #47
base: master
Are you sure you want to change the base?
Conversation
Similar shift-space as pageup, as in browsers etc.
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.
laptop without a scrollwheel mouse. How can you work
move two fingers on the touchpad
(but whenever possible, I use a wireless mouse with a free-scrolling wheel)
@@ -36,6 +36,7 @@ public abstract class TextEditorControlBase : UserControl | |||
/// action. | |||
/// </summary> | |||
protected Dictionary<Keys, IEditAction> editactions = new Dictionary<Keys, IEditAction>(); | |||
protected HashSet<Keys> readonlyactions = new HashSet<Keys>(); |
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.
protected HashSet<Keys> readonlyactions = new HashSet<Keys>(); | |
protected HashSet<Keys> readonlyonlyactions = new HashSet<Keys>(); |
or add a regarding xmldoc. Without a clarification here or in IsEditAction
it is hard to grasp.
TIL, but this combination appears to be only common in web browsers. I'm not sure it's really applicable to the app.
I often work on laptops, and I can't say I missed the wheel... I'm used to trackpads and the gestures. |
I do not get the precision with the trackpad and it is function-key+PageDown. |
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.
this combination appears to be only common in web browsers
also in "more" and "less" as well as in email clients
I plan to merge this in a couple of days. |
Similar shift-space as pageup, as in browsers etc.
Note: I would like to scroll to next file in diff lists with space too, but that need to be handled in the app.
Just as scroll, the app may override the input (similar for pagedown).
This after a few days using a laptop without a scrollwheel mouse. How can you work on a laptop?