view ci/if_ver-1.vim @ 30703:47332719dbb5 v9.0.0686

patch 9.0.0686: the right ALT key does not work on some MS-Windows keyboards Commit: https://github.com/vim/vim/commit/8d8b9758ced52b6303af95ad7e28ae9c5636cdf8 Author: Anton Sharonov <anton.sharonov@gmail.com> Date: Fri Oct 7 16:28:48 2022 +0100 patch 9.0.0686: the right ALT key does not work on some MS-Windows keyboards Problem: The right ALT key does not work on some MS-Windows keyboards. Solution: Adjust the modifiers based on GetKeyState(). (Anoton Sharonov, closes #11300)
author Bram Moolenaar <Bram@vim.org>
date Fri, 07 Oct 2022 17:30:04 +0200
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