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
The README.md has a nice suggestion on how to hide Atom's native vertical scrollbar. I have this in my styles.less, since the scrollbars are redundant clutter if minimap is enabled:
My frustration comes from the fact that I don't always have the minimap visible. I often toggle it off to save horizontal screen space, like when I'm editing two file side-by-side.
When the minimap isn't visible, having the native scrollbars visible is quite useful/necessary. An option to "hide native scrollbars" in minimap's settings would be very handy for this, if it was smart enough to hide/unhide them based on minimap visibility.
I'd also settle with some way to use a CSS selector to apply the opacity: 0; width: 0; style only to .vertical-scrollbar elements inside editors with visible minmaps. I tried and failed to find a way to do this with the current version. (CSS sibling selectors don't work because the editor and it's .vertical-scrollbar come before the minimap element, and sibling selectors can only select elements that occur after another element.)
The text was updated successfully, but these errors were encountered:
I've added a with-minimap attribute on the text editor hosting a minimap, and updated the README with that, so you should now be able to toggle the scrollbar visibility depending on the presence of a minimap.
The README.md has a nice suggestion on how to hide Atom's native vertical scrollbar. I have this in my styles.less, since the scrollbars are redundant clutter if minimap is enabled:
My frustration comes from the fact that I don't always have the minimap visible. I often toggle it off to save horizontal screen space, like when I'm editing two file side-by-side.
When the minimap isn't visible, having the native scrollbars visible is quite useful/necessary. An option to "hide native scrollbars" in minimap's settings would be very handy for this, if it was smart enough to hide/unhide them based on minimap visibility.
I'd also settle with some way to use a CSS selector to apply the
opacity: 0; width: 0;
style only to.vertical-scrollbar
elements inside editors with visible minmaps. I tried and failed to find a way to do this with the current version. (CSS sibling selectors don't work because the editor and it's.vertical-scrollbar
come before the minimap element, and sibling selectors can only select elements that occur after another element.)The text was updated successfully, but these errors were encountered: