]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
runtime(optwin): show 'guiligatures' option also on MS-Windows builds
authorRestorerZ <restorer@mail2k.ru>
Thu, 3 Jul 2025 18:27:37 +0000 (20:27 +0200)
committerChristian Brabandt <cb@256bit.org>
Thu, 3 Jul 2025 18:27:37 +0000 (20:27 +0200)
closes: #17650

Signed-off-by: RestorerZ <restorer@mail2k.ru>
Signed-off-by: Christian Brabandt <cb@256bit.org>
runtime/optwin.vim

index 5e7d87ac2077e67d5c8e87f89f52b2be4e233cc0..91974570ec13a5c7f0ec4693eaf1aecbcd9999bf 100644 (file)
@@ -1,7 +1,7 @@
 " These commands create the option window.
 "
 " Maintainer:  The Vim Project <https://github.com/vim/vim>
-" Last Change: 2025 Jun 16
+" Last Change: 2025 Jul 02
 " Former Maintainer:   Bram Moolenaar <Bram@vim.org>
 
 " If there already is an option window, jump to that one.
@@ -684,6 +684,8 @@ if has("gui")
     endif
     call <SID>AddOption("guiheadroom", gettext("room (in pixels) left above/below the window"))
     call append("$", " \tset ghr=" . &ghr)
+  endif
+  if has("gui_gtk") || has("gui_win32")
     call <SID>AddOption("guiligatures", gettext("list of ASCII characters that can be combined into complex shapes"))
     call <SID>OptionG("gli", &gli)
   endif