runtime(optwin): show 'guiligatures' option also on MS-Windows builds Commit: https://github.com/vim/vim/commit/29ebebd3437a501e5ed768a1f2773e267e248963 Author: RestorerZ <resto...@mail2k.ru> Date: Thu Jul 3 20:27:37 2025 +0200
runtime(optwin): show 'guiligatures' option also on MS-Windows builds closes: https://github.com/vim/vim/issues/17650 Signed-off-by: RestorerZ <resto...@mail2k.ru> Signed-off-by: Christian Brabandt <c...@256bit.org> diff --git a/runtime/optwin.vim b/runtime/optwin.vim index 5e7d87ac2..91974570e 100644 --- a/runtime/optwin.vim +++ b/runtime/optwin.vim @@ -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 <b...@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("$", " set 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 -- -- 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 vim_dev+unsubscr...@googlegroups.com. To view this discussion visit https://groups.google.com/d/msgid/vim_dev/E1uXOh9-001F5C-Nv%40256bit.org.