diff options
| author | zeertzjq <zeertzjq@outlook.com> | 2022-02-09 21:02:37 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-09 21:02:37 +0800 |
| commit | 9b0b4829c7e49ad2d2c13645b974f9edac987609 (patch) | |
| tree | dec926d6705efe8b028421e483232f769b096dff /src/nvim/testdir/test_quickfix.vim | |
| parent | 60e3940b4a94b2d089147579c7d62747543f0385 (diff) | |
| parent | b9732e555b116e8b6b037d107722ce39add4952f (diff) | |
| download | rneovim-9b0b4829c7e49ad2d2c13645b974f9edac987609.tar.gz rneovim-9b0b4829c7e49ad2d2c13645b974f9edac987609.tar.bz2 rneovim-9b0b4829c7e49ad2d2c13645b974f9edac987609.zip | |
Merge pull request #17345 from zeertzjq/vim-8.2.4329
vim-patch:8.2.4329: no support for end line number and column in 'errorformat'
Diffstat (limited to 'src/nvim/testdir/test_quickfix.vim')
| -rw-r--r-- | src/nvim/testdir/test_quickfix.vim | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_quickfix.vim b/src/nvim/testdir/test_quickfix.vim index 00679e1958..c4d70fb1de 100644 --- a/src/nvim/testdir/test_quickfix.vim +++ b/src/nvim/testdir/test_quickfix.vim @@ -1384,6 +1384,29 @@ func Test_efm_error_type() let &efm = save_efm endfunc +" Test for end_lnum ('%e') and end_col ('%k') fields in 'efm' +func Test_efm_end_lnum_col() + let save_efm = &efm + + " single line + set efm=%f:%l-%e:%c-%k:%t:%m + cexpr ["Xfile1:10-20:1-2:E:msg1", "Xfile1:20-30:2-3:W:msg2",] + let output = split(execute('clist'), "\n") + call assert_equal([ + \ ' 1 Xfile1:10-20 col 1-2 error: msg1', + \ ' 2 Xfile1:20-30 col 2-3 warning: msg2'], output) + + " multiple lines + set efm=%A%n)%m,%Z%f:%l-%e:%c-%k + cexpr ["1)msg1", "Xfile1:14-24:1-2", + \ "2)msg2", "Xfile1:24-34:3-4"] + let output = split(execute('clist'), "\n") + call assert_equal([ + \ ' 1 Xfile1:14-24 col 1-2 error 1: msg1', + \ ' 2 Xfile1:24-34 col 3-4 error 2: msg2'], output) + let &efm = save_efm +endfunc + func XquickfixChangedByAutocmd(cchar) call s:setup_commands(a:cchar) if a:cchar == 'c' |