summaryrefslogtreecommitdiff
path: root/src/structs.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2014-03-23 16:04:02 +0100
committerBram Moolenaar <Bram@vim.org>2014-03-23 16:04:02 +0100
commit5803ae6c076b1d61381afe27fcdedac61dd2cda9 (patch)
treed900239b97e5126bf6ae85fb0a9b05a531dcc7b8 /src/structs.h
parentf7ff6e85e8a4e84cff023f5db4b66ef85986605a (diff)
downloadvim-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/structs.h')
-rw-r--r--src/structs.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/structs.h b/src/structs.h
index 7a3d69219..9bb35ceec 100644
--- a/src/structs.h
+++ b/src/structs.h
@@ -545,6 +545,7 @@ typedef struct
int keepjumps; /* TRUE when ":keepjumps" was used */
int lockmarks; /* TRUE when ":lockmarks" was used */
int keeppatterns; /* TRUE when ":keeppatterns" was used */
+ int noswapfile; /* TRUE when ":noswapfile" was used */
# ifdef FEAT_AUTOCMD
char_u *save_ei; /* saved value of 'eventignore' */
# endif