Mercurial > vim
view src/testdir/test_version.vim @ 31119:e2c909e06424 v9.0.0894
patch 9.0.0894: virtual text property highlight ignores window background
Commit: https://github.com/vim/vim/commit/ee28c707e474682151554499874fc7bfb53360cb
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Nov 17 14:56:00 2022 +0000
patch 9.0.0894: virtual text property highlight ignores window background
Problem: Virtual text property highlight ignores window background.
Solution: Combine text prop attribute with win_attr into extra_attr.
(closes #11462)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Thu, 17 Nov 2022 16:00:06 +0100 |
parents | dfdd973cf0c9 |
children |
line wrap: on
line source
" Test :version Ex command so check.vim so shared.vim func Test_version() " version should always return the same string. let v1 = execute('version') let v2 = execute('version') call assert_equal(v1, v2) call assert_match("^\n\nVIM - Vi IMproved .*", v1) endfunc func Test_version_redirect() CheckNotGui CheckCanRunGui CheckUnix call RunVim([], [], '--clean -g --version >Xversion 2>&1') call assert_match('Features included', readfile('Xversion')->join()) call delete('Xversion') endfunc " vim: shiftwidth=2 sts=2 expandtab