diff options
author | Bram Moolenaar <Bram@vim.org> | 2012-11-14 20:52:28 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2012-11-14 20:52:28 +0100 |
commit | b826ddb034564828487b0ef94f271262bb902f7c (patch) | |
tree | de2374c515984a83b25f2547a4dace0e540a927c /src/ex_cmds.h | |
parent | 3ab72c5c72fb824da0e9c850479052d6f8c78e52 (diff) | |
download | vim-git-b826ddb034564828487b0ef94f271262bb902f7c.tar.gz |
updated for version 7.3.714v7.3.714
Problem: Inconsistency: :set can be used in the sandbox, but :setlocal and
:setglobal cannot. (Michael Henry)
Solution: Fix the flags for :setlocal and :setglobal. (Christian Brabandt)
Diffstat (limited to 'src/ex_cmds.h')
-rw-r--r-- | src/ex_cmds.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ex_cmds.h b/src/ex_cmds.h index c81a1aa2b..b02b9f6c7 100644 --- a/src/ex_cmds.h +++ b/src/ex_cmds.h @@ -832,9 +832,9 @@ EX(CMD_set, "set", ex_set, EX(CMD_setfiletype, "setfiletype", ex_setfiletype, TRLBAR|EXTRA|NEEDARG|CMDWIN), EX(CMD_setglobal, "setglobal", ex_set, - TRLBAR|EXTRA|CMDWIN), + TRLBAR|EXTRA|CMDWIN|SBOXOK), EX(CMD_setlocal, "setlocal", ex_set, - TRLBAR|EXTRA|CMDWIN), + TRLBAR|EXTRA|CMDWIN|SBOXOK), EX(CMD_sfind, "sfind", ex_splitview, BANG|FILE1|RANGE|NOTADR|EDITCMD|ARGOPT|TRLBAR), EX(CMD_sfirst, "sfirst", ex_rewind, |