microsoft / vscode-gradle

Manage Gradle Projects, run Gradle tasks and provide better Gradle file authoring experience in VS Code
https://marketplace.visualstudio.com/items?itemName=vscjava.vscode-gradle
MIT License
124 stars 51 forks source link

Alphabetically order of nested projects #1467

Open jeutacio opened 9 months ago

jeutacio commented 9 months ago

When I load my folder with a bunch of gradle projects, the plugin does not sort the tasks in alphabetically order, like:

image

I'm using the following configurations: //Gradle For Java "java.gradle.buildServer.enabled": "on", "gradle.allowParallelRun":true, "gradle.debug": true, "gradle.disableConfirmations": true, "gradle.javaDebug.cleanOutput": true, "gradle.nestedProjects": true, "java.jdt.ls.vmargs": "-XX:+UseParallelGC -XX:GCTimeRatio=4 -XX:AdaptiveSizePolicyWeight=90 -Dsun.zip.disableMemoryMapping=true -Xmx2G -Xms100m -Xlog:disable",

Would be nice to sort them, because it's hard to find the projects.

My vscode version:

image

MikeJCusack commented 1 month ago

I would also like this. Is there an existing solution for this?

jdneo commented 1 month ago

So far no. But this should be an easy one. Just sort the node before return. Contributions are welcome :)