diff src/map.c @ 19870:658248b68f7c v8.2.0491

patch 8.2.0491: cannot recognize a <script> mapping using maparg() Commit: https://github.com/vim/vim/commit/2da0f0c445da3c9b35b2a0cd595d10e81ad2a6f9 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Apr 1 19:22:12 2020 +0200 patch 8.2.0491: cannot recognize a <script> mapping using maparg() Problem: Cannot recognize a <script> mapping using maparg(). Solution: Add the "script" key. (closes https://github.com/vim/vim/issues/5873)
author Bram Moolenaar <Bram@vim.org>
date Wed, 01 Apr 2020 19:30:04 +0200
parents f7081bd2680e
children aadd1cae2ff5
line wrap: on
line diff
--- a/src/map.c
+++ b/src/map.c
@@ -2200,6 +2200,8 @@ get_maparg(typval_T *argvars, typval_T *
 	dict_add_string(dict, "lhs", lhs);
 	dict_add_string(dict, "rhs", mp->m_orig_str);
 	dict_add_number(dict, "noremap", mp->m_noremap ? 1L : 0L);
+	dict_add_number(dict, "script", mp->m_noremap == REMAP_SCRIPT
+								    ? 1L : 0L);
 	dict_add_number(dict, "expr", mp->m_expr ? 1L : 0L);
 	dict_add_number(dict, "silent", mp->m_silent ? 1L : 0L);
 	dict_add_number(dict, "sid", (long)mp->m_script_ctx.sc_sid);