0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

patch 8.2.2074: Vim9: using :normal from Vim9 script can't handle range

Problem:    Vim9: using :normal from Vim9 script can't handle range.
Solution:   Execute a :normal command in legacy script context. (closes #7401)
This commit is contained in:
Bram Moolenaar
2020-12-01 20:12:24 +01:00
parent 4b8a065145
commit 4324d87a44
4 changed files with 22 additions and 3 deletions

View File

@@ -4155,6 +4155,7 @@ typedef struct {
int save_finish_op;
int save_opcount;
int save_reg_executing;
int save_script_version;
tasave_T tabuf;
} save_state_T;