Mercurial > vim
view src/testdir/if_ver-2.vim @ 17926:ad7a4bd65f20 v8.1.1959
patch 8.1.1959: when using "firstline" in popup window text may jump
Commit: https://github.com/vim/vim/commit/a112f2d0035b0800b4a70dbb6f0e5f85e8ec84e5
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Sep 1 17:38:09 2019 +0200
patch 8.1.1959: when using "firstline" in popup window text may jump
Problem: When using "firstline" in popup window text may jump when
redrawing it. (Nick Jensen)
Solution: Set 'scrolloff' to zero in a popup window. (closes #4882)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 01 Sep 2019 17:45:03 +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