-
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 next steps #622
Comments
@abe33 Do you think there is merit in doing a full rewrite of the package and requiring the newest Atom version using package.json on release? There are a lot of wins in (start-up) performance and maintainability that could be had. There seems to be a lot of cruft for handling older Atom versions as well. I think it'd be fun to spike a rewrite to see where we could go with it. Thanks for explaining the direction on those items. Do you have a minimap plugin/extension idea that would help me more clearly see Out of bounds decorations? |
I'm not sure what kind of changes you're referring to, because I think we've already done pretty much everything that can be done, from moving config, services and view providers in package.json to lazily loading all dependencies that could be lazily loaded, but I'm open to any suggestions on that front.
That's not that terrible, really, it sures make the code a bit more tedious to follow, but the biggest have been handled already (like removing the shadow DOM) so we should be fine for some time with only little issues to handle. But we can surely clean up some of the mess that have been created over time (I think that the
Sure, but that's going to be a real hard work, because performances are really critical and current optimizations and improvements have been obtained through hard-fought battles. That's why I'm quite wary of going though all that hassles again to see if a new approach actually gives us a benefit.
Not that I have a specific use-case in mind, but for instance, we can imagine a version of the bookmark plugin that would render a bookmark icon instead of just highlighting the line. Or a plugin that would display an ellipsis icon where code is folded in a document. All this require to be able to render a decoration without being tied to the marker's lines. |
This is mostly to keep track of the things I envisioned for the minimap future and making sure @mehcode is aware of them (and if someone wants to help it's a good starting point).
clip
method of thecanvas
API.The text was updated successfully, but these errors were encountered: