From fdb0a5e24eb7fab77ae0d206a00c07b48414a481 Mon Sep 17 00:00:00 2001 From: Shougo Matsushita Date: Tue, 4 Oct 2016 23:15:16 +0900 Subject: vim-patch:7.4.1765 Problem: Undo options are not together in the options window. Solution: Put them together. (Gary Johnson) https://github.com/vim/vim/commit/4694a17d1ec08382f996990a7fac1ac60197ec81 --- runtime/optwin.vim | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'runtime') diff --git a/runtime/optwin.vim b/runtime/optwin.vim index 890c183a5a..2ad87d1062 100644 --- a/runtime/optwin.vim +++ b/runtime/optwin.vim @@ -710,6 +710,10 @@ call 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 BinOptionG("udf", &udf) +call append("$", "undodir\tlist of directories for undo files") +call 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") @@ -1032,10 +1036,6 @@ if has("vertsplit") call append("$", "cmdwinheight\theight of the command-line window") call OptionG("cwh", &cwh) endif -call append("$", "undofile\tautomatically save and restore undo history") -call BinOptionG("udf", &udf) -call append("$", "undodir\tlist of directories for undo files") -call OptionG("udir", &udir) call Header("executing external commands") -- cgit