comparison runtime/optwin.vim @ 8958:12392eb2923a v7.4.1765

commit https://github.com/vim/vim/commit/4694a17d1ec08382f996990a7fac1ac60197ec81 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Apr 21 14:05:23 2016 +0200 patch 7.4.1765 Problem: Undo options are not together in the options window. Solution: Put them together. (Gary Johnson)
author Christian Brabandt <cb@256bit.org>
date Thu, 21 Apr 2016 14:15:06 +0200
parents ed7251c3e2d3
children b4be6f6610a0
comparison
equal deleted inserted replaced
8957:8ef5306300e5 8958:12392eb2923a
736 736
737 call <SID>Header("editing text") 737 call <SID>Header("editing text")
738 call append("$", "undolevels\tmaximum number of changes that can be undone") 738 call append("$", "undolevels\tmaximum number of changes that can be undone")
739 call append("$", "\t(global or local to buffer)") 739 call append("$", "\t(global or local to buffer)")
740 call append("$", " \tset ul=" . &ul) 740 call append("$", " \tset ul=" . &ul)
741 call append("$", "undofile\tautomatically save and restore undo history")
742 call <SID>BinOptionG("udf", &udf)
743 call append("$", "undodir\tlist of directories for undo files")
744 call <SID>OptionG("udir", &udir)
741 call append("$", "undoreload\tmaximum number lines to save for undo on a buffer reload") 745 call append("$", "undoreload\tmaximum number lines to save for undo on a buffer reload")
742 call append("$", " \tset ur=" . &ur) 746 call append("$", " \tset ur=" . &ur)
743 call append("$", "modified\tchanges have been made and not written to a file") 747 call append("$", "modified\tchanges have been made and not written to a file")
744 call append("$", "\t(local to buffer)") 748 call append("$", "\t(local to buffer)")
745 call <SID>BinOptionL("mod") 749 call <SID>BinOptionL("mod")
1072 call append("$", "cedit\tkey used to open the command-line window") 1076 call append("$", "cedit\tkey used to open the command-line window")
1073 call <SID>OptionG("cedit", &cedit) 1077 call <SID>OptionG("cedit", &cedit)
1074 call append("$", "cmdwinheight\theight of the command-line window") 1078 call append("$", "cmdwinheight\theight of the command-line window")
1075 call <SID>OptionG("cwh", &cwh) 1079 call <SID>OptionG("cwh", &cwh)
1076 endif 1080 endif
1077 call append("$", "undofile\tautomatically save and restore undo history")
1078 call <SID>BinOptionG("udf", &udf)
1079 call append("$", "undodir\tlist of directories for undo files")
1080 call <SID>OptionG("udir", &udir)
1081 1081
1082 1082
1083 call <SID>Header("executing external commands") 1083 call <SID>Header("executing external commands")
1084 call append("$", "shell\tname of the shell program used for external commands") 1084 call append("$", "shell\tname of the shell program used for external commands")
1085 call <SID>OptionG("sh", &sh) 1085 call <SID>OptionG("sh", &sh)