comparison src/move.c @ 22403:3351d2cd3f1f v8.2.1750

patch 8.2.1750: popup_setoptions() setting firstline fails if cursorline set Commit: https://github.com/vim/vim/commit/3697c9bbae755831d3cf2f11179aaff29e343f51 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Sep 26 22:03:00 2020 +0200 patch 8.2.1750: popup_setoptions() setting firstline fails if cursorline set Problem: Setting firstline with popup_setoptions() fails if cursorline is set. Solution: Use apply_options(). Update the popup before applying "zz". (closes #7010)
author Bram Moolenaar <Bram@vim.org>
date Sat, 26 Sep 2020 22:15:04 +0200
parents 1421eca61db9
children 53b996eb5e76
comparison
equal deleted inserted replaced
22402:337df0dbfe0a 22403:3351d2cd3f1f
2142 lineoff_T boff; 2142 lineoff_T boff;
2143 #ifdef FEAT_DIFF 2143 #ifdef FEAT_DIFF
2144 linenr_T old_topline = curwin->w_topline; 2144 linenr_T old_topline = curwin->w_topline;
2145 #endif 2145 #endif
2146 2146
2147 #ifdef FEAT_PROP_POPUP
2148 // if the width changed this needs to be updated first
2149 may_update_popup_position();
2150 #endif
2147 loff.lnum = boff.lnum = curwin->w_cursor.lnum; 2151 loff.lnum = boff.lnum = curwin->w_cursor.lnum;
2148 #ifdef FEAT_FOLDING 2152 #ifdef FEAT_FOLDING
2149 (void)hasFolding(loff.lnum, &loff.lnum, &boff.lnum); 2153 (void)hasFolding(loff.lnum, &loff.lnum, &boff.lnum);
2150 #endif 2154 #endif
2151 #ifdef FEAT_DIFF 2155 #ifdef FEAT_DIFF