diff options
author | chentau <tchen1998@gmail.com> | 2021-01-03 13:59:24 -0800 |
---|---|---|
committer | chentau <tchen1998@gmail.com> | 2021-01-03 13:59:24 -0800 |
commit | 10b278bdae4227ab1fdc1257e09bfa6524cbf63c (patch) | |
tree | 53ff036315125930fd48b46dbe53bbb6de5b7123 /src/nvim/decoration.c | |
parent | 7718826edf0a4af175d230a691d9d9559f9d8acc (diff) | |
download | rneovim-10b278bdae4227ab1fdc1257e09bfa6524cbf63c.tar.gz rneovim-10b278bdae4227ab1fdc1257e09bfa6524cbf63c.tar.bz2 rneovim-10b278bdae4227ab1fdc1257e09bfa6524cbf63c.zip |
allow for extmark gravity to be set through api
Diffstat (limited to 'src/nvim/decoration.c')
-rw-r--r-- | src/nvim/decoration.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/decoration.c b/src/nvim/decoration.c index e6a616c927..0a096bec9e 100644 --- a/src/nvim/decoration.c +++ b/src/nvim/decoration.c @@ -69,7 +69,7 @@ void bufhl_add_hl_pos_offset(buf_T *buf, } (void)extmark_set(buf, (uint64_t)src_id, 0, (int)lnum-1, hl_start, (int)lnum-1+end_off, hl_end, - decor, kExtmarkNoUndo); + decor, true, kExtmarkNoUndo); } } |