Mercurial > vim
view src/testdir/test_python2.vim @ 13285:546b2a354d13
Added tag v8.0.1516 for changeset a69636c631032a7e3bd5a4992608503430c5c6bf
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Tue, 13 Feb 2018 15:30:07 +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