summaryrefslogtreecommitdiffstats
path: root/src/ex_cmds.h
diff options
context:
space:
mode:
authorJulio B <julio.bacel@gmail.com>2023-06-01 12:45:22 +0100
committerBram Moolenaar <Bram@vim.org>2023-06-01 12:45:22 +0100
commiteb43b7f0531bd13d15580b5c262a25d6a52a0823 (patch)
treeef402ff448abb959f4f798ac56dc4874adde8895 /src/ex_cmds.h
parente84c773d42e8b6ef0f8ae9b6c7312e0fd47909af (diff)
patch 9.0.1596: :registers command does not work in sandboxv9.0.1596
Problem: :registers command does not work in sandbox. Solution: Add flag to the command. (closes #12473)
Diffstat (limited to 'src/ex_cmds.h')
-rw-r--r--src/ex_cmds.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ex_cmds.h b/src/ex_cmds.h
index 325fee569b..af13510492 100644
--- a/src/ex_cmds.h
+++ b/src/ex_cmds.h
@@ -1286,7 +1286,7 @@ EXCMD(CMD_redrawtabline, "redrawtabline", ex_redrawtabline,
EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK,
ADDR_NONE),
EXCMD(CMD_registers, "registers", ex_display,
- EX_EXTRA|EX_NOTRLCOM|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK,
+ EX_EXTRA|EX_NOTRLCOM|EX_TRLBAR|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK,
ADDR_NONE),
EXCMD(CMD_resize, "resize", ex_resize,
EX_RANGE|EX_TRLBAR|EX_WORD1|EX_CMDWIN|EX_LOCK_OK,