summaryrefslogtreecommitdiffstats
path: root/src/testdir/test_bufline.vim
AgeCommit message (Collapse)Author
2020-04-21patch 8.2.0615: regexp benchmark stest is old stylev8.2.0615Bram Moolenaar
Problem: Regexp benchmark stest is old style. Solution: Make it a new style test. Fix using a NULL list. Add more tests. (Yegappan Lakshmanan, closes #5963)
2020-04-08patch 8.2.0533: tests using term_wait() can still be flakyv8.2.0533Bram Moolenaar
Problem: Tests using term_wait() can still be flaky. Solution: Increase the wait time when rerunning a test. (James McCoy, closes #5899) Halve the initial times to make tests run faster when there is no rerun.
2019-09-06patch 8.1.1993: more functions can be used as methodsv8.1.1993Bram 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-08-23patch 8.1.1915: more functions can be used as methodsv8.1.1915Bram Moolenaar
Problem: More functions can be used as methods. Solution: Make various functions usable as a method.
2019-08-21patch 8.1.1909: more functions can be used as methodsv8.1.1909Bram Moolenaar
Problem: More functions can be used as methods. Solution: Make a few more functions usable as a method.
2019-08-07patch 8.1.1826: tests use hand coded feature and option checksv8.1.1826Bram Moolenaar
Problem: Tests use hand coded feature and option checks. Solution: Use the commands from check.vim in more tests.
2019-07-27patch 8.1.1757: text added with appendbufline() isn't displayedv8.1.1757Bram Moolenaar
Problem: Text added with appendbufline() to another buffer isn't displayed. Solution: Update topline. (partly by Christian Brabandt, closes #4718)
2019-05-20patch 8.1.1362: code and data in tests can be hard to readv8.1.1362Bram Moolenaar
Problem: Code and data in tests can be hard to read. Solution: Use the new heredoc style. (Yegappan Lakshmanan, closes #4400)
2019-05-16patch 8.1.1336: some eval functionality is not covered by testsv8.1.1336Bram Moolenaar
Problem: Some eval functionality is not covered by tests. Solution: Add a few more test cases. (Masato Nishihata, closes #4374)
2019-04-20patch 8.1.1189: mode is not cleared when leaving Insert modev8.1.1189Bram Moolenaar
Problem: Mode is not cleared when leaving Insert mode. Solution: Clear the mode when got_int is set. (Ozaki Kiichi, closes #4270)
2018-09-21patch 8.1.0425: ml_get error and crash with appendbufline()v8.1.0425Bram Moolenaar
Problem: ml_get error and crash with appendbufline(). (Masashi Iizuka) Solution: Set per-window buffer info. (Hirohito Higashi, closes #3455)
2018-06-07patch 8.1.0039: cannot easily delete lines in another bufferv8.1.0039Bram Moolenaar
Problem: Cannot easily delete lines in another buffer. Solution: Add deletebufline().
2018-06-06patch 8.1.0037: cannot easily append lines to another bufferv8.1.0037Bram Moolenaar
Problem: Cannot easily append lines to another buffer. Solution: Add appendbufline().
2017-11-06patch 8.0.1274: setbufline() fails when using foldingv8.0.1274Bram Moolenaar
Problem: setbufline() fails when using folding. Solution: Set "curwin" if needed. (Ozaki Kiichi, closes #2293)
2017-09-30patch 8.0.1162: shared script for tests cannot be included twicev8.0.1162Bram Moolenaar
Problem: Shared script for tests cannot be included twice. Solution: Include it where needed, it will "finish" if loaded again.
2017-09-04patch 8.0.1055: bufline test hangs on MS-Windowsv8.0.1055Bram Moolenaar
Problem: Bufline test hangs on MS-Windows. Solution: Avoid message for writing file. Source shared.vim when running test individually.
2017-09-04patch 8.0.1053: setline() does not work on startupv8.0.1053Bram Moolenaar
Problem: setline() does not work on startup. (Manuel Ortega) Solution: Do not check for ml_mfp to be set for the current buffer. (Christian Brabandt)
2017-09-02patch 8.0.1039: cannot change a line in not current bufferv8.0.1039Bram Moolenaar
Problem: Cannot change a line in a buffer other than the current one. Solution: Add setbufline(). (Yasuhiro Matsumoto, Ozaki Kiichi, closes #1953)