diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-05-23 23:34:36 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-05-23 23:34:36 +0200 |
commit | 55debbe38429b81c0ce6e8400aef36812eb151d7 (patch) | |
tree | 992320729b697015fb4b99e9f8645cffe2eeddd6 /src/feature.h | |
parent | c39125d7c45d17566665c06358501073ea9c4141 (diff) | |
download | vim-git-55debbe38429b81c0ce6e8400aef36812eb151d7.tar.gz |
Included patch for persistent undo. Lots of changes and added test.
Diffstat (limited to 'src/feature.h')
-rw-r--r-- | src/feature.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/feature.h b/src/feature.h index 6b8f600ec..61fe3345b 100644 --- a/src/feature.h +++ b/src/feature.h @@ -1275,3 +1275,11 @@ || defined(FEAT_BIG) # define FEAT_AUTOCHDIR #endif + +/* + * +persistent_undo 'undofile', 'undodir' options, :wundo and :rundo, and + * implementation. + */ +#ifdef FEAT_NORMAL +# define FEAT_PERSISTENT_UNDO +#endif |