zkry / yaml-pro

Edit YAML in Emacs like a pro
GNU General Public License v3.0
137 stars 9 forks source link

Implement a sort-keys function #17

Open zkry opened 1 year ago

zkry commented 1 year ago

Using tree-sitter, it would be useful to have a command to sort the keys in a map.

So this would transfer the following document:

keys:
  ddd: 9
  bbb: 2
  ccc: 8
  aaa: 1

into

keys:
  aaa: 1
  bbb: 2
  ccc: 8
  ddd: 9

when run on the key keys:.