Mercurial > vim
view src/testdir/test_python2.vim @ 12450:1c02d9d87d59
Added tag v8.0.1104 for changeset 7a743053dfd615f19c03547ba7262676c0b92d11
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Thu, 14 Sep 2017 14:00:05 +0200 |
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