summaryrefslogtreecommitdiffstats
path: root/runtime/optwin.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-10-23 12:08:41 +0100
committerBram Moolenaar <Bram@vim.org>2021-10-23 12:08:41 +0100
commit079ba76ae7a7d0ef404cb9b41dff2663ff41f51b (patch)
tree975998b23597d8317debcd6c6ffc3fda5185a6d0 /runtime/optwin.vim
parent06ca48a40f049f20347c9630a180457d1f1aece5 (diff)
Update runtime files
Diffstat (limited to 'runtime/optwin.vim')
-rw-r--r--runtime/optwin.vim7
1 files changed, 6 insertions, 1 deletions
diff --git a/runtime/optwin.vim b/runtime/optwin.vim
index 176f9eafc8..5d178809d1 100644
--- a/runtime/optwin.vim
+++ b/runtime/optwin.vim
@@ -1,7 +1,7 @@
" These commands create the option window.
"
" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2020 Oct 27
+" Last Change: 2021 Oct 17
" If there already is an option window, jump to that one.
let buf = bufnr('option-window')
@@ -652,6 +652,8 @@ if has("gui")
endif
call <SID>AddOption("guiheadroom", gettext("room (in pixels) left above/below the window"))
call append("$", " \tset ghr=" . &ghr)
+ call <SID>AddOption("guiligatures", gettext("list of ASCII characters that can be combined into complesshapes"))
+ call <SID>OptionG("gli", &gli)
endif
if has("directx")
call <SID>AddOption("renderoptions", gettext("options for text rendering"))
@@ -840,6 +842,9 @@ if has("insert_expand")
call <SID>AddOption("thesaurus", gettext("list of thesaurus files for keyword completion"))
call append("$", "\t" .. s:global_or_local)
call <SID>OptionG("tsr", &tsr)
+ call <SID>AddOption("thesaurusfunc", gettext("function used for thesaurus completion"))
+ call append("$", "\t" .. s:global_or_local)
+ call <SID>OptionG("tsrfu", &tsrfu)
endif
call <SID>AddOption("infercase", gettext("adjust case of a keyword completion match"))
call append("$", "\t" .. s:local_to_buffer)