From 54ce1010e86cbb29067aabfc332dab59b5a88edb Mon Sep 17 00:00:00 2001 From: Björn Linse Date: Tue, 21 Jan 2020 13:50:22 +0100 Subject: extmark: refiy "Decoration" abstraction one very important thought --- src/nvim/screen.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/nvim/screen.c') 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); -- cgit