diff --git a/runtime/optwin.vim b/runtime/optwin.vim index 538b44dad0428..c0f942ba918bd 100644 --- a/runtime/optwin.vim +++ b/runtime/optwin.vim @@ -1,7 +1,7 @@ " These commands create the option window. " " Maintainer: The Vim Project -" Last Change: 2025 Sep 22 +" Last Change: 2025-09-30 " Former Maintainer: Bram Moolenaar " If there already is an option window, jump to that one. @@ -373,7 +373,7 @@ call AddOption("sidescrolloff", gettext("minimal number of columns to keep call append("$", " \tset siso=" . &siso) call AddOption("display", gettext("include \"lastline\" to show the last line even if it doesn't fit\ninclude \"uhex\" to show unprintable characters as a hex number")) call OptionG("dy", &dy) -call AddOption("fillchars", gettext("characters to use for the status line, folds, diffs, buffer text, filler lines and truncation in the completion menu")) +call AddOption("fillchars", gettext("characters to use for the status line, folds, diffs,\nbuffer text, filler lines and truncation in the completion menu")) call OptionG("fcs", &fcs) call AddOption("cmdheight", gettext("number of lines used for the command-line")) call append("$", " \tset ch=" . &ch) @@ -689,7 +689,7 @@ if has("gui") call append("$", " \tset ghr=" . &ghr) endif if has("gui_gtk") || has("gui_win32") - call AddOption("guiligatures", gettext("list of ASCII characters that can be combined into complex shapes")) + call AddOption("guiligatures", gettext("list of ASCII characters that can be combined into complex\nshapes")) call OptionG("gli", &gli) endif if has("directx") @@ -699,7 +699,7 @@ if has("gui") call AddOption("guipty", gettext("use a pseudo-tty for I/O to external commands")) call BinOptionG("guipty", &guipty) if has("browse") - call AddOption("browsedir", gettext("\"last\", \"buffer\" or \"current\": which directory used for the file browser")) + call AddOption("browsedir", gettext("\"last\", \"buffer\" or \"current\": which directory used for\nthe file browser")) call OptionG("bsdir", &bsdir) endif if has("multi_lang") @@ -722,7 +722,7 @@ if has("gui") call BinOptionG("beval", &beval) endif if has("balloon_eval_term") - call AddOption("balloonevalterm", gettext("use balloon evaluation in the terminal")) + call AddOption("balloonevalterm", gettext(" \nuse balloon evaluation in the terminal")) call BinOptionG("bevalterm", &beval) endif if has("eval") @@ -878,17 +878,17 @@ if has("insert_expand") call AddOption("autocomplete", gettext("automatic completion in insert mode")) call append("$", "\t" .. s:global_or_local) call BinOptionG("ac", &ac) - call AddOption("autocompletetimeout", gettext("initial decay timeout for 'autocomplete' algorithm")) + call AddOption("autocompletetimeout", gettext(" \ninitial decay timeout for 'autocomplete' algorithm")) call append("$", " \tset act=" . &act) - call AddOption("completetimeout", gettext("initial decay timeout for CTRL-N and CTRL-P completion")) + call AddOption("completetimeout", gettext(" \ninitial decay timeout for CTRL-N and CTRL-P completion")) call append("$", " \tset cto=" . &cto) - call AddOption("autocompletedelay", gettext("delay in msec before menu appears after typing")) + call AddOption("autocompletedelay", gettext(" \ndelay in msec before menu appears after typing")) call append("$", " \tset acl=" . &acl) call AddOption("completeopt", gettext("whether to use a popup menu for Insert mode completion")) call OptionL("cot") - call AddOption("completeitemalign", gettext("popup menu item align order")) + call AddOption("completeitemalign", gettext(" \npopup menu item align order")) call OptionG("cia", &cia) - call AddOption("completefuzzycollect", gettext("use fuzzy collection for specific completion modes")) + call AddOption("completefuzzycollect", gettext(" \nuse fuzzy collection for specific completion modes")) call OptionL("cfc") if exists("+completepopup") call AddOption("completepopup", gettext("options for the Insert mode completion info popup")) @@ -1266,7 +1266,7 @@ if has("quickfix") call AddOption("makeencoding", gettext("encoding of the \":make\" and \":grep\" output")) call append("$", "\t" .. s:global_or_local) call OptionG("menc", &menc) - call AddOption("quickfixtextfunc", gettext("function to display text in the quickfix window")) + call AddOption("quickfixtextfunc", gettext(" \nfunction to display text in the quickfix window")) call OptionG("qftf", &qftf) endif @@ -1468,7 +1468,7 @@ if exists("&pythonthreedll") call OptionG("pythonthreedll", &pythonthreedll) endif if exists("&pythonthreehome") - call AddOption("pythonthreehome", gettext("name of the Python 3 home directory")) + call AddOption("pythonthreehome", gettext(" \nname of the Python 3 home directory")) call OptionG("pythonthreehome", &pythonthreehome) endif if exists("&rubydll")