zkry / yaml-pro

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

Allow compact maps and sequences for yaml-pro-ts-yank #66

Closed taku0 closed 2 months ago

taku0 commented 2 months ago

yaml-pro-ts-yank adjusts indents only if the line is blank.

This commit allows the line to have block struct indicators.

Examples:

Suppose the kill ring have the following fragment:

bbb: 1
ccc: 2

and _ is the point, then:

aaa: _

↓ yaml-pro-ts-yank

aaa: bbb: 1
     ccc: 2
- _

↓ yaml-pro-ts-yank

- bbb: 1
  ccc: 2
? _

↓ yaml-pro-ts-yank

? bbb: 1
  ccc: 2
? aaa
: _

↓ yaml-pro-ts-yank

? aaa
: bbb: 1
  ccc: 2
zkry commented 2 months ago

Thanks for this!