diff options
author | Bram Moolenaar <Bram@vim.org> | 2014-03-23 16:04:02 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2014-03-23 16:04:02 +0100 |
commit | 5803ae6c076b1d61381afe27fcdedac61dd2cda9 (patch) | |
tree | d900239b97e5126bf6ae85fb0a9b05a531dcc7b8 /src/ex_cmds.h | |
parent | f7ff6e85e8a4e84cff023f5db4b66ef85986605a (diff) | |
download | vim-git-5803ae6c076b1d61381afe27fcdedac61dd2cda9.tar.gz |
updated for version 7.4.213v7.4.213
Problem: It's not possible to open a new buffer without creating a swap
file.
Solution: Add the ":noswapfile" modifier. (Christian Brabandt)
Diffstat (limited to 'src/ex_cmds.h')
-rw-r--r-- | src/ex_cmds.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ex_cmds.h b/src/ex_cmds.h index fc3763c08..41d3a642d 100644 --- a/src/ex_cmds.h +++ b/src/ex_cmds.h @@ -655,6 +655,8 @@ EX(CMD_noreabbrev, "noreabbrev", ex_abbreviate, EXTRA|TRLBAR|NOTRLCOM|USECTRLV|CMDWIN), EX(CMD_noremenu, "noremenu", ex_menu, RANGE|NOTADR|ZEROR|BANG|EXTRA|TRLBAR|NOTRLCOM|USECTRLV|CMDWIN), +EX(CMD_noswapfile, "noswapfile", ex_wrongmodifier, + NEEDARG|EXTRA|NOTRLCOM), EX(CMD_normal, "normal", ex_normal, RANGE|BANG|EXTRA|NEEDARG|NOTRLCOM|USECTRLV|SBOXOK|CMDWIN), EX(CMD_number, "number", ex_print, |