comparison src/testdir/test_quickfix.vim @ 26568:c675779d5f2b v8.2.3813

patch 8.2.3813: confusing error when using :cc without error list Commit: https://github.com/vim/vim/commit/a5d78d1f1123d9ffccd5ba58f2d2dec44cc59e94 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Dec 15 12:28:22 2021 +0000 patch 8.2.3813: confusing error when using :cc without error list Problem: confusing error when using :cc without error list. (Gary Johnson) Solution: Give the "no errors" error.
author Bram Moolenaar <Bram@vim.org>
date Wed, 15 Dec 2021 13:30:04 +0100
parents 33d680d372aa
children b531c26f728b
comparison
equal deleted inserted replaced
26567:703ca708a48c 26568:c675779d5f2b
84 let g:Xsetlist = function('setloclist', [0]) 84 let g:Xsetlist = function('setloclist', [0])
85 call setloclist(0, [], 'f') 85 call setloclist(0, [], 'f')
86 endif 86 endif
87 endfunc 87 endfunc
88 88
89 " This must be run before any error lists are created.
90 func Test_AA_cc_no_errors()
91 call assert_fails('cc', 'E42:')
92 call assert_fails('ll', 'E42:')
93 endfunc
94
89 " Tests for the :clist and :llist commands 95 " Tests for the :clist and :llist commands
90 func XlistTests(cchar) 96 func XlistTests(cchar)
91 call s:setup_commands(a:cchar) 97 call s:setup_commands(a:cchar)
92 98
93 if a:cchar == 'l' 99 if a:cchar == 'l'