如何用红色换行附加一个新数据块?

How to append a new data block with new-line in red?

我试过了:

data: [a b c]
new-line tail data true
append data [d e f]

我明白了

[a b c d e f]

不是我所期望的:

[a b c 
d e f]

换行符是值槽的 属性,不是系列的。 new-line tail data true 没有设置此标记,因为系列的 tail 不包含任何值槽(但 back tail 包含)。

>> head new-line tail [a b c] on
== [a b c]
>> head new-line back tail [a b c] on
== [a b 
    c
]
>> append [a b c] new-line [d e f] on
== [a b c 
    d e f
]