diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-06-01 22:15:29 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-06-01 22:15:29 +0200 |
commit | 790498b509443f96f39431d2bc87b777efbe250f (patch) | |
tree | 825116fda3eb6724ae59a3c570cbc680a3f9bfe0 /src/window.c | |
parent | 3bfd04e672ea47e371595e50a92ddfb2223f6e3d (diff) | |
download | vim-git-790498b509443f96f39431d2bc87b777efbe250f.tar.gz |
patch 8.1.1445: popup window border highlight not implemented yetv8.1.1445
Problem: Popup window border highlight not implemented yet.
Solution: Implement the "borderhighlight" option.
Diffstat (limited to 'src/window.c')
-rw-r--r-- | src/window.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/window.c b/src/window.c index b4ab11be3..e15b31191 100644 --- a/src/window.c +++ b/src/window.c @@ -4846,6 +4846,8 @@ win_free( #endif #ifdef FEAT_TEXT_PROP free_callback(&wp->w_filter_cb); + for (i = 0; i < 4; ++i) + VIM_CLEAR(wp->w_border_highlight[i]); #endif #ifdef FEAT_SYN_HL |