view src/testdir/if_ver-2.vim @ 16886:2bd51fdcc793 v8.1.1444

patch 8.1.1444: not using double line characters for popup border commit https://github.com/vim/vim/commit/3bfd04e672ea47e371595e50a92ddfb2223f6e3d Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jun 1 20:45:21 2019 +0200 patch 8.1.1444: not using double line characters for popup border Problem: Not using double line characters for popup border. Solution: Use double line characters if using utf-8.
author Bram Moolenaar <Bram@vim.org>
date Sat, 01 Jun 2019 21:00:05 +0200
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