-
-
Notifications
You must be signed in to change notification settings - Fork 80
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
Rewrite template submenu to preserve hierarchy #2506
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Definitely works to fix folder hierarchy. I have one small comment, but not gonna block on it.
Regarding the limit, yeah I don't know why that's there either. I'm guessing it's a performance thing?
GLib.FileInfo? info = enumerator.next_file (null); | ||
|
||
while (count < MAX_TEMPLATES && (info != null)) { | ||
if (!info.get_attribute_boolean (GLib.FileAttribute.STANDARD_IS_HIDDEN) && |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we remove this? I actually have some templates like .editorconfig
or .gitignore
that I want to show here
Fixes #2491