view src/testdir/if_ver-2.vim @ 13527:b2b99d01321b v8.0.1637

patch 8.0.1637: no test for term_dumpdiff() options argument commit https://github.com/vim/vim/commit/897e63c4c0623078b5b39e2715b10f456a2453e7 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Mar 24 17:16:33 2018 +0100 patch 8.0.1637: no test for term_dumpdiff() options argument Problem: No test for term_dumpdiff() options argument. Solution: Add a test.
author Christian Brabandt <cb@256bit.org>
date Sat, 24 Mar 2018 17:30:07 +0100
parents 94e37fd22556
children
line wrap: on
line source

" Print py3 interface version and write the result into if_ver.txt.
" For Ubuntu. Part 2.

redir! >> if_ver.txt
if 1
  echo "\nPython 3:"
  python3 import sys; print(sys.version)
  echo "\n"
endif
redir END