codemaid
codemaid copied to clipboard
Sort items in inline list
Environment
- Visual Studio version: Enterprise 2019
- CodeMaid version: 11.2
- Code language: C#
Description
With the "Sort Line" Feature it is only possible sort items in rows.
It would be helpful, if you could also sort inline, if only one line is selected.
Example:
public class MyClass<Customer, Truck, Article>
Now I mark the section Customer, Truck, Article and click "Sort Line".
Current behavior
Nothing happens. the code is still
public class MyClass<Customer, Truck, Article>
Expected behavior
The list of types is sorted:
public class MyClass<Article, Customer, Truck>
Thanks for the suggestion! This could be challenging to implement since it would be very contextual.