Mercurial > vim
view src/testdir/test_python2.vim @ 13332:9589d8567f54
Added tag v8.0.1540 for changeset 1ba4f926247ca8f34a6624a90442ccf0dbf4e295
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sat, 24 Feb 2018 21:30:06 +0100 |
parents | 27b42717662b |
children | c15bef307de6 |
line wrap: on
line source
" Test for python 2 commands. " TODO: move tests from test87.in here. if !has('python') finish endif func Test_pydo() " Check deleting lines does not trigger ml_get error. py import vim new call setline(1, ['one', 'two', 'three']) pydo vim.command("%d_") bwipe! " Check switching to another buffer does not trigger ml_get error. new let wincount = winnr('$') call setline(1, ['one', 'two', 'three']) pydo vim.command("new") call assert_equal(wincount + 1, winnr('$')) bwipe! bwipe! endfunc