comparison runtime/doc/options.txt @ 2214:f8222d1f9a73 vim73

Included patch for persistent undo. Lots of changes and added test.
author Bram Moolenaar <bram@vim.org>
date Sun, 23 May 2010 23:34:36 +0200
parents d0ddf7ba1630
children 695ceebf17ca
comparison
equal deleted inserted replaced
2213:0e0e99d1092e 2214:f8222d1f9a73
7218 *'ttytype'* *'tty'* 7218 *'ttytype'* *'tty'*
7219 'ttytype' 'tty' string (default from $TERM) 7219 'ttytype' 'tty' string (default from $TERM)
7220 global 7220 global
7221 Alias for 'term', see above. 7221 Alias for 'term', see above.
7222 7222
7223 *'undodir'* *'udir'*
7224 'undodir' 'udir' string (default ".")
7225 global
7226 {not in Vi}
7227 {only when compiled with the +persistent_undo feature}
7228 List of directory names for undo files, separated with commas.
7229 See |'backupdir'| for the format. Specifically, "." means using the
7230 directory of the file.
7231 When writing: The first directory that exists is used. "." always
7232 works, no directories after "." will be used for writing.
7233 When reading all entries are tried to find an undo file. The first
7234 undo file that exists is used. When it cannot be read an error is
7235 given, no further entry is used.
7236 See |undo-persistence|.
7237
7238 *'undofile'* *'udf'*
7239 'undofile' 'udf' boolean (default off)
7240 local to buffer
7241 {not in Vi}
7242 {only when compiled with the +persistent_undo feature}
7243 When on, Vim automatically saves undo history to an undo file when
7244 writing a buffer to a file, and restores undo history from the same
7245 file on buffer read.
7246 The name of the undo file is specified by 'undodir'.
7247 See |undo-persistence|.
7248 WARNING: this is a very new feature. Use at your own risc!
7249
7223 *'undolevels'* *'ul'* 7250 *'undolevels'* *'ul'*
7224 'undolevels' 'ul' number (default 100, 1000 for Unix, VMS, 7251 'undolevels' 'ul' number (default 100, 1000 for Unix, VMS,
7225 Win32 and OS/2) 7252 Win32 and OS/2)
7226 global 7253 global
7227 {not in Vi} 7254 {not in Vi}