nette-intellij / intellij-neon

Neon language support for PhpStorm / IntelliJ IDEA
http://plugins.intellij.net/plugin/index?pr=webide&pluginId=7060
MIT License
96 stars 43 forks source link

Auto-reorder entries according to keys #50

Open vasekbrychta opened 5 years ago

vasekbrychta commented 5 years ago

I'd like to have an option to trigger reordering of all entries in a file by keys' names.

Basically to turn something like this

second:
    third: 'something'
    fourth: 'something else'
first: 'my name'

into that

first: 'my name'
second:
    fourth: 'something else'
    third: 'something'

It would help with keeping my translation files organized.