syllant / idea-plugin-linessorter

Lines Sorter is a plugin for Intellij IDEA which sorts lines in text files
Do What The F*ck You Want To Public License
66 stars 16 forks source link

FR: sort lines by specified column #17

Open wibotwi opened 1 month ago

wibotwi commented 1 month ago

this is especially useful in SQL for code like

SELECT xxx as X
    , bbb as A
    , aaa as B

If I select two rows, I want it to be sorted as A,B, but default is B,A as is sorts aaa,bbb

Apparently vscode can do this, and my friends laugh at me that IntelliJ cannot do that :(

wibotwi commented 1 month ago

cross posted to linessorterplus as well, I am not sure you guys share code or not

wibotwi commented 1 month ago

oh I found https://github.com/syllant/idea-plugin-linessorter/issues/16 which led me to https://github.com/krasa/StringManipulation which turned out can do that !