summaryrefslogtreecommitdiff
path: root/src/testdir/test_textobjects.vim
Commit message (Collapse)AuthorAgeFilesLines
* patch 8.2.1326: Vim9: skipping over white space after listv8.2.1326Bram Moolenaar2020-07-301-17/+17
| | | | | | Problem: Vim9: skipping over white space after list. Solution: Do not skip white space, a following [] would be misinterpreted. (closes #6552) Fix a few side effects.
* patch 8.2.0999: moving to next sentence gets stuck on quotev8.2.0999Bram Moolenaar2020-06-181-0/+11
| | | | | | Problem: Moving to next sentence gets stuck on quote. Solution: When moving to the next sentence doesn't result in moving, advance a character and try again. (closes #6291)
* patch 8.2.0655: search code not sufficiently testedv8.2.0655Bram Moolenaar2020-04-281-0/+251
| | | | | Problem: Search code not sufficiently tested. Solution: Add more tests. (Yegappan Lakshmanan, closes #5999)
* patch 8.1.2330: vi' does not always work when 'selection' is exclusivev8.1.2330Bram Moolenaar2019-11-211-0/+7
| | | | | Problem: vi' does not always work when 'selection' is exclusive. Solution: Adjust start position.
* patch 8.1.2314: vi' sometimes does not select anythingv8.1.2314Bram Moolenaar2019-11-171-0/+3
| | | | | Problem: vi' sometimes does not select anything. Solution: Recognize an empty selection. (Christian Brabandt, closes #5183)
* patch 8.1.1544: some balloon tests don't run when they canv8.1.1544Bram Moolenaar2019-06-151-3/+2
| | | | | | | Problem: Some balloon tests don't run when they can. Solution: Split GUI balloon tests off into a separate file. (Ozaki Kiichi, closes #4538) Change the feature check into a command for consistency.
* patch 8.1.1524: tests are silently skippedv8.1.1524Bram Moolenaar2019-06-131-1/+1
| | | | | Problem: Tests are silently skipped. Solution: Throw an exception for skipped tests in more places.
* patch 8.1.0971: failure for selecting quoted text object moves cursorv8.1.0971Bram Moolenaar2019-02-221-0/+25
| | | | | | Problem: Failure for selecting quoted text object moves cursor. Solution: Restore the Visual selection on failure. (Christian Brabandt, closes #4024)
* patch 8.1.0711: test files still use function!v8.1.0711Bram Moolenaar2019-01-091-1/+1
| | | | | Problem: Test files still use function!. Solution: Remove the exclamation mark. Fix overwriting a function.
* patch 8.1.0290: "cit" on an empty HTML tag changes the whole tagv8.1.0290Bram Moolenaar2018-08-161-0/+17
| | | | | | Problem: "cit" on an empty HTML tag changes the whole tag. Solution: Only adjust the area in Visual mode. (Andy Massimino, closes #3332)
* patch 8.1.0083: "is" and "as" have trouble with quoted punctuationv8.1.0083Bram Moolenaar2018-06-191-0/+75
| | | | | Problem: "is" and "as" have trouble with quoted punctuation. Solution: Check for punctuation before a quote. (Jason Franklin)
* patch 8.0.1486: accessing invalid memory with "it"v8.0.1486Bram Moolenaar2018-02-091-0/+13
| | | | | | Problem: Accessing invalid memory with "it". (Dominique Pelle) Solution: Avoid going over the end of the line. (Christian Brabandt, closes #2532)
* patch 8.0.1200: tests switch the bell off twicev8.0.1200Bram Moolenaar2017-10-151-1/+0
| | | | | Problem: Tests switch the bell off twice. Solution: Don't set 'belloff' in individual tests. (Christian Brabandt)
* patch 8.0.1158: still old style testsv8.0.1158Bram Moolenaar2017-09-281-0/+101
| | | | | Problem: Still old style tests. Solution: Convert serveral tests to new style. (Yegappan Lakshmanan)
* patch 8.0.0622: selecting quoted text fails with 'selection' "exclusive"v8.0.0622Bram Moolenaar2017-06-051-8/+18
| | | | | | | Problem: Using a text object to select quoted text fails when 'selection' is set to "exclusive". (Guraga) Solution: Swap cursor and visual start position. (Christian Brabandt, closes #1687)
* patch 8.0.0433: beeps when running testsv8.0.0433Bram Moolenaar2017-03-081-0/+1
| | | | | Problem: Quite a few beeps when running tests. Solution: Set 'belloff' for these tests. (Christian Brabandt)
* patch 7.4.2098v7.4.2098Bram Moolenaar2016-07-231-0/+43
Problem: Text object tests are old style. Solution: Turn them into new style tests. (James McCoy, closes #941)