aboutsummaryrefslogtreecommitdiff
path: root/test/functional/terminal/channel_spec.lua
Commit message (Collapse)AuthorAge
* test(terminal/channel_spec): fix screen test immediate success (#23192)zeertzjq2023-04-19
| | | Check for the [No Name] after wiping the buffer.
* fix(chansend): sending lines to terminal in reverse order on Windows #19315Enan Ajmain2022-12-08
| | | | | | | Problem: `chansend()` on Windows sends lines in reverse order. Cause: Using \n instead of \r\n for newlines on Windows. Solution: on Windows, use CRLF newline characters. Fixes #18501
* chore: fix typos (#17670)dundargoc2022-03-17
| | | Co-authored-by: zeertzjq <zeertzjq@outlook.com>
* test: improve terminal channel testszeertzjq2022-03-12
|
* fix(channel): fix channel consistencyerw72022-03-12
| | | | | | | - Fix the problem that chanclose() does not work for channel created by nvim_open_term(). - Fix the problem that the loopback channel is not released. - Fix the error message when sending raw data to the loopback channel.
* test: require fewest number of main loop iterations possiblezeertzjq2021-11-15
| | | | | Change exc_exec to pcall_err to reduce one main loop iteration. No need to call poke_eventloop() unless after nvim_input().
* test: add tests for freeing channel opened by termopen()zeertzjq2021-11-11
This indirectly covers #16264