Files
neovim/runtime/lua/vim/_meta
Raphael 619407eb54 feat(nvim_open_term): convert LF => CRLF (#26384)
Problem:
Unlike termopen(), nvim_open_term() PTYs do not carriage-return the
cursor on newline ("\n") input.

    nvim --clean
    :let chan_id = nvim_open_term(1, {})
    :call chansend(chan_id, ["here", "are", "some", "lines"])

Actual behavior:

    here
        are
           some
               lines

Expected behaviour:

    here
    are
    some
    lines

Solution:
Add `force_crlf` option, and enable it by default.
2023-12-14 16:08:00 +08:00
..
2023-09-14 08:23:01 -05:00
2023-09-22 23:02:45 +01:00
2023-09-14 08:23:01 -05:00
2023-07-17 16:32:56 +01:00