Support merging multiple parents instead of appending #14

Open
opened 2026-03-05 04:35:06 +00:00 by flamingcow · 0 comments
Owner

There should be a way to specify parents (and CLIs) that merge instead of append.

Example:

# a.yaml
a: 1

# b.yaml
b: 2

# c.yaml
$parent:
  - a
  - b

Expected output:

a: 1
b: 2

Actual output:

a: 1
---
b: 2
There should be a way to specify parents (and CLIs) that merge instead of append. Example: ```yaml # a.yaml a: 1 # b.yaml b: 2 # c.yaml $parent: - a - b ``` Expected output: ```yaml a: 1 b: 2 ``` Actual output: ```yaml a: 1 --- b: 2 ```
Sign in to join this conversation.
No Label
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: bkl/bkl#14