Mercurial > vim
annotate ci/if_ver-1.vim @ 25024:a1b0fe1c7cd5 v8.2.3049
patch 8.2.3049: JSON patch file not recognized
Commit: https://github.com/vim/vim/commit/6582e230a0f6592287b1123c5fc3807d6fed997e
Author: Kevin Locke <kevin@kevinlocke.name>
Date: Fri Jun 25 21:54:25 2021 +0200
patch 8.2.3049: JSON patch file not recognized
Problem: JSON patch file not recognized.
Solution: Recognize json-patch as json. (Kevin Locke, closes https://github.com/vim/vim/issues/8450)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Fri, 25 Jun 2021 22:00:05 +0200 |
parents | 0878f0fd349b |
children |
rev | line source |
---|---|
19161
27ff44268da5
patch 8.2.0140: CI does not test building doc tags
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1 " Print all interface versions for Ubuntu. Part 1. |
27ff44268da5
patch 8.2.0140: CI does not test building doc tags
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2 |
27ff44268da5
patch 8.2.0140: CI does not test building doc tags
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
3 if 1 |
27ff44268da5
patch 8.2.0140: CI does not test building doc tags
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
4 execute 'source' expand('<sfile>:h') .. '/if_ver-cmd.vim' |
27ff44268da5
patch 8.2.0140: CI does not test building doc tags
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
5 |
27ff44268da5
patch 8.2.0140: CI does not test building doc tags
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
6 echo "*** Interface versions ***\n" |
27ff44268da5
patch 8.2.0140: CI does not test building doc tags
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
7 |
27ff44268da5
patch 8.2.0140: CI does not test building doc tags
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
8 echo 'Lua:' |
24385
0878f0fd349b
patch 8.2.2733: detecting Lua version is not reliable
Bram Moolenaar <Bram@vim.org>
parents:
19161
diff
changeset
|
9 PrintVer lua print(vim.lua_version, jit and "(LuaJIT)" or "") |
19161
27ff44268da5
patch 8.2.0140: CI does not test building doc tags
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
10 |
27ff44268da5
patch 8.2.0140: CI does not test building doc tags
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
11 echo 'MzScheme:' |
27ff44268da5
patch 8.2.0140: CI does not test building doc tags
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
12 PrintVer mzscheme (display (version)) |
27ff44268da5
patch 8.2.0140: CI does not test building doc tags
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
13 |
27ff44268da5
patch 8.2.0140: CI does not test building doc tags
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
14 echo 'Perl:' |
27ff44268da5
patch 8.2.0140: CI does not test building doc tags
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
15 PrintVer perl print $^V |
27ff44268da5
patch 8.2.0140: CI does not test building doc tags
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
16 |
27ff44268da5
patch 8.2.0140: CI does not test building doc tags
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
17 echo 'Ruby:' |
27ff44268da5
patch 8.2.0140: CI does not test building doc tags
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
18 PrintVer ruby print RUBY_VERSION |
27ff44268da5
patch 8.2.0140: CI does not test building doc tags
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
19 |
27ff44268da5
patch 8.2.0140: CI does not test building doc tags
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
20 echo 'Tcl:' |
27ff44268da5
patch 8.2.0140: CI does not test building doc tags
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
21 PrintVer tcl puts [info patchlevel] |
27ff44268da5
patch 8.2.0140: CI does not test building doc tags
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
22 |
27ff44268da5
patch 8.2.0140: CI does not test building doc tags
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
23 echo 'Python 2:' |
27ff44268da5
patch 8.2.0140: CI does not test building doc tags
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
24 PrintVer python print sys.version |
27ff44268da5
patch 8.2.0140: CI does not test building doc tags
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
25 endif |