mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
patch 8.2.2581: Vim9: sourcing Vim9 script triggers a redraw
Problem: Vim9: sourcing Vim9 script triggers a redraw. Solution: Do not let setting/restoring 'cpoptions' cause a redraw. (closes #7920)
This commit is contained in:
@@ -3176,6 +3176,8 @@ set_bool_option(
|
|||||||
if (curwin->w_curswant != MAXCOL
|
if (curwin->w_curswant != MAXCOL
|
||||||
&& (options[opt_idx].flags & (P_CURSWANT | P_RALL)) != 0)
|
&& (options[opt_idx].flags & (P_CURSWANT | P_RALL)) != 0)
|
||||||
curwin->w_set_curswant = TRUE;
|
curwin->w_set_curswant = TRUE;
|
||||||
|
|
||||||
|
if ((opt_flags & OPT_NO_REDRAW) == 0)
|
||||||
check_redraw(options[opt_idx].flags);
|
check_redraw(options[opt_idx].flags);
|
||||||
|
|
||||||
return NULL;
|
return NULL;
|
||||||
@@ -3192,8 +3194,8 @@ set_num_option(
|
|||||||
long value, // new value
|
long value, // new value
|
||||||
char *errbuf, // buffer for error messages
|
char *errbuf, // buffer for error messages
|
||||||
size_t errbuflen, // length of "errbuf"
|
size_t errbuflen, // length of "errbuf"
|
||||||
int opt_flags) // OPT_LOCAL, OPT_GLOBAL and
|
int opt_flags) // OPT_LOCAL, OPT_GLOBAL,
|
||||||
// OPT_MODELINE
|
// OPT_MODELINE, etc.
|
||||||
{
|
{
|
||||||
char *errmsg = NULL;
|
char *errmsg = NULL;
|
||||||
long old_value = *(long *)varp;
|
long old_value = *(long *)varp;
|
||||||
@@ -3734,6 +3736,7 @@ set_num_option(
|
|||||||
if (curwin->w_curswant != MAXCOL
|
if (curwin->w_curswant != MAXCOL
|
||||||
&& (options[opt_idx].flags & (P_CURSWANT | P_RALL)) != 0)
|
&& (options[opt_idx].flags & (P_CURSWANT | P_RALL)) != 0)
|
||||||
curwin->w_set_curswant = TRUE;
|
curwin->w_set_curswant = TRUE;
|
||||||
|
if ((opt_flags & OPT_NO_REDRAW) == 0)
|
||||||
check_redraw(options[opt_idx].flags);
|
check_redraw(options[opt_idx].flags);
|
||||||
|
|
||||||
return errmsg;
|
return errmsg;
|
||||||
|
@@ -2461,11 +2461,14 @@ ambw_end:
|
|||||||
&& (get_option_flags(opt_idx) & (P_CURSWANT | P_RALL)) != 0)
|
&& (get_option_flags(opt_idx) & (P_CURSWANT | P_RALL)) != 0)
|
||||||
curwin->w_set_curswant = TRUE;
|
curwin->w_set_curswant = TRUE;
|
||||||
|
|
||||||
|
if ((opt_flags & OPT_NO_REDRAW) == 0)
|
||||||
|
{
|
||||||
#ifdef FEAT_GUI
|
#ifdef FEAT_GUI
|
||||||
// check redraw when it's not a GUI option or the GUI is active.
|
// check redraw when it's not a GUI option or the GUI is active.
|
||||||
if (!redraw_gui_only || gui.in_use)
|
if (!redraw_gui_only || gui.in_use)
|
||||||
#endif
|
#endif
|
||||||
check_redraw(get_option_flags(opt_idx));
|
check_redraw(get_option_flags(opt_idx));
|
||||||
|
}
|
||||||
|
|
||||||
#if defined(FEAT_VTP) && defined(FEAT_TERMGUICOLORS)
|
#if defined(FEAT_VTP) && defined(FEAT_TERMGUICOLORS)
|
||||||
if (did_swaptcap)
|
if (did_swaptcap)
|
||||||
|
@@ -1459,7 +1459,7 @@ almosttheend:
|
|||||||
si = SCRIPT_ITEM(current_sctx.sc_sid);
|
si = SCRIPT_ITEM(current_sctx.sc_sid);
|
||||||
if (si->sn_save_cpo != NULL)
|
if (si->sn_save_cpo != NULL)
|
||||||
{
|
{
|
||||||
set_option_value((char_u *)"cpo", 0L, si->sn_save_cpo, 0);
|
set_option_value((char_u *)"cpo", 0L, si->sn_save_cpo, OPT_NO_REDRAW);
|
||||||
VIM_CLEAR(si->sn_save_cpo);
|
VIM_CLEAR(si->sn_save_cpo);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
6
src/testdir/dumps/Test_vim9_no_redraw.dump
Normal file
6
src/testdir/dumps/Test_vim9_no_redraw.dump
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
|s+0&#ffffff0|o+0&#e0e0e08|m|e| |t|e|x|t| | +0&#ffffff0@64
|
||||||
|
|~+0#4040ff13&| @73
|
||||||
|
|~| @73
|
||||||
|
|~| @73
|
||||||
|
|~| @73
|
||||||
|
|:+0#0000000&|'|<|,|'|>> @68
|
@@ -5,6 +5,7 @@ source term_util.vim
|
|||||||
source view_util.vim
|
source view_util.vim
|
||||||
source vim9.vim
|
source vim9.vim
|
||||||
source shared.vim
|
source shared.vim
|
||||||
|
source screendump.vim
|
||||||
|
|
||||||
def Test_range_only()
|
def Test_range_only()
|
||||||
new
|
new
|
||||||
@@ -3338,6 +3339,36 @@ def Test_restoring_cpo()
|
|||||||
set cpo&vim
|
set cpo&vim
|
||||||
enddef
|
enddef
|
||||||
|
|
||||||
|
def Test_no_redraw_when_restoring_cpo()
|
||||||
|
CheckScreendump
|
||||||
|
|
||||||
|
var lines =<< trim END
|
||||||
|
vim9script
|
||||||
|
def script#func()
|
||||||
|
enddef
|
||||||
|
END
|
||||||
|
mkdir('Xdir/autoload', 'p')
|
||||||
|
writefile(lines, 'Xdir/autoload/script.vim')
|
||||||
|
|
||||||
|
lines =<< trim END
|
||||||
|
vim9script
|
||||||
|
set cpo+=M
|
||||||
|
exe 'set rtp^=' .. getcwd() .. '/Xdir'
|
||||||
|
au CmdlineEnter : ++once timer_start(0, () => script#func())
|
||||||
|
setline(1, 'some text')
|
||||||
|
END
|
||||||
|
writefile(lines, 'XTest_redraw_cpo')
|
||||||
|
var buf = RunVimInTerminal('-S XTest_redraw_cpo', {'rows': 6})
|
||||||
|
term_sendkeys(buf, "V:")
|
||||||
|
VerifyScreenDump(buf, 'Test_vim9_no_redraw', {})
|
||||||
|
|
||||||
|
# clean up
|
||||||
|
term_sendkeys(buf, "\<Esc>u")
|
||||||
|
StopVimInTerminal(buf)
|
||||||
|
delete('XTest_redraw_cpo')
|
||||||
|
delete('Xdir', 'rf')
|
||||||
|
enddef
|
||||||
|
|
||||||
|
|
||||||
def Test_unset_any_variable()
|
def Test_unset_any_variable()
|
||||||
var lines =<< trim END
|
var lines =<< trim END
|
||||||
|
@@ -750,6 +750,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
2581,
|
||||||
/**/
|
/**/
|
||||||
2580,
|
2580,
|
||||||
/**/
|
/**/
|
||||||
|
@@ -1200,6 +1200,7 @@ extern int (*dyn_libintl_wputenv)(const wchar_t *envstring);
|
|||||||
#define OPT_WINONLY 0x10 // only set window-local options
|
#define OPT_WINONLY 0x10 // only set window-local options
|
||||||
#define OPT_NOWIN 0x20 // don't set window-local options
|
#define OPT_NOWIN 0x20 // don't set window-local options
|
||||||
#define OPT_ONECOLUMN 0x40 // list options one per line
|
#define OPT_ONECOLUMN 0x40 // list options one per line
|
||||||
|
#define OPT_NO_REDRAW 0x80 // ignore redraw flags on option
|
||||||
|
|
||||||
// Magic chars used in confirm dialog strings
|
// Magic chars used in confirm dialog strings
|
||||||
#define DLG_BUTTON_SEP '\n'
|
#define DLG_BUTTON_SEP '\n'
|
||||||
|
@@ -75,7 +75,7 @@ ex_vim9script(exarg_T *eap UNUSED)
|
|||||||
if (STRCMP(p_cpo, CPO_VIM) != 0)
|
if (STRCMP(p_cpo, CPO_VIM) != 0)
|
||||||
{
|
{
|
||||||
si->sn_save_cpo = vim_strsave(p_cpo);
|
si->sn_save_cpo = vim_strsave(p_cpo);
|
||||||
set_option_value((char_u *)"cpo", 0L, (char_u *)CPO_VIM, 0);
|
set_option_value((char_u *)"cpo", 0L, (char_u *)CPO_VIM, OPT_NO_REDRAW);
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
// No check for this being the first command, it doesn't matter.
|
// No check for this being the first command, it doesn't matter.
|
||||||
|
Reference in New Issue
Block a user