summaryrefslogtreecommitdiff
path: root/src/testdir/test_edit.vim
Commit message (Collapse)AuthorAgeFilesLines
* patch 8.2.0270: some code not covered by testsv8.2.0270Bram Moolenaar2020-02-171-0/+18
| | | | | Problem: Some code not covered by tests. Solution: Add test cases. (Yegappan Lakshmanan, closes #5649)
* patch 8.2.0156: various typos in source files and testsv8.2.0156Bram Moolenaar2020-01-261-1/+1
| | | | | Problem: Various typos in source files and tests. Solution: Fix the typos. (Emir Sari, closes #5532)
* patch 8.1.2373: cannot build with +popupwin but without +quickfixv8.1.2373Bram Moolenaar2019-12-011-0/+2
| | | | | Problem: Cannot build with +popupwin but without +quickfix. (John Marriott) Solution: Adjust #ifdefs.
* patch 8.1.2263: 'noesckeys' test fails in GUIv8.1.2263Bram Moolenaar2019-11-061-1/+4
| | | | | Problem: 'noesckeys' test fails in GUI. Solution: Skip the test in the GUI.
* patch 8.1.2261: with modifyOtherKeys set 'noesckeys' doesn't workv8.1.2261Bram Moolenaar2019-11-061-0/+19
| | | | | | Problem: With modifyOtherKeys set 'noesckeys' doesn't work. (James McCoy) Solution: Disable modifyOtherKeys while in Insert mode when 'noesckeys' is set. (closes #5180)
* patch 8.1.1988: :startinsert! does not work the same way as "A"v8.1.1988Bram Moolenaar2019-09-051-0/+15
| | | | | Problem: :startinsert! does not work the same way as "A". Solution: Use the same code to move the cursor. (closes #4896)
* patch 8.1.1925: more functions can be used as methodsv8.1.1925Bram Moolenaar2019-08-241-3/+3
| | | | | Problem: More functions can be used as methods. Solution: Make various functions usable as a method.
* patch 8.1.1348: running tests may cause the window to movev8.1.1348Bram Moolenaar2019-05-181-1/+18
| | | | | | Problem: Running tests may cause the window to move. Solution: Correct the reported window position for the offset with the position after ":winpos". Works around an xterm bug.
* patch 8.1.1214: old style testsv8.1.1214Bram Moolenaar2019-04-271-0/+16
| | | | | | Problem: Old style tests. Solution: Move tests from test14 to new style test files. (Yegappan Lakshmanan, closes #4308)
* patch 8.1.1011: indent from autoindent not removed from blank linev8.1.1011Bram Moolenaar2019-03-161-1/+12
| | | | | Problem: Indent from autoindent not removed from blank line. (Daniel Hahler) Solution: Do not reset did_ai when text follows. (closes #4119)
* patch 8.1.0811: too many #ifdefsv8.1.0811Bram Moolenaar2019-01-241-16/+13
| | | | | Problem: Too many #ifdefs. Solution: Graduate FEAT_MBYTE, the final chapter.
* patch 8.1.0711: test files still use function!v8.1.0711Bram Moolenaar2019-01-091-41/+41
| | | | | Problem: Test files still use function!. Solution: Remove the exclamation mark. Fix overwriting a function.
* patch 8.1.0504: when CTRL-C is mapped it triggers InsertLeavev8.1.0504Bram Moolenaar2018-11-021-0/+30
| | | | | Problem: When CTRL-C is mapped it triggers InsertLeave. Solution: Make CTRL-C behave the same way when typed or used in a mapping.
* patch 8.1.0219: expanding ## fails to escape backtickv8.1.0219Bram Moolenaar2018-07-281-0/+8
| | | | | Problem: Expanding ## fails to escape backtick. Solution: Escape a backtick in a file name. (closes #3257)
* patch 8.1.0037: cannot easily append lines to another bufferv8.1.0037Bram Moolenaar2018-06-061-1/+1
| | | | | Problem: Cannot easily append lines to another buffer. Solution: Add appendbufline().
* patch 8.1.0034: cursor not restored with ":edit #"v8.1.0034Bram Moolenaar2018-06-041-0/+14
| | | | | | Problem: Cursor not restored with ":edit #". Solution: Don't assume autocommands moved the cursor when it was moved to the first non-blank.
* patch 8.0.1482: using feedkeys() does not work to test completionv8.0.1482Bram Moolenaar2018-02-091-4/+3
| | | | | | | Problem: Using feedkeys() does not work to test Insert mode completion. (Lifepillar) Solution: Do not check for typed keys when executing :normal or feedkeys(). Fix thesaurus completion not working when 'complete' is empty.
* patch 8.0.1226: edit and popup tests failingv8.0.1226Bram Moolenaar2017-10-271-1/+3
| | | | | Problem: Edit and popup tests failing. Solution: Make the tests pass.
* patch 8.0.1205: it is possible to unload a changed bufferv8.0.1205Bram Moolenaar2017-10-191-0/+13
| | | | | Problem: Using "1q" it is possible to unload a changed buffer. (Rick Howe) Solution: Check the right window for changes.
* patch 8.0.1200: tests switch the bell off twicev8.0.1200Bram Moolenaar2017-10-151-17/+0
| | | | | Problem: Tests switch the bell off twice. Solution: Don't set 'belloff' in individual tests. (Christian Brabandt)
* patch 8.0.1154: 'indentkeys' does not work properlyv8.0.1154Bram Moolenaar2017-09-261-0/+27
| | | | | Problem: 'indentkeys' does not work properly. (Gary Johnson) Solution: Get the cursor line again. (Christian Brabandt, closes #2151)
* patch 8.0.0545: edit test may fail on some systemsv8.0.0545Bram Moolenaar2017-04-071-4/+13
| | | | | Problem: Edit test may fail on some systems. Solution: If creating a directory with a very long path fails, bail out.
* patch 8.0.0543: test_edit causes older xfce4-terminal to closev8.0.0543Bram Moolenaar2017-04-041-2/+9
| | | | | | Problem: Test_edit causes older xfce4-terminal to close. (Dominique Pelle) Solution: Reduce number of columns to 2000. Try to restore the window position.
* patch 8.0.0532: test with long directory name fails on Macv8.0.0532Bram Moolenaar2017-04-011-1/+1
| | | | | Problem: Test with long directory name fails on Mac. Solution: Skip the test on Mac systems.
* patch 8.0.0531: test with long directory name fails on non-unix systemsv8.0.0531Bram Moolenaar2017-03-311-0/+4
| | | | | Problem: Test with long directory name fails on non-unix systems. Solution: Skip the test on non-unix systems.
* patch 8.0.0530: buffer overflow when 'columns' is very bigv8.0.0530Bram Moolenaar2017-03-311-0/+21
| | | | | | Problem: Buffer overflow when 'columns' is very big. (Nikolai Pavlov) Solution: Correctly compute where to truncate. Fix translation. (closes #1600)
* patch 8.0.0472: when a test fails another test may also failv8.0.0472Bram Moolenaar2017-03-161-2/+2
| | | | | | Problem: When a test fails and test.log is created, Test_edit_CTRL_I matches it instead of test1.in. Solution: Match with runtest.vim instead.
* patch 8.0.0440: not enough test coverage in Insert modev8.0.0440Bram Moolenaar2017-03-091-0/+1324
Problem: Not enough test coverage in Insert mode. Solution: Add lots of tests. Add test_override(). (Christian Brabandt, closes #1521)