When I do:
seq: !-
- first
- second
after_seq: !-
- pre-last
- last
extended_seq:
- !for .seq: !()
- !? $
- next
- other next
- !for .after_seq: !()
- !? $
I expect the next output:
extended_seq:
- first
- second
- next
- other next
- pre-last
- last
But I get:
extended_seq:
- next
- other next
- first
- second
- pre-last
- last