-
Notifications
You must be signed in to change notification settings - Fork 130
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
Minimap hides characters on long lines #322
Comments
This is the intended behavior, the minimap isn't an overlay above the text editor so text won't flow behind it. But the editor will allow you to scroll horizontally (hence the scrollbar at the bottom of the editor). |
Is there an easy way to change this behavior? |
Hmm, I think the following rule in your stylesheet should do the trick: atom-text-editor::shadow atom-text-editor-minimap {
position: absolute;
right: 0;
} At least on my config it works as expected. I'll consider adding a setting for that given that the solution is simpler that what I thought it'll be at first. |
That's not quite the behavior I was hoping for, but I think it is at least better. Ideally I'd like the page to end at the edge of the minimap. Basically I want the sublime text minimap behavior. Many thanks even for this change :) |
It behaves exactly as sublime on this, it doesn't not overlay above the code, so if the code is longer that the available space it'll be hidden and available through horizontal scrolling. |
Odd, I get the text intersecting with the minimap. |
When I type out a long line of text the minimap seems to hide a character or two.
pic here
http://imgur.com/DyDXwGU
The text was updated successfully, but these errors were encountered: