view ci/if_ver-1.vim @ 29495:82b0aeaeaa3c v9.0.0089

patch 9.0.0089: fuzzy argument completion doesn't work for shell commands Commit: https://github.com/vim/vim/commit/7db3a8e3298bf7c7c3f74cc9c1add04f29e78d2d Author: Yegappan Lakshmanan <yegappan@yahoo.com> Date: Tue Jul 26 22:01:36 2022 +0100 patch 9.0.0089: fuzzy argument completion doesn't work for shell commands Problem: Fuzzy argument completion doesn't work for shell commands. Solution: Check for cmdidx not being CMD_bang. (Yegappan Lakshmanan, closes #10769)
author Bram Moolenaar <Bram@vim.org>
date Tue, 26 Jul 2022 23:15:03 +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