Patch 7.4.1765 Problem: Undo options are not together in the options window. Solution: Put them together. (Gary Johnson) Files: runtime/optwin.vim
*** ../vim-7.4.1764/runtime/optwin.vim 2016-03-19 18:21:30.322003282 +0100 --- runtime/optwin.vim 2016-04-21 14:03:07.356487571 +0200 *************** *** 1,7 **** " These commands create the option window. " " Maintainer: Bram Moolenaar <[email protected]> ! " Last Change: 2016 Feb 21 " If there already is an option window, jump to that one. if bufwinnr("option-window") > 0 --- 1,7 ---- " These commands create the option window. " " Maintainer: Bram Moolenaar <[email protected]> ! " Last Change: 2016 Apr 21 " If there already is an option window, jump to that one. if bufwinnr("option-window") > 0 *************** *** 738,743 **** --- 738,747 ---- 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,1083 **** 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") --- 1078,1083 ---- *** ../vim-7.4.1764/src/version.c 2016-04-21 12:52:26.123916236 +0200 --- src/version.c 2016-04-21 14:04:32.439612917 +0200 *************** *** 750,751 **** --- 750,753 ---- { /* Add new patch number below this line */ + /**/ + 1765, /**/ -- `When any government, or any church for that matter, undertakes to say to its subjects, "This you may not read, this you must not see, this you are forbidden to know," the end result is tyranny and oppression no matter how holy the motives' -- Robert A Heinlein, "If this goes on --" /// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ an exciting new programming language -- http://www.Zimbu.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
