summaryrefslogtreecommitdiffstats
path: root/src/ex_cmds.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-08-29 18:16:32 +0100
committerBram Moolenaar <Bram@vim.org>2022-08-29 18:16:32 +0100
commit37fef16c225eabed28a3c7a0542d2eeef30d812b (patch)
tree57bebcbc858d18cb593d625d7eb659eb8f3a3c7a /src/ex_cmds.h
parent54acb90d9e672315e3bd13f8dc71f828df97c868 (diff)
patch 9.0.0321: cannot use the message popup window directlyv9.0.0321
Problem: Cannot use the message popup window directly. Solution: Add ":echowindow".
Diffstat (limited to 'src/ex_cmds.h')
-rw-r--r--src/ex_cmds.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ex_cmds.h b/src/ex_cmds.h
index b8cf41d44c..3ebbf232b6 100644
--- a/src/ex_cmds.h
+++ b/src/ex_cmds.h
@@ -548,6 +548,9 @@ EXCMD(CMD_echoconsole, "echoconsole", ex_execute,
EXCMD(CMD_echon, "echon", ex_echo,
EX_EXTRA|EX_NOTRLCOM|EX_EXPR_ARG|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK,
ADDR_NONE),
+EXCMD(CMD_echowindow, "echowindow", ex_execute,
+ EX_EXTRA|EX_NOTRLCOM|EX_EXPR_ARG|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK,
+ ADDR_NONE),
EXCMD(CMD_else, "else", ex_else,
EX_TRLBAR|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK|EX_WHOLE,
ADDR_NONE),