comparison src/vim9.h @ 19528:3b026343f398 v8.2.0321

patch 8.2.0321: Vim9: ":execute" does not work yet Commit: https://github.com/vim/vim/commit/ad39c094d261109a695aba2c4f19fe336736cc55 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Feb 26 18:23:43 2020 +0100 patch 8.2.0321: Vim9: ":execute" does not work yet Problem: Vim9: ":execute" does not work yet. Solution: Add ISN_EXECUTE. (closes https://github.com/vim/vim/issues/5699) Also make :echo work with more than one argument.
author Bram Moolenaar <Bram@vim.org>
date Wed, 26 Feb 2020 18:30:04 +0100
parents 61646c189622
children 8eeec8886c02
comparison
equal deleted inserted replaced
19527:b4e703999a84 19528:3b026343f398
11 * vim9.h: types and globals used for Vim9 script. 11 * vim9.h: types and globals used for Vim9 script.
12 */ 12 */
13 13
14 typedef enum { 14 typedef enum {
15 ISN_EXEC, // execute Ex command line isn_arg.string 15 ISN_EXEC, // execute Ex command line isn_arg.string
16 ISN_ECHO, // echo isn_arg.number items on top of stack 16 ISN_ECHO, // echo isn_arg.echo.echo_count items on top of stack
17 ISN_EXECUTE, // execute Ex commands isn_arg.number items on top of stack
17 18
18 // get and set variables 19 // get and set variables
19 ISN_LOAD, // push local variable isn_arg.number 20 ISN_LOAD, // push local variable isn_arg.number
20 ISN_LOADV, // push v: variable isn_arg.number 21 ISN_LOADV, // push v: variable isn_arg.number
21 ISN_LOADG, // push g: variable isn_arg.string 22 ISN_LOADG, // push g: variable isn_arg.string