diff options
author | bfredl <bjorn.linse@gmail.com> | 2023-03-16 13:56:05 +0100 |
---|---|---|
committer | bfredl <bjorn.linse@gmail.com> | 2023-03-16 13:56:05 +0100 |
commit | 8021300806e2ccf04b3ec33970b682ee3c7a9cc3 (patch) | |
tree | cd4b6ed77b3f0cfc8ba57466d7a871920116f1d4 /src/nvim/decoration.h | |
parent | 320cb344c14b30f8c1aa8c2d86803e4c2f971ae9 (diff) | |
download | rneovim-8021300806e2ccf04b3ec33970b682ee3c7a9cc3.tar.gz rneovim-8021300806e2ccf04b3ec33970b682ee3c7a9cc3.tar.bz2 rneovim-8021300806e2ccf04b3ec33970b682ee3c7a9cc3.zip |
refactor(extmarks): some minor internal API changes
extranges and a bunch of other improvements are coming for 0.10
This gets in some minor surrounding API changes to avoid rebase
conflicts until then.
- decorations will be able to be specific to windows
- adjust deletion API to fit with extranges
Diffstat (limited to 'src/nvim/decoration.h')
-rw-r--r-- | src/nvim/decoration.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/decoration.h b/src/nvim/decoration.h index c9ec8ede7f..f43002521c 100644 --- a/src/nvim/decoration.h +++ b/src/nvim/decoration.h @@ -88,7 +88,7 @@ typedef struct { typedef struct { MarkTreeIter itr[1]; kvec_t(DecorRange) active; - buf_T *buf; + win_T *win; int top_row; int row; int col_until; |