* patch 9.1.1508: string manipulation can be improved in cmdexpand.c * runtime(vim): Update base-syntax and generator, match all default highlight groups * runtime(vim): Update base-syntax and generator, generate command modifiers * patch 9.1.1507: symlinks are resolved on :cd commands * runtime(postscr): Correct some standard font names in syntax * runtime(optwin): show 'guiligatures' option also on MS-Windows builds * patch 9.1.1506: tests: missing cleanup in Test_search_cmdline_incsearch_highlight() * patch 9.1.1505: not possible to return completion type for :ex command * patch 9.1.1504: filetype: numbat files are not recognized * patch 9.1.1503: filetype: haxe files are not recognized * patch 9.1.1502: filetype: quickbms files are not recognized * patch 9.1.1501: filetype: flix files are not recognized * runtime(go): add section movement mappings to ftplugin * runtime(doc): Tweak documentation style * patch 9.1.1500: if_python: typo in python error variable * runtime(tutor): regenerate utf-8 version of French vimtutor manpage * runtime(netrw): upstream snapshot of v183 * runtime(vim): Update base-syntax, improve :syn-sync line defaults * patch 9.1.1498: completion: 'complete' funcs behave different to 'omnifunc' * patch 9.1.1497: Link error with shm_open() * patch 9.1.1496: terminal: still not highlighting empty cells correctly * README: mention POSIX vi as a goal of this project * patch 9.1.1495: Wayland: uses $XDG_SEAT to determine seat * patch 9.1.1494: runtime(tutor): no French translation for Chapter 2 * runtime(tutor): apply fixes to runtime/tutor/tutor2 * translation(it): updated Italian manpage * patch 9.1.1493: manually comparing positions on buffer * nsis: copy tutor directory recursively * patch 9.1.1492: tests: failure when Wayland compositor fails to start OBS-URL: https://build.opensuse.org/package/show/editors/vim?expand=0&rev=895
45 lines
1.1 KiB
Diff
45 lines
1.1 KiB
Diff
Index: vim-8.2.2411/runtime/gvimrc_example.vim
|
|
===================================================================
|
|
--- vim-8.2.2411.orig/runtime/gvimrc_example.vim
|
|
+++ vim-8.2.2411/runtime/gvimrc_example.vim
|
|
@@ -15,9 +15,6 @@
|
|
" Make external commands work through a pipe instead of a pseudo-tty
|
|
"set noguipty
|
|
|
|
-" set the X11 font to use
|
|
-" set guifont=-misc-fixed-medium-r-normal--14-130-75-75-c-70-iso8859-1
|
|
-
|
|
set ch=2 " Make command line two lines high
|
|
|
|
set mousehide " Hide the mouse when typing text
|
|
@@ -53,3 +50,29 @@ if version >= 500
|
|
highlight Special gui=NONE guibg=grey95
|
|
|
|
endif
|
|
+
|
|
+" Determine the LC_CTYPE locale category setting and try to set guifontset accordingly:
|
|
+
|
|
+let tmplang = $LC_ALL
|
|
+if tmplang =~ "^$"
|
|
+ let tmplang = $LC_CTYPE
|
|
+endif
|
|
+if tmplang =~ "^$"
|
|
+ let tmplang = $LANG
|
|
+endif
|
|
+if tmplang =~ "^$"
|
|
+ let tmplang = "en_US"
|
|
+endif
|
|
+
|
|
+if tmplang =~ "^ko"
|
|
+ set guifont=Luxi\ Mono
|
|
+elseif tmplang =~ "^ja"
|
|
+ set guifont=Luxi\ Mono
|
|
+elseif tmplang =~ "^zh"
|
|
+ set guifont=Luxi\ Mono
|
|
+else
|
|
+ set guifont=monospace
|
|
+endif
|
|
+
|
|
+
|
|
+" /etc/gvimrc ends here
|