summaryrefslogtreecommitdiff
path: root/src/testdir/test_paste.vim
AgeCommit message (Collapse)Author
2017-02-04patch 8.0.0303: bracketed paste does not work in Visual modeBram Moolenaar
Problem: Bracketed paste does not work in Visual mode. Solution: Delete the text before pasting
2017-02-02patch 8.0.0296: bracketed paste can only append, not insertBram Moolenaar
Problem: Bracketed paste can only append, not insert. Solution: When the cursor is in the first column insert the text.
2017-01-25patch 8.0.0238: bracketed paste does not disable autoindentBram Moolenaar
Problem: When using bracketed paste autoindent causes indent to be increased. Solution: Disable 'ai' and set 'paste' temporarily. (Ken Takata)
2017-01-24patch 8.0.0233: paste test fails in the GUIBram Moolenaar
Problem: The paste test fails if the GUI is being used. Solution: Skip the test in the GUI.
2017-01-24patch 8.0.0231: bracketed paste mode is not testedBram Moolenaar
Problem: There are no tests for bracketed paste mode. Solution: Add a test. Fix repeating with "normal .".