commit | 73c3842fa54aa99e59b897b6ff1e69e800fe9cd3 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Sun Aug 07 11:53:40 2022 +0100 |
committer | Bram Moolenaar <Bram@vim.org> | Sun Aug 07 11:53:40 2022 +0100 |
tree | 0edcc21950a991de23f6a2c9445d3fc29523a90f | |
parent | bf9158408a9d27932b8678f824cf1fe32d3cd920 [diff] [blame] |
patch 9.0.0162: text property "below" gets indent if 'breakindent' is set Problem: Text property "below" gets indent if 'breakindent' is set. (Tim Pope) Solution: Do not put indent before text property. (closes #10859)
diff --git a/src/drawline.c b/src/drawline.c index 824c416..eaae4be 100644 --- a/src/drawline.c +++ b/src/drawline.c
@@ -1408,6 +1408,9 @@ # ifdef FEAT_DIFF && filler_lines == 0 # endif +# ifdef FEAT_PROP_POPUP + && !dont_use_showbreak +# endif ) { wlv.char_attr = 0;