summaryrefslogtreecommitdiff
path: root/src/testdir
AgeCommit message (Collapse)Author
2015-08-04patch 7.4.809Bram Moolenaar
Problem: Test is duplicated. Solution: Roll back 7.4.802.
2015-08-04patch 7.4.806Bram Moolenaar
Problem: CTRL-A in Visual mode doesn't work properly with "alpha" in 'nrformat'. Solution: Make it work. (Christian Brabandt)
2015-07-28patch 7.4.803Bram Moolenaar
Problem: C indent does not support C11 raw strings. (Mark Lodato) Solution: Do not change indent inside the raw string.
2015-07-28patch 7.4.802Bram Moolenaar
Problem: Using "A" in Visual mode while 'linebreak' is set is not tested. Solution: Add a test for this, verifies the problem is fixed. (Ingo Karkat)
2015-07-28patch 7.4.801Bram Moolenaar
Problem: Test for ":diffoff" doesn't catch all potential problems. Solution: Add a :diffthis and a :diffoff command. (Olaf Dabrunz)
2015-07-28patch 7.4.798Bram Moolenaar
Problem: Repeating a change in Visual mode does not work as expected. (Urtica Dioica) Solution: Make redo in Visual mode work better. (Christian Brabandt)
2015-07-21patch 7.4.792Bram Moolenaar
Problem: Can only conceal text by defining syntax items. Solution: Use matchadd() to define concealing. (Christian Brabandt)
2015-07-21patch 7.4.790Bram Moolenaar
Problem: Test fails when the autochdir feature is not available. Test output contains the test script. Solution: Check for the autochdir feature. (Kazunobu Kuriyama) Only write the relevant test output.
2015-07-17patch 7.4.786Bram Moolenaar
Problem: It is not possible for a plugin to adjust to a changed setting. Solution: Add the OptionSet autocommand event. (Christian Brabandt)
2015-07-17patch 7.4.785Bram Moolenaar
Problem: On some systems automatically adding the missing EOL causes problems. Setting 'binary' has too many side effects. Solution: Add the 'fixeol' option, default on. (Pavel Samarkin)
2015-07-17patch 7.4.782Bram Moolenaar
Problem: Still a few problems with CTRL-A and CTRL-X in Visual mode. Solution: Fix the reported problems. (Christian Brabandt)
2015-07-10Add files missing from patch 7.4.771.Bram Moolenaar
2015-07-10patch 7.4.773Bram Moolenaar
Problem: 'langmap' is used in command-line mode when checking for mappings. Issue 376. Solution: Do not use 'langmap' in command-line mode. (Larry Velazquez)
2015-07-10patch 7.4.771Bram Moolenaar
Problem: Search does not handle multi-byte character at the start position correctly. Solution: Take byte size of character into account. (Yukihiro Nakadaira)
2015-07-04patch 7.4.769Bram Moolenaar
Problem: Behavior of :diffoff is not tested. Solution: Add a bit of testing. (Olaf Dabrunz)
2015-07-03patch 7.4.765Bram Moolenaar
Problem: CTRL-A and CTRL-X in Visual mode do not always work well. Solution: Improvements for increment and decrement. (Christian Brabandt)
2015-06-28patch 7.4.764Bram Moolenaar
Problem: test_increment fails on MS-Windows. (Ken Takata) Solution: Clear Visual mappings. (Taro Muraoka)
2015-06-25patch 7.4.755Bram Moolenaar
Problem: It is not easy to count the number of characters. Solution: Add the skipcc argument to strchars(). (Hirohito Higashi, Ken Takata)
2015-06-25patch 7.4.754Bram Moolenaar
Problem: Using CTRL-A in Visual mode does not work well. (Gary Johnson) Solution: Make it increment all numbers in the Visual area. (Christian Brabandt)
2015-06-25patch 7.4.753Bram Moolenaar
Problem: Appending in Visual mode with 'linebreak' set does not work properly. Also when 'selection' is "exclusive". (Ingo Karkat) Solution: Recalculate virtual columns. (Christian Brabandt)
2015-06-19patch 7.4.745Bram Moolenaar
Problem: The entries added by matchaddpos() are returned by getmatches() but can't be set with setmatches(). (Lcd) Solution: Fix setmatches(). (Christian Brabandt)
2015-06-19patch 7.4.744Bram Moolenaar
Problem: No tests for Ruby and Perl. Solution: Add minimal tests. (Ken Takata)
2015-06-19patch 7.4.743Bram Moolenaar
Problem: "p" in Visual mode causes an unexpected line split. Solution: Advance the cursor first. (Yukihiro Nakadaira)
2015-06-19patch 7.4.741Bram Moolenaar
Problem: When using += with ":set" a trailing comma is not recognized. (Issue 365) Solution: Don't add a second comma. Add a test. (partly by Christian Brabandt)
2015-06-19patch 7.4.740Bram Moolenaar
Problem: ":1quit" works like ":.quit". (Bohr Shaw) Solution: Don't exit Vim when a range is specified. (Christian Brabandt)
2015-06-09patch 7.4.734Bram Moolenaar
Problem: ml_get error when using "p" in a Visual selection in the last line. Solution: Change the behavior at the last line. (Yukihiro Nakadaira)
2015-06-09patch 7.4.733Bram Moolenaar
Problem: test_listchars breaks on MS-Windows. (Kenichi Ito) Solution: Set fileformat to "unix". (Christian Brabandt)
2015-05-04patch 7.4.717Bram Moolenaar
Problem: ":let list += list" can change a locked list. Solution: Check for the lock earlier. (Olaf Dabrunz)
2015-04-21patch 7.4.710Bram Moolenaar
Problem: It is not possible to make spaces visibible in list mode. Solution: Add the "space" item to 'listchars'. (David Bürgin, issue 350)
2015-04-21patch 7.4.709Bram Moolenaar
Problem: ":tabmove" does not work as documented. Solution: Make it work consistently. Update documentation and add tests. (Hirohito Higashi)
2015-04-21patch 7.4.704Bram Moolenaar
Problem: Searching for a character matches an illegal byte and causes invalid memory access. (Dominique Pelle) Solution: Do not match an invalid byte when search for a character in a string. Fix equivalence classes using negative numbers, which result in illegal bytes.
2015-04-15patch 7.4.700Bram Moolenaar
Problem: Fold can't be opened after ":move". (Ein Brown) Solution: Delete the folding information and update it afterwards. (Christian Brabandt)
2015-04-13patch 7.4.698Bram Moolenaar
Problem: Various problems with locked and fixed lists and dictionaries. Solution: Disallow changing locked items, fix a crash, add tests. (Olaf Dabrunz)
2015-04-13patch 7.4.694Bram Moolenaar
Problem: Running tests changes the .viminfo file. Solution: Disable viminfo in the text objects test.
2015-03-24Add test files for patch 7.4.680.Bram Moolenaar
2015-03-24updated for version 7.4.680Bram Moolenaar
Problem: CTRL-W in Insert mode does not work well for multi-byte characters. Solution: Use mb_get_class(). (Yasuhiro Matsumoto)
2015-03-20updated for version 7.4.670Bram Moolenaar
Problem: Using 'cindent' for Javascript is less than perfect. Solution: Improve indenting of continuation lines. (Hirohito Higashi)
2015-03-13updated for version 7.4.662Bram Moolenaar
Problem: When 'M' is in the 'cpo' option then selecting a text object in parenthesis does not work correctly. Solution: Keep 'M' in 'cpo' when finding a match. (Hirohito Higashi)
2015-03-05updated for version 7.4.655Bram Moolenaar
Problem: Text deleted by "dit" depends on indent of closing tag. (Jan Parthey) Solution: Do not adjust oap->end in do_pending_operator(). (Christian Brabandt)
2015-02-27updated for version 7.4.648Bram Moolenaar
Problem: Tests broken on MS-Windows. Solution: Delete wrong copy line. (Ken Takata)
2015-02-27updated for version 7.4.647Bram Moolenaar
Problem: After running the tests on MS-Windows many files differ from their originals as they were checked out. Solution: Use a temp directory for executing the tests. (Ken Takata, Taro Muraoka)
2015-02-27updated for version 7.4.646Bram Moolenaar
Problem: ":bufdo" may start at a deleted buffer. Solution: Find the first not deleted buffer. (Shane Harper)
2015-02-27updated for version 7.4.643Bram Moolenaar
Problem: Using the default file format for Mac files. (Issue 77) Solution: Reset the try_mac counter in the right place. (Oswald)
2015-02-17updated for version 7.4.639Bram Moolenaar
Problem: Combination of linebreak and conceal doesn't work well. Solution: Fix the display problems. (Christian Brabandt)
2015-02-17Add missing test files from 7.4.634 to the repository.Bram Moolenaar
2015-02-17updated for version 7.4.636Bram Moolenaar
Problem: A search with end offset gets stuck at end of file. (Gary Johnson) Solution: When a search doesn't move the cursor repeat it with a higher count. (Christian Brabandt)
2015-02-17updated for version 7.4.634Bram Moolenaar
Problem: Marks are not restored after redo + undo. Solution: Fix the way marks are restored. (Olaf Dabrunz)
2015-02-03updated for version 7.4.616Bram Moolenaar
Problem: Cannot insert a tab in front of a block. Solution: Correctly compute aop->start. (Christian Brabandt)
2015-02-03updated for version 7.4.614Bram Moolenaar
Problem: There is no test for what patch 7.4.601 fixes. Solution: Add a test. (Christian Brabandt)
2015-02-03updated for version 7.4.612Bram Moolenaar
Problem: test_eval fails on Mac. Solution: Use the * register instead of the + register. (Jun Takimoto)