summaryrefslogtreecommitdiff
path: root/src/testdir/test_python2.vim
Commit message (Collapse)AuthorAgeFilesLines
* patch 8.1.0950: using :python sets 'pyxversion' even when not executedv8.1.0950Bram Moolenaar2019-02-181-0/+8
| | | | | Problem: Using :python sets 'pyxversion' even when not executed. Solution: Check the "skip" flag. (Shane Harper, closes #3995)
* patch 8.1.0627: Python cannot handle function name of script-local functionv8.1.0627Bram Moolenaar2018-12-221-0/+27
| | | | | | Problem: Python cannot handle function name of script-local function. Solution: Use <SNR> instead of the special byte code. (Ozaki Kiichi, closes #3681)
* patch 8.1.0212: preferred cursor column not set in interfacesv8.1.0212Bram Moolenaar2018-07-251-0/+14
| | | | | | Problem: Preferred cursor column not set in interfaces. Solution: Set w_set_curswant when setting the cursor. (David Hotham, closes #3060)
* patch 8.0.0265: may get ml_get error when :pydo deletes linesv8.0.0265Bram Moolenaar2017-01-291-0/+24
Problem: May get ml_get error when :pydo deletes lines or switches to another buffer. (Nikolai Pavlov, issue #1421) Solution: Check the buffer and line every time.