fdbad4d9b2
When "edit -fifo" reads data without a trailing newline, the fifo buffer will not have a trailing blank line. But if there is a trailing newline, we will get a trailing blank line. This is weird because the trailing blank line exists for scrolling, it should not be determined by the data read. Add a test case to demonstrates the inconsistency which is fixed by the next patch.
11 lines
1.3 KiB
Plaintext
11 lines
1.3 KiB
Plaintext
ui_out -ignore 7
|
|
exec 5>fifo
|
|
ui_out '{ "jsonrpc": "2.0", "method": "refresh", "params": [true] }'
|
|
|
|
printf '* noeol' >&5
|
|
ui_out '{ "jsonrpc": "2.0", "method": "draw", "params": [[[{ "face": { "fg": "black", "bg": "white", "underline": "default", "attributes": [] }, "contents": "*" }, { "face": { "fg": "default", "bg": "default", "underline": "default", "attributes": [] }, "contents": " noeol\u000a" }]], { "fg": "default", "bg": "default", "underline": "default", "attributes": [] }, { "fg": "blue", "bg": "default", "underline": "default", "attributes": [] }] }'
|
|
ui_out -ignore 2
|
|
|
|
exec 5>&-
|
|
ui_out '{ "jsonrpc": "2.0", "method": "draw_status", "params": [[], [{ "face": { "fg": "default", "bg": "default", "underline": "default", "attributes": [] }, "contents": "*fifo* 1:1 " }, { "face": { "fg": "black", "bg": "yellow", "underline": "default", "attributes": [] }, "contents": "[scratch]" }, { "face": { "fg": "default", "bg": "default", "underline": "default", "attributes": [] }, "contents": " " }, { "face": { "fg": "blue", "bg": "default", "underline": "default", "attributes": [] }, "contents": "1 sel" }, { "face": { "fg": "default", "bg": "default", "underline": "default", "attributes": [] }, "contents": " - client0@[kak-tests]" }], { "fg": "cyan", "bg": "default", "underline": "default", "attributes": [] }] }'
|