summaryrefslogtreecommitdiffstats
path: root/src/testdir/test_put.vim
AgeCommit message (Collapse)Author
2020-03-10patch 8.2.0369: various Normal mode commands not fully testedv8.2.0369Bram Moolenaar
Problem: Various Normal mode commands not fully tested. Solution: Add more tests. (Yegappan Lakshmanan, closes #5751)
2019-09-06patch 8.1.1996: more functions can be used as methodsv8.1.1996Bram Moolenaar
Problem: More functions can be used as methods. Solution: Make various functions usable as a method.
2019-08-24patch 8.1.1925: more functions can be used as methodsv8.1.1925Bram Moolenaar
Problem: More functions can be used as methods. Solution: Make various functions usable as a method.
2019-05-23patch 8.1.1373: "[p" in Visual mode puts in wrong linev8.1.1373Bram Moolenaar
Problem: "[p" in Visual mode puts in wrong line. Solution: Call nv_put() instead of duplicating the functionality. (closes #4408)
2019-01-24patch 8.1.0811: too many #ifdefsv8.1.0811Bram Moolenaar
Problem: Too many #ifdefs. Solution: Graduate FEAT_MBYTE, the final chapter.
2018-06-27patch 8.1.0119: failing test goes unnoticed because messages is not writtenv8.1.0119Bram Moolenaar
Problem: Failing test goes unnoticed because testdir/messages is not written. Solution: Set 'nomodifiable' only local to the buffer.
2018-06-27patch 8.1.0118: duplicate error message for put commandv8.1.0118Bram Moolenaar
Problem: Duplicate error message for put command. Solution: Check return value of u_save(). (Jason Franklin)
2018-05-23patch 8.1.0022: repeating put from expression register failsv8.1.0022Bram Moolenaar
Problem: Repeating put from expression register fails. Solution: Re-evaluate the expression register. (Andy Massimino, closes #2945)
2017-06-27patch 8.0.0681: unnamed register only contains the last deleted textv8.0.0681Bram Moolenaar
Problem: Unnamed register only contains the last deleted text when appending deleted text to a register. (Wolfgang Jeltsch) Solution: Only set y_previous when not using y_append. (Christian Brabandt)
2017-01-24patch 8.0.0234: crash when using put in Visual modev8.0.0234Bram Moolenaar
Problem: When several lines are visually selected and one of them is short, using put may cause a crash. (Axel Bender) Solution: Check for a short line. (Christian Brabandt)
2017-01-23patch 8.0.0225: put in Visual block mode terminates earlyv8.0.0225Bram Moolenaar
Problem: When a block is visually selected and put is used on the end of the selection only one line is changed. Solution: Check for the end properly. (Christian Brabandt, neovim issue 5781)
2017-01-22patch 8.0.0222: blockwise put on multi-byte character misplacedv8.0.0222Bram Moolenaar
Problem: When a multi-byte character ends in a zero byte, putting blockwise text puts it before the character instead of after it. Solution: Use int instead of char for the character under the cursor. (Luchr, closes #1403) Add a test.