diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2020-09-04 16:39:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-04 16:39:48 +0200 |
commit | ef5a09d4fc6b87343755db681dbc1c339b428296 (patch) | |
tree | dbf9bff6b291d8f6c978a79d44ba92320b296fc3 /src/nvim/extmark.h | |
parent | dd465bbccc72665a8e4dbfde09aa7f866b328fef (diff) | |
parent | 1832d18083446255aa04d63fac033aea08a65ed0 (diff) | |
download | rneovim-ef5a09d4fc6b87343755db681dbc1c339b428296.tar.gz rneovim-ef5a09d4fc6b87343755db681dbc1c339b428296.tar.bz2 rneovim-ef5a09d4fc6b87343755db681dbc1c339b428296.zip |
Merge pull request #12816 from vigoux/decorations
New Decorations API (not finalized, but we gonna build on this)
Diffstat (limited to 'src/nvim/extmark.h')
-rw-r--r-- | src/nvim/extmark.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/nvim/extmark.h b/src/nvim/extmark.h index b5eb0db3b6..c569e8b78d 100644 --- a/src/nvim/extmark.h +++ b/src/nvim/extmark.h @@ -13,9 +13,12 @@ typedef struct uint64_t mark_id; int row; colnr_T col; + int end_row; + colnr_T end_col; + Decoration *decor; } ExtmarkInfo; -typedef kvec_t(ExtmarkInfo) ExtmarkArray; +typedef kvec_t(ExtmarkInfo) ExtmarkInfoArray; // delete the columns between mincol and endcol |