summaryrefslogtreecommitdiffstats
path: root/runtime/optwin.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-04-21 14:05:23 +0200
committerBram Moolenaar <Bram@vim.org>2016-04-21 14:05:23 +0200
commit4694a17d1ec08382f996990a7fac1ac60197ec81 (patch)
tree6010c9cfe992d5c0b6e5879d47d98c7e7b301936 /runtime/optwin.vim
parentba53435144f46eaaa53c63a62e748b3feee9742c (diff)
patch 7.4.1765v7.4.1765
Problem: Undo options are not together in the options window. Solution: Put them together. (Gary Johnson)
Diffstat (limited to 'runtime/optwin.vim')
-rw-r--r--runtime/optwin.vim8
1 files changed, 4 insertions, 4 deletions
diff --git a/runtime/optwin.vim b/runtime/optwin.vim
index 368eb09dd6..b88f3017c1 100644
--- a/runtime/optwin.vim
+++ b/runtime/optwin.vim
@@ -738,6 +738,10 @@ call <SID>Header("editing text")
call append("$", "undolevels\tmaximum number of changes that can be undone")
call append("$", "\t(global or local to buffer)")
call append("$", " \tset ul=" . &ul)
+call append("$", "undofile\tautomatically save and restore undo history")
+call <SID>BinOptionG("udf", &udf)
+call append("$", "undodir\tlist of directories for undo files")
+call <SID>OptionG("udir", &udir)
call append("$", "undoreload\tmaximum number lines to save for undo on a buffer reload")
call append("$", " \tset ur=" . &ur)
call append("$", "modified\tchanges have been made and not written to a file")
@@ -1074,10 +1078,6 @@ if has("vertsplit")
call append("$", "cmdwinheight\theight of the command-line window")
call <SID>OptionG("cwh", &cwh)
endif
-call append("$", "undofile\tautomatically save and restore undo history")
-call <SID>BinOptionG("udf", &udf)
-call append("$", "undodir\tlist of directories for undo files")
-call <SID>OptionG("udir", &udir)
call <SID>Header("executing external commands")