summaryrefslogtreecommitdiffstats
path: root/src/testdir/test_cmdwin.vim
AgeCommit message (Collapse)Author
2022-10-05patch 9.0.0663: tests check for +cmdwin feature which is always presentv9.0.0663zeertzjq
Problem: Tests check for +cmdwin feature which is always present. Solution: Remove the checks. (closes #11287)
2022-09-26patch 9.0.0598: using negative array index with negative width windowv9.0.0598Bram Moolenaar
Problem: Using negative array index with negative width window. Solution: Make sure the window width does not become negative.
2022-09-18patch 9.0.0500: when quitting cmdline window with CTRL-C it remains visiblev9.0.0500Bram Moolenaar
Problem: When quitting the cmdline window with CTRL-C it remains visible. Solution: Redraw to avoid confusion. Adjust the error message. (closes #11152) Adjust the cursor position after CTRL-C.
2022-09-17patch 9.0.0492: cmdwin test fails on MS-Windowsv9.0.0492Bram Moolenaar
Problem: Cmdwin test fails on MS-Windows. Solution: Skip test on MS-Windows.
2022-09-17patch 9.0.0490: using freed memory with cmdwin and BufEnter autocmdv9.0.0490Bram Moolenaar
Problem: Using freed memory with cmdwin and BufEnter autocmd. Solution: Make sure pointer to b_p_iminsert is still valid.
2022-09-08patch 9.0.0418: manually deleting temp test filesv9.0.0418Bram Moolenaar
Problem: Manually deleting temp test files. Solution: Use the 'D' flag of writefile() and mkdir().
2022-08-23patch 9.0.0249: no test for what 9.0.0234 fixesv9.0.0249Bram Moolenaar
Problem: No test for what 9.0.0234 fixes. Solution: Add a test. (issue #10950)
2022-08-16patch 9.0.0218: reading before the start of the linev9.0.0218Bram Moolenaar
Problem: Reading before the start of the line. Solution: When displaying "$" check the column is not negative.
2022-07-24patch 9.0.0064: confusing error when using "q:" in command line windowv9.0.0064Bram Moolenaar
Problem: Confusing error when using "q:" in command line window. Solution: Check for the situation and give a better error message. (closes #10756)
2022-07-02patch 9.0.0027: the command line test is getting quite bigv9.0.0027Bram Moolenaar
Problem: The command line test is getting quite big. Solution: Move command line window tests to a separate file.