diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2018-09-09 12:44:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-09 12:44:03 +0200 |
commit | c5790d91897c094d5f154584c81648c2731f4ff2 (patch) | |
tree | 5a936137c3fec9756edd1da1f2e737c99594df04 /src/nvim/api/ui.c | |
parent | e50ff1b2e9b91e10fce5781395a986a48be8d7b8 (diff) | |
parent | 8fd3725cc8d54bced0a8fe1474986d93e9ef0b5b (diff) | |
download | rneovim-c5790d91897c094d5f154584c81648c2731f4ff2.tar.gz rneovim-c5790d91897c094d5f154584c81648c2731f4ff2.tar.bz2 rneovim-c5790d91897c094d5f154584c81648c2731f4ff2.zip |
Merge pull request #8915 from rickyz/line_wrapping
Fix terminal line wrapping detection in the TUI.
Diffstat (limited to 'src/nvim/api/ui.c')
-rw-r--r-- | src/nvim/api/ui.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nvim/api/ui.c b/src/nvim/api/ui.c index 76e3927820..509032892b 100644 --- a/src/nvim/api/ui.c +++ b/src/nvim/api/ui.c @@ -424,7 +424,8 @@ static void remote_ui_put(UI *ui, const char *cell) static void remote_ui_raw_line(UI *ui, Integer grid, Integer row, Integer startcol, Integer endcol, Integer clearcol, Integer clearattr, - const schar_T *chunk, const sattr_T *attrs) + Boolean wrap, const schar_T *chunk, + const sattr_T *attrs) { UIData *data = ui->data; if (ui->ui_ext[kUINewgrid]) { |