diff options
author | Bram Moolenaar <Bram@vim.org> | 2012-05-18 18:47:17 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2012-05-18 18:47:17 +0200 |
commit | bd1d5608952dd1c61f99f9b2f605610405415622 (patch) | |
tree | 20c04b0c33df0d916164a1193c6db3a3419d11ed /src/ex_cmds.h | |
parent | 455981e69bcef65ef96ecf6b0a27810b585fc9d9 (diff) | |
download | vim-git-bd1d5608952dd1c61f99f9b2f605610405415622.tar.gz |
updated for version 7.3.523v7.3.523
Problem: ":diffupdate" doesn't check for files changed elsewhere.
Solution: Add the ! flag. (Christian Brabandt)
Diffstat (limited to 'src/ex_cmds.h')
-rw-r--r-- | src/ex_cmds.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ex_cmds.h b/src/ex_cmds.h index 16540bda0..ac61f1a0a 100644 --- a/src/ex_cmds.h +++ b/src/ex_cmds.h @@ -304,7 +304,7 @@ EX(CMD_delfunction, "delfunction", ex_delfunction, EX(CMD_display, "display", ex_display, EXTRA|NOTRLCOM|TRLBAR|SBOXOK|CMDWIN), EX(CMD_diffupdate, "diffupdate", ex_diffupdate, - TRLBAR), + BANG|TRLBAR), EX(CMD_diffget, "diffget", ex_diffgetput, RANGE|EXTRA|TRLBAR|MODIFY), EX(CMD_diffoff, "diffoff", ex_diffoff, |