Mercurial > vim
view src/testdir/if_ver-1.vim @ 19106:38d18056e6e6 v8.2.0113
patch 8.2.0113: "make cmdidxs" fails
Commit: https://github.com/vim/vim/commit/9b24dfcb9f676e7f7a09a9062f0d05b2104a87eb
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Jan 12 15:46:08 2020 +0100
patch 8.2.0113: "make cmdidxs" fails
Problem: "make cmdidxs" fails.
Solution: Allow address for ":cquit". Add --not-a-term to avoid a delay.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 12 Jan 2020 16:00:03 +0100 |
parents | 94e37fd22556 |
children |
line wrap: on
line source
" Print all interface versions and write the result into if_ver.txt. " For Ubuntu. Part 1. redir! > if_ver.txt if 1 echo "*** Interface versions ***" echo "\nLua:" lua print(_VERSION) " echo "\nLuaJIT:" " lua print(jit.version) if has('mzscheme') echo "\nMzScheme:" mzscheme (display (version)) endif echo "\nPerl:" perl print $^V echo "\nRuby:" ruby print RUBY_VERSION if has('tcl') echo "\nTcl:" tcl puts [info patchlevel] endif echo "\nPython 2:" python import sys; print sys.version endif redir END