0
0
mirror of https://github.com/vim/vim.git synced 2025-09-25 03:54:15 -04:00

patch 8.2.2236: 'scroll' option can change when setting the statusline

Problem:    'scroll' option can change when setting the statusline or tabline
            but the option context is not updated.
Solution:   Update the script context when the scroll option is changed as a
            side effect. (Christian Brabandt, closes #7533)
This commit is contained in:
Bram Moolenaar
2020-12-28 15:41:41 +01:00
parent dace9f785f
commit 746670604a
6 changed files with 39 additions and 1 deletions

View File

@@ -1553,6 +1553,7 @@ scriptnames_slash_adjust(void)
/*
* Get a pointer to a script name. Used for ":verbose set".
* Message appended to "Last set from "
*/
char_u *
get_scriptname(scid_T id)
@@ -1567,6 +1568,8 @@ get_scriptname(scid_T id)
return (char_u *)_("environment variable");
if (id == SID_ERROR)
return (char_u *)_("error handler");
if (id == SID_WINLAYOUT)
return (char_u *)_("changed window size");
return SCRIPT_ITEM(id)->sn_name;
}