comparison src/vim9.h @ 22691:dda110a14be4 v8.2.1894

patch 8.2.1894: Vim9: command modifiers are not supported Commit: https://github.com/vim/vim/commit/f4c6e1e75c2a7f2ca3a7f4529e7da31dc98557e9 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Oct 23 18:02:32 2020 +0200 patch 8.2.1894: Vim9: command modifiers are not supported Problem: Vim9: command modifiers are not supported. Solution: Support "silent" and "silent!".
author Bram Moolenaar <Bram@vim.org>
date Fri, 23 Oct 2020 18:15:03 +0200
parents 4d4042683371
children f2bfee4ac356
comparison
equal deleted inserted replaced
22690:3b5c9b442a73 22691:dda110a14be4
139 ISN_CHECKNR, // check value can be used as a number 139 ISN_CHECKNR, // check value can be used as a number
140 ISN_CHECKTYPE, // check value type is isn_arg.type.tc_type 140 ISN_CHECKTYPE, // check value type is isn_arg.type.tc_type
141 ISN_CHECKLEN, // check list length is isn_arg.checklen.cl_min_len 141 ISN_CHECKLEN, // check list length is isn_arg.checklen.cl_min_len
142 142
143 ISN_PUT, // ":put", uses isn_arg.put 143 ISN_PUT, // ":put", uses isn_arg.put
144
145 ISN_SILENT, // set msg_silent or emsg_silent if arg_number is non-zero
146 ISN_UNSILENT, // undo ISN_SILENT
144 147
145 ISN_SHUFFLE, // move item on stack up or down 148 ISN_SHUFFLE, // move item on stack up or down
146 ISN_DROP // pop stack and discard value 149 ISN_DROP // pop stack and discard value
147 } isntype_T; 150 } isntype_T;
148 151