summaryrefslogtreecommitdiffstats
path: root/src/misc1.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-10-02 16:55:39 +0100
committerBram Moolenaar <Bram@vim.org>2021-10-02 16:55:39 +0100
commitd85931e67316e824878000d0ead122553ccef3a4 (patch)
treea64477761d5b3916f0d4ac1dd9aee62a70a1f673 /src/misc1.c
parent72406a4bd2896915b6f541e26d41521a59b1f846 (diff)
patch 8.2.3462: ModeChanged only uses one character for new_mode and old_modev8.2.3462
Problem: The ModeChanged event only uses one character for the new_mode and old_mode values. Solution: Pass one as first argument to mode(). (issue #8856)
Diffstat (limited to 'src/misc1.c')
-rw-r--r--src/misc1.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/misc1.c b/src/misc1.c
index b4a4a8cc75..8e21f1ec91 100644
--- a/src/misc1.c
+++ b/src/misc1.c
@@ -2657,7 +2657,7 @@ trigger_modechanged()
#if defined(FEAT_EVAL) || defined(PROTO)
dict_T *v_event;
typval_T rettv;
- typval_T tv;
+ typval_T tv[2];
char_u *pat_pre;
char_u *pat;
@@ -2666,8 +2666,10 @@ trigger_modechanged()
v_event = get_vim_var_dict(VV_EVENT);
- tv.v_type = VAR_UNKNOWN;
- f_mode(&tv, &rettv);
+ tv[0].v_type = VAR_NUMBER;
+ tv[0].vval.v_number = 1; // get full mode
+ tv[1].v_type = VAR_UNKNOWN;
+ f_mode(tv, &rettv);
(void)dict_add_string(v_event, "new_mode", rettv.vval.v_string);
(void)dict_add_string(v_event, "old_mode", last_mode);
dict_set_items_ro(v_event);