krasa / StringManipulation

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

Group by first word #187

Open MHKalantarian opened 1 year ago

MHKalantarian commented 1 year ago

I have a lot of strings that needs to be grouped by their first word ex:

    <string name="action__select_files">انتخاب فایل‌ها</string>
    <string name="action__yes">بله</string>
    <string name="clip__delete_item">حذف</string>
    <string name="clip__paste_item">چسباندن</string>

to

    <string name="action__select_files">انتخاب فایل‌ها</string>
    <string name="action__yes">بله</string>

    <string name="clip__delete_item">حذف</string>
    <string name="clip__paste_item">چسباندن</string>

Grouped by key's first word

krasa commented 1 year ago

Quite a special use case, you will have to make it yourself.

MHKalantarian commented 1 year ago

Is there a way to do this with your plugin?

krasa commented 1 year ago

nope