diff src/scriptfile.c @ 23386:3105546b941f v8.2.2236

patch 8.2.2236: 'scroll' option can change when setting the statusline Commit: https://github.com/vim/vim/commit/746670604a60cb0356b56c112ffb6d297c679099 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Dec 28 15:41:41 2020 +0100 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)
author Bram Moolenaar <Bram@vim.org>
date Mon, 28 Dec 2020 15:45:03 +0100
parents 2f8aaa8f71dc
children 9a5f12b36273
line wrap: on
line diff
--- a/src/scriptfile.c
+++ b/src/scriptfile.c
@@ -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;
 }