Closed aplteam closed 6 months ago
This is by design. Per the documentation, for a simple vector to be stored as plain text, it must have each line terminated by one of the supported line endings. In your examples, the last line fails to be terminated by the line ending in question. This design was chosen to align with the POSIX standard for text files. See Why should text files end with a newline? for details.
I have
text:plain
in my configuration file.When I do:
Link creates a file
v.vec.apla
. When I do:Link creates a file
v.mat.apla
.But when I do:
Link creates a file
v.apla
, NOT the expectedv.CR.apla
.'abc',(⎕UCS 10),'xyz'
and'abc',(⎕UCS 13 10),'xyz'
do not work as expected either.