diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2020-01-21 13:50:22 +0100 |
---|---|---|
committer | Thomas Vigouroux <tomvig38@gmail.com> | 2020-09-03 10:23:52 +0200 |
commit | 54ce1010e86cbb29067aabfc332dab59b5a88edb (patch) | |
tree | 7c1ef5abd9ae4f55c02c733fdbfababa3ad2e848 /src/nvim/screen.c | |
parent | 3acfefb63ee70c8eac13bf6b308a0e73e6fb8007 (diff) | |
download | rneovim-54ce1010e86cbb29067aabfc332dab59b5a88edb.tar.gz rneovim-54ce1010e86cbb29067aabfc332dab59b5a88edb.tar.bz2 rneovim-54ce1010e86cbb29067aabfc332dab59b5a88edb.zip |
extmark: refiy "Decoration" abstraction
one very important thought
Diffstat (limited to 'src/nvim/screen.c')
-rw-r--r-- | src/nvim/screen.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/screen.c b/src/nvim/screen.c index 69de1de6b2..c68a90d6e3 100644 --- a/src/nvim/screen.c +++ b/src/nvim/screen.c @@ -2554,6 +2554,7 @@ win_line ( } // If this line has a sign with line highlighting set line_attr. + // TODO(bfredl, vigoux): this should not take priority over decorations! v = buf_getsigntype(wp->w_buffer, lnum, SIGN_LINEHL, 0, 1); if (v != 0) { line_attr = sign_get_attr((int)v, SIGN_LINEHL); |