krasa / StringManipulation

IntelliJ plugin - https://plugins.jetbrains.com/plugin/2162
Apache License 2.0
694 stars 81 forks source link

Sort group by subselection #197

Open eygraber opened 1 year ago

eygraber commented 1 year ago

I have a lot of code that looks like this:

bind<L>() with provider {
  L()
}

bind<G>() with provider {
  G()
}

bind<A>() with provider {
  A()
}

I'd like to sort the groups based on the text inside of <> so that it looks like:

bind<A>() with provider {
  A()
}

bind<G>() with provider {
  G()
}

bind<L>() with provider {
  L()
}

Is that possible with this plugin?

krasa commented 1 year ago

No.