summaryrefslogtreecommitdiffstats
path: root/src/testdir/test_cd.vim
AgeCommit message (Collapse)Author
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-29patch 9.0.0323: using common name in tests leads to flaky testsv9.0.0323Bram Moolenaar
Problem: Using common name in tests leads to flaky tests. Solution: Rename files and directories to be more specific.
2021-12-29patch 8.2.3933: after ":cd" fails ":cd -" is incorrectv8.2.3933Richard Doty
Problem: After ":cd" fails ":cd -" is incorrect. Solution: Set the previous directory only after successfully changing directory. (Richard Doty, closes #9419, closes #8983)
2021-12-04patch 8.2.3737: test fails without the 'autochdir' optionv8.2.3737Dominique Pelle
Problem: Test fails without the 'autochdir' option. Solution: Check that the option is available. (Dominique Pellé, closes #9272)
2021-11-18patch 8.2.3618: getcwd() is unclear about how 'autochdir' is usedv8.2.3618Bram Moolenaar
Problem: getcwd() is unclear about how 'autochdir' is used. Solution: Update the help for getcwd(). Without any arguments always return the actual current directory. (closes #9142)
2021-10-03patch 8.2.3468: problem with :cd when editing file in non-existent directoryv8.2.3468Bram Moolenaar
Problem: Problem with :cd when editing file in non-existent directory. (Yee Cheng Chin) Solution: Prepend the current directory to get the full path. (closes #8903)
2021-07-10patch 8.2.3136: no test for E187 and "No swap file"v8.2.3136Dominique Pelle
Problem: No test for E187 and "No swap file". Solution: Add a test. (Dominique Pellé, closes #8540)
2020-08-12patch 8.2.1432: various inconsistencies in test filesv8.2.1432Bram Moolenaar
Problem: Various inconsistencies in test files. Solution: Add modelines where they were missing. Use Check commands instead of silently skipping over tests. Adjust indents and comments. (Ken Takata, closes #6695)
2020-08-09patch 8.2.1411: when splitting a window localdir is copied but prevdir is notv8.2.1411Bram Moolenaar
Problem: when splitting a window localdir is copied but prevdir is not. Solution: Also copy prevdir. (closes #6667)
2020-07-11patch 8.2.1183: assert_fails() checks the last error messagev8.2.1183Bram Moolenaar
Problem: assert_fails() checks the last error message. Solution: Check the first error, it is more relevant. Fix all the tests that rely on the old behavior.
2020-06-14patch 8.2.0976: some 'cpoptions' not testedv8.2.0976Bram Moolenaar
Problem: Some 'cpoptions' not tested. Solution: Add more tests. (Yegappan Lakshmanan, closes #6253)
2020-06-05patch 8.2.0909: cannot go back to the previous local directoryv8.2.0909Bram Moolenaar
Problem: Cannot go back to the previous local directory. Solution: Add "tcd -" and "lcd -". (Yegappan Lakshmanan, closes #4362)
2020-06-01patch 8.2.0876: :pwd does not give a hint about the scope of the directoryv8.2.0876Bram Moolenaar
Problem: :pwd does not give a hint about the scope of the directory Solution: Make ":verbose pwd" show the scope. (Takuya Fujiwara, closes #5469)
2020-04-25patch 8.2.0634: crash with null partial and blobv8.2.0634Bram Moolenaar
Problem: Crash with null partial and blob. Solution: Check for NULL pointer. Add more tests. (Yegappan Lakshmanan, closes #5984)
2020-02-11patch 8.2.0243: insufficient code coverage for ex_docmd.c functionsv8.2.0243Bram Moolenaar
Problem: Insufficient code coverage for ex_docmd.c functions. Solution: Add more tests. (Yegappan Lakshmanan, closes #5618)
2020-01-31patch 8.2.0189: cd() with NULL argument crashesv8.2.0189Bram Moolenaar
Problem: cd() with NULL argument crashes. Solution: Check for NULL. (Ken Takata, closes #5558)
2019-12-27patch 8.2.0049: command line completion not fully testedv8.2.0049Bram Moolenaar
Problem: Command line completion not fully tested. Solution: Add more test cases. Make help sorting stable. (Dominique Pelle, closes #5402)
2019-11-09patch 8.1.2278: using "cd" with "exe" may failv8.1.2278Bram Moolenaar
Problem: Using "cd" with "exe" may fail. Solution: Use chdir() instead.
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-05-07patch 8.1.1291: not easy to change directory and restorev8.1.1291Bram Moolenaar
Problem: Not easy to change directory and restore. Solution: Add the chdir() function. (Yegappan Lakshmanan, closes #4358)
2018-07-03patch 8.1.0144: the :cd command does not have good test coveragev8.1.0144Bram Moolenaar
Problem: The :cd command does not have good test coverage. Solution: Add more tests. (Dominique Pelle, closes #2972)
2017-03-19patch 8.0.0493: crash with cd command with very long argumentv8.0.0493Bram Moolenaar
Problem: Crash with cd command with very long argument. Solution: Check for running out of space. (Dominique pending, closes #1576)