aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/api
diff options
context:
space:
mode:
authorBjörn Linse <bjorn.linse@gmail.com>2019-01-24 21:37:38 +0100
committerBjörn Linse <bjorn.linse@gmail.com>2019-02-02 16:31:49 +0100
commit69bdc4f0726ae0f3a2610dadbaf4156acfe74f49 (patch)
treee90eba8bcf0ed386a414e1644055e6e4651a3f5b /src/nvim/api
parent2405cf82552e93eb3d5441d2f109647b97af5521 (diff)
downloadrneovim-69bdc4f0726ae0f3a2610dadbaf4156acfe74f49.tar.gz
rneovim-69bdc4f0726ae0f3a2610dadbaf4156acfe74f49.tar.bz2
rneovim-69bdc4f0726ae0f3a2610dadbaf4156acfe74f49.zip
ui/compositor: add redraws needed due to intersected doublewidth chars.
Diffstat (limited to 'src/nvim/api')
-rw-r--r--src/nvim/api/ui.c2
-rw-r--r--src/nvim/api/ui_events.in.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/api/ui.c b/src/nvim/api/ui.c
index 9d577db022..b77516d588 100644
--- a/src/nvim/api/ui.c
+++ b/src/nvim/api/ui.c
@@ -461,7 +461,7 @@ 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,
- Boolean wrap, const schar_T *chunk,
+ LineFlags flags, const schar_T *chunk,
const sattr_T *attrs)
{
UIData *data = ui->data;
diff --git a/src/nvim/api/ui_events.in.h b/src/nvim/api/ui_events.in.h
index 70f8b9d85c..ef3ff0f4c2 100644
--- a/src/nvim/api/ui_events.in.h
+++ b/src/nvim/api/ui_events.in.h
@@ -92,7 +92,7 @@ void grid_destroy(Integer grid)
// translate this in to the public grid_line format.
void raw_line(Integer grid, Integer row, Integer startcol,
Integer endcol, Integer clearcol, Integer clearattr,
- Boolean wrap, const schar_T *chunk, const sattr_T *attrs)
+ LineFlags flags, const schar_T *chunk, const sattr_T *attrs)
FUNC_API_NOEXPORT FUNC_API_COMPOSITOR_IMPL;
void event(char *name, Array args, bool *args_consumed)