-
-
Notifications
You must be signed in to change notification settings - Fork 22.8k
Make comments starting with #mark
and #region
visible in Script Editor's Minimap
#107762
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
base: master
Are you sure you want to change the base?
Conversation
c5786bf
to
8221c79
Compare
Thanks for contributing! Note that you are likely implementing this in the "wrong" place, since To begin, a quick overview of the relevant class hierarchy, as I understand it:
My recommendation on how the implementation should look (not saying it's The Way, but I think it's at least better than how you're doing it):
I think an approach like this would make it most flexible for end users, while still providing the same functionality as what is proposed. Of course, you could think to skip the |
Thank you, this is exactly the kind of guidance I was hoping for. Currently getting my bearings, once I feel comfortable with the feature set, I will rebuild my commit with all of this in mind. |
947fbe6
to
45fd84d
Compare
#mark
and #region
visible in Script Editor's Minimap
e328212
to
0b8b828
Compare
I see changes being pushed, you gotta add some setting in there somewhere. |
See Calinou's comment in the proposal. I'm in agreement with him, and would prefer to follow convention. In your case, isn't this the responsibility of CodeGlance Pro when they add GDscript support? Same as they do for other languages. |
5a82ce6
to
5e40ad6
Compare
5e40ad6
to
0407379
Compare
Closes #9742.
Allows comments starting with
#mark
and#region
to be visible as text in the Script Editor's Minimap.Draft progress:
#mark Description
support#region Description
support#mark
, managed via Editor settingTrying to commit to as few files as possible until I work through this. Any feedback is welcome.