summaryrefslogtreecommitdiff
path: root/src/testdir/test_unlet.vim
Commit message (Collapse)AuthorAgeFilesLines
* patch 8.1.0047: no completion for :unlet $VARv8.1.0047Bram Moolenaar2018-06-121-0/+10
| | | | | Problem: No completion for :unlet $VAR. Solution: Add completion. (Jason Franklin)
* patch 8.0.1832: cannot use :unlet for an environment variablev8.0.1832Bram Moolenaar2018-05-131-0/+24
| | | | | | Problem: Cannot use :unlet for an environment variable. Solution: Make it work. Use unsetenv() if available. (Ken Takata, closes #2855)
* patch 8.0.0344: unlet command leaks memoryv8.0.0344Bram Moolenaar2017-02-201-0/+4
| | | | | Problem: Unlet command leaks memory. (Nikolai Pavlov) Solution: Free the memory on error. (closes #1497)
* patch 7.4.1097v7.4.1097Bram Moolenaar2016-01-151-17/+4
| | | | | Problem: Looking up the alloc ID for tests fails. Solution: Fix the line computation. Use assert_fails() for unlet test.
* patch 7.4.1081v7.4.1081Bram Moolenaar2016-01-101-0/+6
| | | | | Problem: No test for what previously caused a crash. Solution: Add test for unletting errmsg.
* patch 7.4.1051v7.4.1051Bram Moolenaar2016-01-041-0/+26
Problem: Segfault when unletting "count". Solution: Check for readonly and locked first. (Dominique Pelle) Add a test.