commit | ea042677ab5cab736540f3164909cac2c685de74 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Tue Jun 29 20:22:32 2021 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Tue Jun 29 20:22:32 2021 +0200 |
tree | 623524f72d11b847df5de0043c42e466290e2e8b | |
parent | 4067bd3604215b48e4b4201e28f9e401b08418e4 [diff] [blame] |
patch 8.2.3074: popup_atcursor() uses wrong position with concealing Problem: popup_atcursor() uses wrong position with concealing. Solution: Keep w_wcol in conceal_check_cursor_line(). (closes #8476)
diff --git a/src/ui.c b/src/ui.c index 65ac626..b3d125c 100644 --- a/src/ui.c +++ b/src/ui.c
@@ -1082,7 +1082,7 @@ # endif # ifdef FEAT_CONCEAL - conceal_check_cursor_line(); + conceal_check_cursor_line(FALSE); # endif }