view ci/if_ver-1.vim @ 27996:3ae5bc51d39d v8.2.4523

patch 8.2.4523: when gvim is started maximized the 'window' option isn't set Commit: https://github.com/vim/vim/commit/6ca883dd8a585a85acdf9303b434211ea91872a7 Author: K.Takata <kentkt@csc.jp> Date: Mon Mar 7 13:31:15 2022 +0000 patch 8.2.4523: when gvim is started maximized the 'window' option isn't set Problem: When gvim is started maximized the 'window' option isn't set properly. (Christian J. Robinson) Solution: Check if 'windows' was already set or not. (Ken Takata, closes #9904)
author Bram Moolenaar <Bram@vim.org>
date Mon, 07 Mar 2022 14:45:03 +0100
parents 0878f0fd349b
children
line wrap: on
line source

" Print all interface versions for Ubuntu. Part 1.

if 1
  execute 'source' expand('<sfile>:h') .. '/if_ver-cmd.vim'

  echo "*** Interface versions ***\n"

  echo 'Lua:'
  PrintVer lua print(vim.lua_version, jit and "(LuaJIT)" or "")

  echo 'MzScheme:'
  PrintVer mzscheme (display (version))

  echo 'Perl:'
  PrintVer perl print $^V

  echo 'Ruby:'
  PrintVer ruby print RUBY_VERSION

  echo 'Tcl:'
  PrintVer tcl puts [info patchlevel]

  echo 'Python 2:'
  PrintVer python print sys.version
endif