-
-
Notifications
You must be signed in to change notification settings - Fork 67
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
Remove left margin when scrolling #197
Comments
cc @objectliteral for originally bringing this up |
This can probably be done by using |
This is almost done, and the work is on the |
Branch has been merged, this issue is fixed! I opened this upstream PR. |
This is still broken. If you go to |
Also: will |
Alright so scrolling to the bottom with arrow keys was fine, because that's captured. It's scrolling with PgUp or PgDown, or non-capture keys like g and G that was the issue. Now all those keys are captured, and so the internal scroll position is maintained no matter what key is used. This was fixed in ed36eee. |
Maybe a func like Then |
Fixed by 6ec7ed1. |
Due to the change in 90654cd (as a part of #107, to fix #26) the left margin on pages was made into a UI element. That means that when scrolling to the right, for long pre-formatted lines, they appear to "disappear" under the left margin. This is an undesirable effect.
One solution would be to change the size of the margin when scrolling, and eventually remove it once its width becomes <= 0. Another possible solution would be to find a way to keep the left margin "underneath" the text.
The text was updated successfully, but these errors were encountered: