summaryrefslogtreecommitdiff
path: root/src/testdir/test_quickfix.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-12-15 12:28:22 +0000
committerBram Moolenaar <Bram@vim.org>2021-12-15 12:28:22 +0000
commita5d78d1f1123d9ffccd5ba58f2d2dec44cc59e94 (patch)
tree514281ec767d602788fa8989b21cc899d91be808 /src/testdir/test_quickfix.vim
parent57bc2333b1d713bc54f8e33ef3ef7ac169af2ac4 (diff)
downloadvim-git-a5d78d1f1123d9ffccd5ba58f2d2dec44cc59e94.tar.gz
patch 8.2.3813: confusing error when using :cc without error listv8.2.3813
Problem: confusing error when using :cc without error list. (Gary Johnson) Solution: Give the "no errors" error.
Diffstat (limited to 'src/testdir/test_quickfix.vim')
-rw-r--r--src/testdir/test_quickfix.vim6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/testdir/test_quickfix.vim b/src/testdir/test_quickfix.vim
index 283e94379..895c52aca 100644
--- a/src/testdir/test_quickfix.vim
+++ b/src/testdir/test_quickfix.vim
@@ -86,6 +86,12 @@ func s:setup_commands(cchar)
endif
endfunc
+" This must be run before any error lists are created.
+func Test_AA_cc_no_errors()
+ call assert_fails('cc', 'E42:')
+ call assert_fails('ll', 'E42:')
+endfunc
+
" Tests for the :clist and :llist commands
func XlistTests(cchar)
call s:setup_commands(a:cchar)