Mercurial > vim
annotate src/testdir/test_quickfix.vim @ 29767:2e2f57f2875d v9.0.0223
patch 9.0.0223: typo in diffmode test
Commit: https://github.com/vim/vim/commit/5fd6ab820b4a0aaa5c6020852f39d118375fab49
Author: zeertzjq <zeertzjq@outlook.com>
Date: Wed Aug 17 12:09:45 2022 +0100
patch 9.0.0223: typo in diffmode test
Problem: Typo in diffmode test.
Solution: Fix the typo. (closes https://github.com/vim/vim/issues/10932)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Wed, 17 Aug 2022 13:15:03 +0200 |
parents | 3778f9415b92 |
children | 256418aa72ed |
rev | line source |
---|---|
15770
77e97f159554
patch 8.1.0892: failure when closing a window when location list is in use
Bram Moolenaar <Bram@vim.org>
parents:
15740
diff
changeset
|
1 " Test for the quickfix feature. |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
2 |
17089
8e9e9124c7a2
patch 8.1.1544: some balloon tests don't run when they can
Bram Moolenaar <Bram@vim.org>
parents:
17049
diff
changeset
|
3 source check.vim |
27457
4c16acb2525f
patch 8.2.4257: Vim9: finding global function without g: prefix inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
26618
diff
changeset
|
4 import './vim9.vim' as v9 |
17089
8e9e9124c7a2
patch 8.1.1544: some balloon tests don't run when they can
Bram Moolenaar <Bram@vim.org>
parents:
17049
diff
changeset
|
5 CheckFeature quickfix |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
6 |
18090
a6c74689fb97
patch 8.1.2040: no highlighting of current line in quickfix window
Bram Moolenaar <Bram@vim.org>
parents:
18031
diff
changeset
|
7 source screendump.vim |
a6c74689fb97
patch 8.1.2040: no highlighting of current line in quickfix window
Bram Moolenaar <Bram@vim.org>
parents:
18031
diff
changeset
|
8 |
8649
ec78ecf15de7
commit https://github.com/vim/vim/commit/7eba3d2cbf19e731dc51652bc26099cc253d538a
Christian Brabandt <cb@256bit.org>
parents:
8605
diff
changeset
|
9 set encoding=utf-8 |
ec78ecf15de7
commit https://github.com/vim/vim/commit/7eba3d2cbf19e731dc51652bc26099cc253d538a
Christian Brabandt <cb@256bit.org>
parents:
8605
diff
changeset
|
10 |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
11 func s:setup_commands(cchar) |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
12 if a:cchar == 'c' |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
13 command! -nargs=* -bang Xlist <mods>clist<bang> <args> |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
14 command! -nargs=* Xgetexpr <mods>cgetexpr <args> |
9397
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9342
diff
changeset
|
15 command! -nargs=* Xaddexpr <mods>caddexpr <args> |
12084
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
16 command! -nargs=* -count Xolder <mods><count>colder <args> |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
17 command! -nargs=* Xnewer <mods>cnewer <args> |
18656
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
18 command! -nargs=* Xopen <mods> copen <args> |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
19 command! -nargs=* Xwindow <mods>cwindow <args> |
9458
374afcf9d11d
commit https://github.com/vim/vim/commit/537ef08408c50e0c4104d57f74993b3b0ed9560d
Christian Brabandt <cb@256bit.org>
parents:
9432
diff
changeset
|
20 command! -nargs=* Xbottom <mods>cbottom <args> |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
21 command! -nargs=* Xclose <mods>cclose <args> |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
22 command! -nargs=* -bang Xfile <mods>cfile<bang> <args> |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
23 command! -nargs=* Xgetfile <mods>cgetfile <args> |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
24 command! -nargs=* Xaddfile <mods>caddfile <args> |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
25 command! -nargs=* -bang Xbuffer <mods>cbuffer<bang> <args> |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
26 command! -nargs=* Xgetbuffer <mods>cgetbuffer <args> |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
27 command! -nargs=* Xaddbuffer <mods>caddbuffer <args> |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
28 command! -nargs=* Xrewind <mods>crewind <args> |
11378
2ed7a34ecc54
patch 8.0.0574: get only one quickfix list after :caddbuf
Christian Brabandt <cb@256bit.org>
parents:
11301
diff
changeset
|
29 command! -count -nargs=* -bang Xnext <mods><count>cnext<bang> <args> |
2ed7a34ecc54
patch 8.0.0574: get only one quickfix list after :caddbuf
Christian Brabandt <cb@256bit.org>
parents:
11301
diff
changeset
|
30 command! -count -nargs=* -bang Xprev <mods><count>cprev<bang> <args> |
9405
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
31 command! -nargs=* -bang Xfirst <mods>cfirst<bang> <args> |
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
32 command! -nargs=* -bang Xlast <mods>clast<bang> <args> |
16515
6e87a69b8e0c
patch 8.1.1261: no error for quickfix commands with negative range
Bram Moolenaar <Bram@vim.org>
parents:
16505
diff
changeset
|
33 command! -count -nargs=* -bang Xnfile <mods><count>cnfile<bang> <args> |
9405
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
34 command! -nargs=* -bang Xpfile <mods>cpfile<bang> <args> |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
35 command! -nargs=* Xexpr <mods>cexpr <args> |
24547
192058cad081
patch 8.2.2813: cannot grep using fuzzy matching
Bram Moolenaar <Bram@vim.org>
parents:
24059
diff
changeset
|
36 command! -count=999 -nargs=* Xvimgrep <mods> <count>vimgrep <args> |
18656
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
37 command! -nargs=* Xvimgrepadd <mods> vimgrepadd <args> |
9342
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
38 command! -nargs=* Xgrep <mods> grep <args> |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
39 command! -nargs=* Xgrepadd <mods> grepadd <args> |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
40 command! -nargs=* Xhelpgrep helpgrep <args> |
13016
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
41 command! -nargs=0 -count Xcc <count>cc |
16505
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
42 command! -count=1 -nargs=0 Xbelow <mods><count>cbelow |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
43 command! -count=1 -nargs=0 Xabove <mods><count>cabove |
16543
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
44 command! -count=1 -nargs=0 Xbefore <mods><count>cbefore |
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
45 command! -count=1 -nargs=0 Xafter <mods><count>cafter |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
46 let g:Xgetlist = function('getqflist') |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
47 let g:Xsetlist = function('setqflist') |
11263
ae5f9f26f81c
patch 8.0.0517: there is no way to remove quickfix lists
Christian Brabandt <cb@256bit.org>
parents:
11195
diff
changeset
|
48 call setqflist([], 'f') |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
49 else |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
50 command! -nargs=* -bang Xlist <mods>llist<bang> <args> |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
51 command! -nargs=* Xgetexpr <mods>lgetexpr <args> |
9397
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9342
diff
changeset
|
52 command! -nargs=* Xaddexpr <mods>laddexpr <args> |
12084
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
53 command! -nargs=* -count Xolder <mods><count>lolder <args> |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
54 command! -nargs=* Xnewer <mods>lnewer <args> |
18656
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
55 command! -nargs=* Xopen <mods> lopen <args> |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
56 command! -nargs=* Xwindow <mods>lwindow <args> |
9458
374afcf9d11d
commit https://github.com/vim/vim/commit/537ef08408c50e0c4104d57f74993b3b0ed9560d
Christian Brabandt <cb@256bit.org>
parents:
9432
diff
changeset
|
57 command! -nargs=* Xbottom <mods>lbottom <args> |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
58 command! -nargs=* Xclose <mods>lclose <args> |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
59 command! -nargs=* -bang Xfile <mods>lfile<bang> <args> |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
60 command! -nargs=* Xgetfile <mods>lgetfile <args> |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
61 command! -nargs=* Xaddfile <mods>laddfile <args> |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
62 command! -nargs=* -bang Xbuffer <mods>lbuffer<bang> <args> |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
63 command! -nargs=* Xgetbuffer <mods>lgetbuffer <args> |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
64 command! -nargs=* Xaddbuffer <mods>laddbuffer <args> |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
65 command! -nargs=* Xrewind <mods>lrewind <args> |
11378
2ed7a34ecc54
patch 8.0.0574: get only one quickfix list after :caddbuf
Christian Brabandt <cb@256bit.org>
parents:
11301
diff
changeset
|
66 command! -count -nargs=* -bang Xnext <mods><count>lnext<bang> <args> |
2ed7a34ecc54
patch 8.0.0574: get only one quickfix list after :caddbuf
Christian Brabandt <cb@256bit.org>
parents:
11301
diff
changeset
|
67 command! -count -nargs=* -bang Xprev <mods><count>lprev<bang> <args> |
9405
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
68 command! -nargs=* -bang Xfirst <mods>lfirst<bang> <args> |
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
69 command! -nargs=* -bang Xlast <mods>llast<bang> <args> |
16515
6e87a69b8e0c
patch 8.1.1261: no error for quickfix commands with negative range
Bram Moolenaar <Bram@vim.org>
parents:
16505
diff
changeset
|
70 command! -count -nargs=* -bang Xnfile <mods><count>lnfile<bang> <args> |
9405
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
71 command! -nargs=* -bang Xpfile <mods>lpfile<bang> <args> |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
72 command! -nargs=* Xexpr <mods>lexpr <args> |
24547
192058cad081
patch 8.2.2813: cannot grep using fuzzy matching
Bram Moolenaar <Bram@vim.org>
parents:
24059
diff
changeset
|
73 command! -count=999 -nargs=* Xvimgrep <mods> <count>lvimgrep <args> |
18656
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
74 command! -nargs=* Xvimgrepadd <mods> lvimgrepadd <args> |
9342
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
75 command! -nargs=* Xgrep <mods> lgrep <args> |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
76 command! -nargs=* Xgrepadd <mods> lgrepadd <args> |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
77 command! -nargs=* Xhelpgrep lhelpgrep <args> |
13016
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
78 command! -nargs=0 -count Xcc <count>ll |
16505
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
79 command! -count=1 -nargs=0 Xbelow <mods><count>lbelow |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
80 command! -count=1 -nargs=0 Xabove <mods><count>labove |
16543
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
81 command! -count=1 -nargs=0 Xbefore <mods><count>lbefore |
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
82 command! -count=1 -nargs=0 Xafter <mods><count>lafter |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
83 let g:Xgetlist = function('getloclist', [0]) |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
84 let g:Xsetlist = function('setloclist', [0]) |
11263
ae5f9f26f81c
patch 8.0.0517: there is no way to remove quickfix lists
Christian Brabandt <cb@256bit.org>
parents:
11195
diff
changeset
|
85 call setloclist(0, [], 'f') |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
86 endif |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
87 endfunc |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
88 |
26568
c675779d5f2b
patch 8.2.3813: confusing error when using :cc without error list
Bram Moolenaar <Bram@vim.org>
parents:
26526
diff
changeset
|
89 " This must be run before any error lists are created. |
c675779d5f2b
patch 8.2.3813: confusing error when using :cc without error list
Bram Moolenaar <Bram@vim.org>
parents:
26526
diff
changeset
|
90 func Test_AA_cc_no_errors() |
c675779d5f2b
patch 8.2.3813: confusing error when using :cc without error list
Bram Moolenaar <Bram@vim.org>
parents:
26526
diff
changeset
|
91 call assert_fails('cc', 'E42:') |
c675779d5f2b
patch 8.2.3813: confusing error when using :cc without error list
Bram Moolenaar <Bram@vim.org>
parents:
26526
diff
changeset
|
92 call assert_fails('ll', 'E42:') |
c675779d5f2b
patch 8.2.3813: confusing error when using :cc without error list
Bram Moolenaar <Bram@vim.org>
parents:
26526
diff
changeset
|
93 endfunc |
c675779d5f2b
patch 8.2.3813: confusing error when using :cc without error list
Bram Moolenaar <Bram@vim.org>
parents:
26526
diff
changeset
|
94 |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
95 " Tests for the :clist and :llist commands |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
96 func XlistTests(cchar) |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
97 call s:setup_commands(a:cchar) |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
98 |
11263
ae5f9f26f81c
patch 8.0.0517: there is no way to remove quickfix lists
Christian Brabandt <cb@256bit.org>
parents:
11195
diff
changeset
|
99 if a:cchar == 'l' |
ae5f9f26f81c
patch 8.0.0517: there is no way to remove quickfix lists
Christian Brabandt <cb@256bit.org>
parents:
11195
diff
changeset
|
100 call assert_fails('llist', 'E776:') |
ae5f9f26f81c
patch 8.0.0517: there is no way to remove quickfix lists
Christian Brabandt <cb@256bit.org>
parents:
11195
diff
changeset
|
101 endif |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
102 " With an empty list, command should return error |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
103 Xgetexpr [] |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
104 silent! Xlist |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
105 call assert_true(v:errmsg ==# 'E42: No Errors') |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
106 |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
107 " Populate the list and then try |
28421
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
108 let lines =<< trim END |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
109 non-error 1 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
110 Xtestfile1:1:3:Line1 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
111 non-error 2 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
112 Xtestfile2:2:2:Line2 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
113 non-error| 3 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
114 Xtestfile3:3:1:Line3 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
115 END |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
116 Xgetexpr lines |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
117 |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
118 " List only valid entries |
11195
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
119 let l = split(execute('Xlist', ''), "\n") |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
120 call assert_equal([' 2 Xtestfile1:1 col 3: Line1', |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
121 \ ' 4 Xtestfile2:2 col 2: Line2', |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
122 \ ' 6 Xtestfile3:3 col 1: Line3'], l) |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
123 |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
124 " List all the entries |
11195
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
125 let l = split(execute('Xlist!', ''), "\n") |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
126 call assert_equal([' 1: non-error 1', ' 2 Xtestfile1:1 col 3: Line1', |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
127 \ ' 3: non-error 2', ' 4 Xtestfile2:2 col 2: Line2', |
18827
f98368dd6615
patch 8.1.2401: :cexpr does not handle | in expression
Bram Moolenaar <Bram@vim.org>
parents:
18740
diff
changeset
|
128 \ ' 5: non-error| 3', ' 6 Xtestfile3:3 col 1: Line3'], l) |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
129 |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
130 " List a range of errors |
11195
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
131 let l = split(execute('Xlist 3,6', ''), "\n") |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
132 call assert_equal([' 4 Xtestfile2:2 col 2: Line2', |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
133 \ ' 6 Xtestfile3:3 col 1: Line3'], l) |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
134 |
11195
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
135 let l = split(execute('Xlist! 3,4', ''), "\n") |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
136 call assert_equal([' 3: non-error 2', ' 4 Xtestfile2:2 col 2: Line2'], l) |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
137 |
11195
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
138 let l = split(execute('Xlist -6,-4', ''), "\n") |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
139 call assert_equal([' 2 Xtestfile1:1 col 3: Line1'], l) |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
140 |
11195
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
141 let l = split(execute('Xlist! -5,-3', ''), "\n") |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
142 call assert_equal([' 2 Xtestfile1:1 col 3: Line1', |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
143 \ ' 3: non-error 2', ' 4 Xtestfile2:2 col 2: Line2'], l) |
11030
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
144 |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
145 " Test for '+' |
11195
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
146 let l = split(execute('Xlist! +2', ''), "\n") |
11030
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
147 call assert_equal([' 2 Xtestfile1:1 col 3: Line1', |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
148 \ ' 3: non-error 2', ' 4 Xtestfile2:2 col 2: Line2'], l) |
11195
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
149 |
24964
f4aa891a5ab8
patch 8.2.3019: location list only has the start position.
Bram Moolenaar <Bram@vim.org>
parents:
24962
diff
changeset
|
150 " Ranged entries |
f4aa891a5ab8
patch 8.2.3019: location list only has the start position.
Bram Moolenaar <Bram@vim.org>
parents:
24962
diff
changeset
|
151 call g:Xsetlist([{'lnum':10,'text':'Line1'}, |
f4aa891a5ab8
patch 8.2.3019: location list only has the start position.
Bram Moolenaar <Bram@vim.org>
parents:
24962
diff
changeset
|
152 \ {'lnum':20,'col':10,'text':'Line2'}, |
f4aa891a5ab8
patch 8.2.3019: location list only has the start position.
Bram Moolenaar <Bram@vim.org>
parents:
24962
diff
changeset
|
153 \ {'lnum':30,'col':15,'end_col':20,'text':'Line3'}, |
f4aa891a5ab8
patch 8.2.3019: location list only has the start position.
Bram Moolenaar <Bram@vim.org>
parents:
24962
diff
changeset
|
154 \ {'lnum':40,'end_lnum':45,'text':'Line4'}, |
f4aa891a5ab8
patch 8.2.3019: location list only has the start position.
Bram Moolenaar <Bram@vim.org>
parents:
24962
diff
changeset
|
155 \ {'lnum':50,'end_lnum':55,'col':15,'text':'Line5'}, |
f4aa891a5ab8
patch 8.2.3019: location list only has the start position.
Bram Moolenaar <Bram@vim.org>
parents:
24962
diff
changeset
|
156 \ {'lnum':60,'end_lnum':65,'col':25,'end_col':35,'text':'Line6'}]) |
f4aa891a5ab8
patch 8.2.3019: location list only has the start position.
Bram Moolenaar <Bram@vim.org>
parents:
24962
diff
changeset
|
157 let l = split(execute('Xlist', ""), "\n") |
f4aa891a5ab8
patch 8.2.3019: location list only has the start position.
Bram Moolenaar <Bram@vim.org>
parents:
24962
diff
changeset
|
158 call assert_equal([' 1:10: Line1', |
f4aa891a5ab8
patch 8.2.3019: location list only has the start position.
Bram Moolenaar <Bram@vim.org>
parents:
24962
diff
changeset
|
159 \ ' 2:20 col 10: Line2', |
f4aa891a5ab8
patch 8.2.3019: location list only has the start position.
Bram Moolenaar <Bram@vim.org>
parents:
24962
diff
changeset
|
160 \ ' 3:30 col 15-20: Line3', |
f4aa891a5ab8
patch 8.2.3019: location list only has the start position.
Bram Moolenaar <Bram@vim.org>
parents:
24962
diff
changeset
|
161 \ ' 4:40-45: Line4', |
f4aa891a5ab8
patch 8.2.3019: location list only has the start position.
Bram Moolenaar <Bram@vim.org>
parents:
24962
diff
changeset
|
162 \ ' 5:50-55 col 15: Line5', |
f4aa891a5ab8
patch 8.2.3019: location list only has the start position.
Bram Moolenaar <Bram@vim.org>
parents:
24962
diff
changeset
|
163 \ ' 6:60-65 col 25-35: Line6'], l) |
f4aa891a5ab8
patch 8.2.3019: location list only has the start position.
Bram Moolenaar <Bram@vim.org>
parents:
24962
diff
changeset
|
164 |
11195
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
165 " Different types of errors |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
166 call g:Xsetlist([{'lnum':10,'col':5,'type':'W', 'text':'Warning','nr':11}, |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
167 \ {'lnum':20,'col':10,'type':'e','text':'Error','nr':22}, |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
168 \ {'lnum':30,'col':15,'type':'i','text':'Info','nr':33}, |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
169 \ {'lnum':40,'col':20,'type':'x', 'text':'Other','nr':44}, |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
170 \ {'lnum':50,'col':25,'type':"\<C-A>",'text':'one','nr':55}]) |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
171 let l = split(execute('Xlist', ""), "\n") |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
172 call assert_equal([' 1:10 col 5 warning 11: Warning', |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
173 \ ' 2:20 col 10 error 22: Error', |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
174 \ ' 3:30 col 15 info 33: Info', |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
175 \ ' 4:40 col 20 x 44: Other', |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
176 \ ' 5:50 col 25 55: one'], l) |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
177 |
13821
98274127d675
patch 8.0.1782: no simple way to label quickfix entries
Christian Brabandt <cb@256bit.org>
parents:
13819
diff
changeset
|
178 " Test for module names, one needs to explicitly set `'valid':v:true` so |
98274127d675
patch 8.0.1782: no simple way to label quickfix entries
Christian Brabandt <cb@256bit.org>
parents:
13819
diff
changeset
|
179 call g:Xsetlist([ |
98274127d675
patch 8.0.1782: no simple way to label quickfix entries
Christian Brabandt <cb@256bit.org>
parents:
13819
diff
changeset
|
180 \ {'lnum':10,'col':5,'type':'W','module':'Data.Text','text':'ModuleWarning','nr':11,'valid':v:true}, |
98274127d675
patch 8.0.1782: no simple way to label quickfix entries
Christian Brabandt <cb@256bit.org>
parents:
13819
diff
changeset
|
181 \ {'lnum':20,'col':10,'type':'W','module':'Data.Text','filename':'Data/Text.hs','text':'ModuleWarning','nr':22,'valid':v:true}, |
98274127d675
patch 8.0.1782: no simple way to label quickfix entries
Christian Brabandt <cb@256bit.org>
parents:
13819
diff
changeset
|
182 \ {'lnum':30,'col':15,'type':'W','filename':'Data/Text.hs','text':'FileWarning','nr':33,'valid':v:true}]) |
98274127d675
patch 8.0.1782: no simple way to label quickfix entries
Christian Brabandt <cb@256bit.org>
parents:
13819
diff
changeset
|
183 let l = split(execute('Xlist', ""), "\n") |
98274127d675
patch 8.0.1782: no simple way to label quickfix entries
Christian Brabandt <cb@256bit.org>
parents:
13819
diff
changeset
|
184 call assert_equal([' 1 Data.Text:10 col 5 warning 11: ModuleWarning', |
98274127d675
patch 8.0.1782: no simple way to label quickfix entries
Christian Brabandt <cb@256bit.org>
parents:
13819
diff
changeset
|
185 \ ' 2 Data.Text:20 col 10 warning 22: ModuleWarning', |
98274127d675
patch 8.0.1782: no simple way to label quickfix entries
Christian Brabandt <cb@256bit.org>
parents:
13819
diff
changeset
|
186 \ ' 3 Data/Text.hs:30 col 15 warning 33: FileWarning'], l) |
98274127d675
patch 8.0.1782: no simple way to label quickfix entries
Christian Brabandt <cb@256bit.org>
parents:
13819
diff
changeset
|
187 |
29511
3778f9415b92
patch 9.0.0097: long quickfix line is truncated for :clist
Bram Moolenaar <Bram@vim.org>
parents:
29379
diff
changeset
|
188 " Very long line should be displayed. |
3778f9415b92
patch 9.0.0097: long quickfix line is truncated for :clist
Bram Moolenaar <Bram@vim.org>
parents:
29379
diff
changeset
|
189 let text = 'Line' .. repeat('1234567890', 130) |
3778f9415b92
patch 9.0.0097: long quickfix line is truncated for :clist
Bram Moolenaar <Bram@vim.org>
parents:
29379
diff
changeset
|
190 let lines = ['Xtestfile9:2:9:' .. text] |
3778f9415b92
patch 9.0.0097: long quickfix line is truncated for :clist
Bram Moolenaar <Bram@vim.org>
parents:
29379
diff
changeset
|
191 Xgetexpr lines |
3778f9415b92
patch 9.0.0097: long quickfix line is truncated for :clist
Bram Moolenaar <Bram@vim.org>
parents:
29379
diff
changeset
|
192 |
3778f9415b92
patch 9.0.0097: long quickfix line is truncated for :clist
Bram Moolenaar <Bram@vim.org>
parents:
29379
diff
changeset
|
193 let l = split(execute('Xlist', ''), "\n") |
3778f9415b92
patch 9.0.0097: long quickfix line is truncated for :clist
Bram Moolenaar <Bram@vim.org>
parents:
29379
diff
changeset
|
194 call assert_equal([' 1 Xtestfile9:2 col 9: ' .. text] , l) |
3778f9415b92
patch 9.0.0097: long quickfix line is truncated for :clist
Bram Moolenaar <Bram@vim.org>
parents:
29379
diff
changeset
|
195 |
18656
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
196 " For help entries in the quickfix list, only the filename without directory |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
197 " should be displayed |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
198 Xhelpgrep setqflist() |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
199 let l = split(execute('Xlist 1', ''), "\n") |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
200 call assert_match('^ 1 [^\\/]\{-}:', l[0]) |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
201 |
11195
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
202 " Error cases |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
203 call assert_fails('Xlist abc', 'E488:') |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
204 endfunc |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
205 |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
206 func Test_clist() |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
207 call XlistTests('c') |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
208 call XlistTests('l') |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
209 endfunc |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
210 |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
211 " Tests for the :colder, :cnewer, :lolder and :lnewer commands |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
212 " Note that this test assumes that a quickfix/location list is |
7540
b910bb01832a
commit https://github.com/vim/vim/commit/cfc0a350a9fa04f1b0cfa1ba31fbd2847376513f
Christian Brabandt <cb@256bit.org>
parents:
7513
diff
changeset
|
213 " already set by the caller. |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
214 func XageTests(cchar) |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
215 call s:setup_commands(a:cchar) |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
216 |
16215
4202f556aefe
patch 8.1.1112: duplicate code in quickfix file
Bram Moolenaar <Bram@vim.org>
parents:
16019
diff
changeset
|
217 if a:cchar == 'l' |
4202f556aefe
patch 8.1.1112: duplicate code in quickfix file
Bram Moolenaar <Bram@vim.org>
parents:
16019
diff
changeset
|
218 " No location list for the current window |
4202f556aefe
patch 8.1.1112: duplicate code in quickfix file
Bram Moolenaar <Bram@vim.org>
parents:
16019
diff
changeset
|
219 call assert_fails('lolder', 'E776:') |
4202f556aefe
patch 8.1.1112: duplicate code in quickfix file
Bram Moolenaar <Bram@vim.org>
parents:
16019
diff
changeset
|
220 call assert_fails('lnewer', 'E776:') |
4202f556aefe
patch 8.1.1112: duplicate code in quickfix file
Bram Moolenaar <Bram@vim.org>
parents:
16019
diff
changeset
|
221 endif |
4202f556aefe
patch 8.1.1112: duplicate code in quickfix file
Bram Moolenaar <Bram@vim.org>
parents:
16019
diff
changeset
|
222 |
12692
03a6aeea2096
patch 8.0.1224: still interference between test functions
Christian Brabandt <cb@256bit.org>
parents:
12465
diff
changeset
|
223 let list = [{'bufnr': bufnr('%'), 'lnum': 1}] |
11263
ae5f9f26f81c
patch 8.0.0517: there is no way to remove quickfix lists
Christian Brabandt <cb@256bit.org>
parents:
11195
diff
changeset
|
224 call g:Xsetlist(list) |
ae5f9f26f81c
patch 8.0.0517: there is no way to remove quickfix lists
Christian Brabandt <cb@256bit.org>
parents:
11195
diff
changeset
|
225 |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
226 " Jumping to a non existent list should return error |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
227 silent! Xolder 99 |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
228 call assert_true(v:errmsg ==# 'E380: At bottom of quickfix stack') |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
229 |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
230 silent! Xnewer 99 |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
231 call assert_true(v:errmsg ==# 'E381: At top of quickfix stack') |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
232 |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
233 " Add three quickfix/location lists |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
234 Xgetexpr ['Xtestfile1:1:3:Line1'] |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
235 Xgetexpr ['Xtestfile2:2:2:Line2'] |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
236 Xgetexpr ['Xtestfile3:3:1:Line3'] |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
237 |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
238 " Go back two lists |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
239 Xolder |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
240 let l = g:Xgetlist() |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
241 call assert_equal('Line2', l[0].text) |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
242 |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
243 " Go forward two lists |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
244 Xnewer |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
245 let l = g:Xgetlist() |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
246 call assert_equal('Line3', l[0].text) |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
247 |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
248 " Test for the optional count argument |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
249 Xolder 2 |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
250 let l = g:Xgetlist() |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
251 call assert_equal('Line1', l[0].text) |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
252 |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
253 Xnewer 2 |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
254 let l = g:Xgetlist() |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
255 call assert_equal('Line3', l[0].text) |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
256 endfunc |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
257 |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
258 func Test_cage() |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
259 call XageTests('c') |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
260 call XageTests('l') |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
261 endfunc |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
262 |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
263 " Tests for the :cwindow, :lwindow :cclose, :lclose, :copen and :lopen |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
264 " commands |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
265 func XwindowTests(cchar) |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
266 call s:setup_commands(a:cchar) |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
267 |
11263
ae5f9f26f81c
patch 8.0.0517: there is no way to remove quickfix lists
Christian Brabandt <cb@256bit.org>
parents:
11195
diff
changeset
|
268 " Opening the location list window without any errors should fail |
ae5f9f26f81c
patch 8.0.0517: there is no way to remove quickfix lists
Christian Brabandt <cb@256bit.org>
parents:
11195
diff
changeset
|
269 if a:cchar == 'l' |
ae5f9f26f81c
patch 8.0.0517: there is no way to remove quickfix lists
Christian Brabandt <cb@256bit.org>
parents:
11195
diff
changeset
|
270 call assert_fails('lopen', 'E776:') |
27873
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
271 call assert_fails('lwindow', 'E776:') |
11263
ae5f9f26f81c
patch 8.0.0517: there is no way to remove quickfix lists
Christian Brabandt <cb@256bit.org>
parents:
11195
diff
changeset
|
272 endif |
ae5f9f26f81c
patch 8.0.0517: there is no way to remove quickfix lists
Christian Brabandt <cb@256bit.org>
parents:
11195
diff
changeset
|
273 |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
274 " Create a list with no valid entries |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
275 Xgetexpr ['non-error 1', 'non-error 2', 'non-error 3'] |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
276 |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
277 " Quickfix/Location window should not open with no valid errors |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
278 Xwindow |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
279 call assert_true(winnr('$') == 1) |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
280 |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
281 " Create a list with valid entries |
28421
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
282 let lines =<< trim END |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
283 Xtestfile1:1:3:Line1 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
284 Xtestfile2:2:2:Line2 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
285 Xtestfile3:3:1:Line3 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
286 END |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
287 Xgetexpr lines |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
288 |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
289 " Open the window |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
290 Xwindow |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
291 call assert_true(winnr('$') == 2 && winnr() == 2 && |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
292 \ getline('.') ==# 'Xtestfile1|1 col 3| Line1') |
9458
374afcf9d11d
commit https://github.com/vim/vim/commit/537ef08408c50e0c4104d57f74993b3b0ed9560d
Christian Brabandt <cb@256bit.org>
parents:
9432
diff
changeset
|
293 redraw! |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
294 |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
295 " Close the window |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
296 Xclose |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
297 call assert_true(winnr('$') == 1) |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
298 |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
299 " Create a list with no valid entries |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
300 Xgetexpr ['non-error 1', 'non-error 2', 'non-error 3'] |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
301 |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
302 " Open the window |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
303 Xopen 5 |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
304 call assert_true(winnr('$') == 2 && getline('.') ==# '|| non-error 1' |
22083
c67a9d3b3683
patch 8.2.1591: using winheight('.') in tests works but is wrong
Bram Moolenaar <Bram@vim.org>
parents:
22015
diff
changeset
|
305 \ && winheight(0) == 5) |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
306 |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
307 " Opening the window again, should move the cursor to that window |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
308 wincmd t |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
309 Xopen 7 |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
310 call assert_true(winnr('$') == 2 && winnr() == 2 && |
22083
c67a9d3b3683
patch 8.2.1591: using winheight('.') in tests works but is wrong
Bram Moolenaar <Bram@vim.org>
parents:
22015
diff
changeset
|
311 \ winheight(0) == 7 && |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
312 \ getline('.') ==# '|| non-error 1') |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
313 |
18740
d23bb26ba98f
patch 8.1.2360: quickfix test coverage can still be improved
Bram Moolenaar <Bram@vim.org>
parents:
18736
diff
changeset
|
314 " :cnext in quickfix window should move to the next entry |
d23bb26ba98f
patch 8.1.2360: quickfix test coverage can still be improved
Bram Moolenaar <Bram@vim.org>
parents:
18736
diff
changeset
|
315 Xnext |
d23bb26ba98f
patch 8.1.2360: quickfix test coverage can still be improved
Bram Moolenaar <Bram@vim.org>
parents:
18736
diff
changeset
|
316 call assert_equal(2, g:Xgetlist({'idx' : 0}).idx) |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
317 |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
318 " Calling cwindow should close the quickfix window with no valid errors |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
319 Xwindow |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
320 call assert_true(winnr('$') == 1) |
11263
ae5f9f26f81c
patch 8.0.0517: there is no way to remove quickfix lists
Christian Brabandt <cb@256bit.org>
parents:
11195
diff
changeset
|
321 |
18656
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
322 " Specifying the width should adjust the width for a vertically split |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
323 " quickfix window. |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
324 vert Xopen |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
325 call assert_equal(10, winwidth(0)) |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
326 vert Xopen 12 |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
327 call assert_equal(12, winwidth(0)) |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
328 Xclose |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
329 |
21020
6c634e63989c
patch 8.2.1061: insufficient testing for src/window.c
Bram Moolenaar <Bram@vim.org>
parents:
20978
diff
changeset
|
330 " Horizontally or vertically splitting the quickfix window should create a |
6c634e63989c
patch 8.2.1061: insufficient testing for src/window.c
Bram Moolenaar <Bram@vim.org>
parents:
20978
diff
changeset
|
331 " normal window/buffer |
6c634e63989c
patch 8.2.1061: insufficient testing for src/window.c
Bram Moolenaar <Bram@vim.org>
parents:
20978
diff
changeset
|
332 Xopen |
6c634e63989c
patch 8.2.1061: insufficient testing for src/window.c
Bram Moolenaar <Bram@vim.org>
parents:
20978
diff
changeset
|
333 wincmd s |
6c634e63989c
patch 8.2.1061: insufficient testing for src/window.c
Bram Moolenaar <Bram@vim.org>
parents:
20978
diff
changeset
|
334 call assert_equal(0, getwininfo(win_getid())[0].quickfix) |
6c634e63989c
patch 8.2.1061: insufficient testing for src/window.c
Bram Moolenaar <Bram@vim.org>
parents:
20978
diff
changeset
|
335 call assert_equal(0, getwininfo(win_getid())[0].loclist) |
6c634e63989c
patch 8.2.1061: insufficient testing for src/window.c
Bram Moolenaar <Bram@vim.org>
parents:
20978
diff
changeset
|
336 call assert_notequal('quickfix', &buftype) |
6c634e63989c
patch 8.2.1061: insufficient testing for src/window.c
Bram Moolenaar <Bram@vim.org>
parents:
20978
diff
changeset
|
337 close |
6c634e63989c
patch 8.2.1061: insufficient testing for src/window.c
Bram Moolenaar <Bram@vim.org>
parents:
20978
diff
changeset
|
338 Xopen |
6c634e63989c
patch 8.2.1061: insufficient testing for src/window.c
Bram Moolenaar <Bram@vim.org>
parents:
20978
diff
changeset
|
339 wincmd v |
6c634e63989c
patch 8.2.1061: insufficient testing for src/window.c
Bram Moolenaar <Bram@vim.org>
parents:
20978
diff
changeset
|
340 call assert_equal(0, getwininfo(win_getid())[0].quickfix) |
6c634e63989c
patch 8.2.1061: insufficient testing for src/window.c
Bram Moolenaar <Bram@vim.org>
parents:
20978
diff
changeset
|
341 call assert_equal(0, getwininfo(win_getid())[0].loclist) |
6c634e63989c
patch 8.2.1061: insufficient testing for src/window.c
Bram Moolenaar <Bram@vim.org>
parents:
20978
diff
changeset
|
342 call assert_notequal('quickfix', &buftype) |
6c634e63989c
patch 8.2.1061: insufficient testing for src/window.c
Bram Moolenaar <Bram@vim.org>
parents:
20978
diff
changeset
|
343 close |
6c634e63989c
patch 8.2.1061: insufficient testing for src/window.c
Bram Moolenaar <Bram@vim.org>
parents:
20978
diff
changeset
|
344 Xopen |
6c634e63989c
patch 8.2.1061: insufficient testing for src/window.c
Bram Moolenaar <Bram@vim.org>
parents:
20978
diff
changeset
|
345 Xclose |
6c634e63989c
patch 8.2.1061: insufficient testing for src/window.c
Bram Moolenaar <Bram@vim.org>
parents:
20978
diff
changeset
|
346 |
11263
ae5f9f26f81c
patch 8.0.0517: there is no way to remove quickfix lists
Christian Brabandt <cb@256bit.org>
parents:
11195
diff
changeset
|
347 if a:cchar == 'c' |
ae5f9f26f81c
patch 8.0.0517: there is no way to remove quickfix lists
Christian Brabandt <cb@256bit.org>
parents:
11195
diff
changeset
|
348 " Opening the quickfix window in multiple tab pages should reuse the |
ae5f9f26f81c
patch 8.0.0517: there is no way to remove quickfix lists
Christian Brabandt <cb@256bit.org>
parents:
11195
diff
changeset
|
349 " quickfix buffer |
28421
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
350 let lines =<< trim END |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
351 Xtestfile1:1:3:Line1 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
352 Xtestfile2:2:2:Line2 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
353 Xtestfile3:3:1:Line3 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
354 END |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
355 Xgetexpr lines |
11263
ae5f9f26f81c
patch 8.0.0517: there is no way to remove quickfix lists
Christian Brabandt <cb@256bit.org>
parents:
11195
diff
changeset
|
356 Xopen |
ae5f9f26f81c
patch 8.0.0517: there is no way to remove quickfix lists
Christian Brabandt <cb@256bit.org>
parents:
11195
diff
changeset
|
357 let qfbufnum = bufnr('%') |
ae5f9f26f81c
patch 8.0.0517: there is no way to remove quickfix lists
Christian Brabandt <cb@256bit.org>
parents:
11195
diff
changeset
|
358 tabnew |
ae5f9f26f81c
patch 8.0.0517: there is no way to remove quickfix lists
Christian Brabandt <cb@256bit.org>
parents:
11195
diff
changeset
|
359 Xopen |
ae5f9f26f81c
patch 8.0.0517: there is no way to remove quickfix lists
Christian Brabandt <cb@256bit.org>
parents:
11195
diff
changeset
|
360 call assert_equal(qfbufnum, bufnr('%')) |
ae5f9f26f81c
patch 8.0.0517: there is no way to remove quickfix lists
Christian Brabandt <cb@256bit.org>
parents:
11195
diff
changeset
|
361 new | only | tabonly |
ae5f9f26f81c
patch 8.0.0517: there is no way to remove quickfix lists
Christian Brabandt <cb@256bit.org>
parents:
11195
diff
changeset
|
362 endif |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
363 endfunc |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
364 |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
365 func Test_cwindow() |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
366 call XwindowTests('c') |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
367 call XwindowTests('l') |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
368 endfunc |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
369 |
16483
393dd420a753
patch 8.1.1245: ":copen 10" sets height in full-height window
Bram Moolenaar <Bram@vim.org>
parents:
16259
diff
changeset
|
370 func Test_copenHeight() |
393dd420a753
patch 8.1.1245: ":copen 10" sets height in full-height window
Bram Moolenaar <Bram@vim.org>
parents:
16259
diff
changeset
|
371 copen |
393dd420a753
patch 8.1.1245: ":copen 10" sets height in full-height window
Bram Moolenaar <Bram@vim.org>
parents:
16259
diff
changeset
|
372 wincmd H |
393dd420a753
patch 8.1.1245: ":copen 10" sets height in full-height window
Bram Moolenaar <Bram@vim.org>
parents:
16259
diff
changeset
|
373 let height = winheight(0) |
393dd420a753
patch 8.1.1245: ":copen 10" sets height in full-height window
Bram Moolenaar <Bram@vim.org>
parents:
16259
diff
changeset
|
374 copen 10 |
393dd420a753
patch 8.1.1245: ":copen 10" sets height in full-height window
Bram Moolenaar <Bram@vim.org>
parents:
16259
diff
changeset
|
375 call assert_equal(height, winheight(0)) |
393dd420a753
patch 8.1.1245: ":copen 10" sets height in full-height window
Bram Moolenaar <Bram@vim.org>
parents:
16259
diff
changeset
|
376 quit |
393dd420a753
patch 8.1.1245: ":copen 10" sets height in full-height window
Bram Moolenaar <Bram@vim.org>
parents:
16259
diff
changeset
|
377 endfunc |
393dd420a753
patch 8.1.1245: ":copen 10" sets height in full-height window
Bram Moolenaar <Bram@vim.org>
parents:
16259
diff
changeset
|
378 |
18319
4cc8a1a134fc
patch 8.1.2154: quickfix window height wrong when there is a tabline
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
379 func Test_copenHeight_tabline() |
4cc8a1a134fc
patch 8.1.2154: quickfix window height wrong when there is a tabline
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
380 set tabline=foo showtabline=2 |
4cc8a1a134fc
patch 8.1.2154: quickfix window height wrong when there is a tabline
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
381 copen |
4cc8a1a134fc
patch 8.1.2154: quickfix window height wrong when there is a tabline
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
382 wincmd H |
4cc8a1a134fc
patch 8.1.2154: quickfix window height wrong when there is a tabline
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
383 let height = winheight(0) |
4cc8a1a134fc
patch 8.1.2154: quickfix window height wrong when there is a tabline
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
384 copen 10 |
4cc8a1a134fc
patch 8.1.2154: quickfix window height wrong when there is a tabline
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
385 call assert_equal(height, winheight(0)) |
4cc8a1a134fc
patch 8.1.2154: quickfix window height wrong when there is a tabline
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
386 quit |
4cc8a1a134fc
patch 8.1.2154: quickfix window height wrong when there is a tabline
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
387 set tabline& showtabline& |
4cc8a1a134fc
patch 8.1.2154: quickfix window height wrong when there is a tabline
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
388 endfunc |
4cc8a1a134fc
patch 8.1.2154: quickfix window height wrong when there is a tabline
Bram Moolenaar <Bram@vim.org>
parents:
18090
diff
changeset
|
389 |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
390 " Tests for the :cfile, :lfile, :caddfile, :laddfile, :cgetfile and :lgetfile |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
391 " commands. |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
392 func XfileTests(cchar) |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
393 call s:setup_commands(a:cchar) |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
394 |
28421
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
395 let lines =<< trim END |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
396 Xtestfile1:700:10:Line 700 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
397 Xtestfile2:800:15:Line 800 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
398 END |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
399 call writefile(lines, 'Xqftestfile1') |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
400 |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
401 enew! |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
402 Xfile Xqftestfile1 |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
403 let l = g:Xgetlist() |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
404 call assert_true(len(l) == 2 && |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
405 \ l[0].lnum == 700 && l[0].col == 10 && l[0].text ==# 'Line 700' && |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
406 \ l[1].lnum == 800 && l[1].col == 15 && l[1].text ==# 'Line 800') |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
407 |
9342
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
408 " Test with a non existent file |
22087
ff21e2962490
patch 8.2.1593: tests do not check the error number properly
Bram Moolenaar <Bram@vim.org>
parents:
22083
diff
changeset
|
409 call assert_fails('Xfile non_existent_file', 'E40:') |
9342
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
410 |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
411 " Run cfile/lfile from a modified buffer |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
412 enew! |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
413 silent! put ='Quickfix' |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
414 silent! Xfile Xqftestfile1 |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
415 call assert_true(v:errmsg ==# 'E37: No write since last change (add ! to override)') |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
416 |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
417 call writefile(['Xtestfile3:900:30:Line 900'], 'Xqftestfile1') |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
418 Xaddfile Xqftestfile1 |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
419 let l = g:Xgetlist() |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
420 call assert_true(len(l) == 3 && |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
421 \ l[2].lnum == 900 && l[2].col == 30 && l[2].text ==# 'Line 900') |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
422 |
28421
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
423 let lines =<< trim END |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
424 Xtestfile1:222:77:Line 222 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
425 Xtestfile2:333:88:Line 333 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
426 END |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
427 call writefile(lines, 'Xqftestfile1') |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
428 |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
429 enew! |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
430 Xgetfile Xqftestfile1 |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
431 let l = g:Xgetlist() |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
432 call assert_true(len(l) == 2 && |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
433 \ l[0].lnum == 222 && l[0].col == 77 && l[0].text ==# 'Line 222' && |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
434 \ l[1].lnum == 333 && l[1].col == 88 && l[1].text ==# 'Line 333') |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
435 |
18695
48ded92ce361
patch 8.1.2339: insufficient testing for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18660
diff
changeset
|
436 " Test for a file with a long line and without a newline at the end |
48ded92ce361
patch 8.1.2339: insufficient testing for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18660
diff
changeset
|
437 let text = repeat('x', 1024) |
48ded92ce361
patch 8.1.2339: insufficient testing for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18660
diff
changeset
|
438 let t = 'a.txt:18:' . text |
48ded92ce361
patch 8.1.2339: insufficient testing for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18660
diff
changeset
|
439 call writefile([t], 'Xqftestfile1', 'b') |
48ded92ce361
patch 8.1.2339: insufficient testing for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18660
diff
changeset
|
440 silent! Xfile Xqftestfile1 |
48ded92ce361
patch 8.1.2339: insufficient testing for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18660
diff
changeset
|
441 call assert_equal(text, g:Xgetlist()[0].text) |
48ded92ce361
patch 8.1.2339: insufficient testing for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18660
diff
changeset
|
442 |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
443 call delete('Xqftestfile1') |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
444 endfunc |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
445 |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
446 func Test_cfile() |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
447 call XfileTests('c') |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
448 call XfileTests('l') |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
449 endfunc |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
450 |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
451 " Tests for the :cbuffer, :lbuffer, :caddbuffer, :laddbuffer, :cgetbuffer and |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
452 " :lgetbuffer commands. |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
453 func XbufferTests(cchar) |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
454 call s:setup_commands(a:cchar) |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
455 |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
456 enew! |
28421
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
457 let lines =<< trim END |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
458 Xtestfile7:700:10:Line 700 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
459 Xtestfile8:800:15:Line 800 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
460 END |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
461 silent! call setline(1, lines) |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
462 Xbuffer! |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
463 let l = g:Xgetlist() |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
464 call assert_true(len(l) == 2 && |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
465 \ l[0].lnum == 700 && l[0].col == 10 && l[0].text ==# 'Line 700' && |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
466 \ l[1].lnum == 800 && l[1].col == 15 && l[1].text ==# 'Line 800') |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
467 |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
468 enew! |
28421
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
469 let lines =<< trim END |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
470 Xtestfile9:900:55:Line 900 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
471 Xtestfile10:950:66:Line 950 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
472 END |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
473 silent! call setline(1, lines) |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
474 Xgetbuffer |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
475 let l = g:Xgetlist() |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
476 call assert_true(len(l) == 2 && |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
477 \ l[0].lnum == 900 && l[0].col == 55 && l[0].text ==# 'Line 900' && |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
478 \ l[1].lnum == 950 && l[1].col == 66 && l[1].text ==# 'Line 950') |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
479 |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
480 enew! |
28421
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
481 let lines =<< trim END |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
482 Xtestfile11:700:20:Line 700 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
483 Xtestfile12:750:25:Line 750 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
484 END |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
485 silent! call setline(1, lines) |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
486 Xaddbuffer |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
487 let l = g:Xgetlist() |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
488 call assert_true(len(l) == 4 && |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
489 \ l[1].lnum == 950 && l[1].col == 66 && l[1].text ==# 'Line 950' && |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
490 \ l[2].lnum == 700 && l[2].col == 20 && l[2].text ==# 'Line 700' && |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
491 \ l[3].lnum == 750 && l[3].col == 25 && l[3].text ==# 'Line 750') |
9309
178252c6850e
commit https://github.com/vim/vim/commit/ab47c61f46f0797308217cd3c045472cb0ec3195
Christian Brabandt <cb@256bit.org>
parents:
9258
diff
changeset
|
492 enew! |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
493 |
11195
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
494 " Check for invalid buffer |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
495 call assert_fails('Xbuffer 199', 'E474:') |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
496 |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
497 " Check for unloaded buffer |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
498 edit Xtestfile1 |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
499 let bnr = bufnr('%') |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
500 enew! |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
501 call assert_fails('Xbuffer ' . bnr, 'E681:') |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
502 |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
503 " Check for invalid range |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
504 " Using Xbuffer will not run the range check in the cbuffer/lbuffer |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
505 " commands. So directly call the commands. |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
506 if (a:cchar == 'c') |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
507 call assert_fails('900,999cbuffer', 'E16:') |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
508 else |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
509 call assert_fails('900,999lbuffer', 'E16:') |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
510 endif |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
511 endfunc |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
512 |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
513 func Test_cbuffer() |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
514 call XbufferTests('c') |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
515 call XbufferTests('l') |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
516 endfunc |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
517 |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
518 func XexprTests(cchar) |
9405
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
519 call s:setup_commands(a:cchar) |
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
520 |
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
521 call assert_fails('Xexpr 10', 'E777:') |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
522 endfunc |
9405
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
523 |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
524 func Test_cexpr() |
9405
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
525 call XexprTests('c') |
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
526 call XexprTests('l') |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
527 endfunc |
9405
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
528 |
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
529 " Tests for :cnext, :cprev, :cfirst, :clast commands |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
530 func Xtest_browse(cchar) |
9405
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
531 call s:setup_commands(a:cchar) |
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
532 |
13016
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
533 call g:Xsetlist([], 'f') |
11263
ae5f9f26f81c
patch 8.0.0517: there is no way to remove quickfix lists
Christian Brabandt <cb@256bit.org>
parents:
11195
diff
changeset
|
534 " Jumping to first or next location list entry without any error should |
ae5f9f26f81c
patch 8.0.0517: there is no way to remove quickfix lists
Christian Brabandt <cb@256bit.org>
parents:
11195
diff
changeset
|
535 " result in failure |
13016
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
536 if a:cchar == 'c' |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
537 let err = 'E42:' |
18740
d23bb26ba98f
patch 8.1.2360: quickfix test coverage can still be improved
Bram Moolenaar <Bram@vim.org>
parents:
18736
diff
changeset
|
538 let cmd = '$cc' |
13016
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
539 else |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
540 let err = 'E776:' |
18740
d23bb26ba98f
patch 8.1.2360: quickfix test coverage can still be improved
Bram Moolenaar <Bram@vim.org>
parents:
18736
diff
changeset
|
541 let cmd = '$ll' |
11263
ae5f9f26f81c
patch 8.0.0517: there is no way to remove quickfix lists
Christian Brabandt <cb@256bit.org>
parents:
11195
diff
changeset
|
542 endif |
13016
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
543 call assert_fails('Xnext', err) |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
544 call assert_fails('Xprev', err) |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
545 call assert_fails('Xnfile', err) |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
546 call assert_fails('Xpfile', err) |
18740
d23bb26ba98f
patch 8.1.2360: quickfix test coverage can still be improved
Bram Moolenaar <Bram@vim.org>
parents:
18736
diff
changeset
|
547 call assert_fails(cmd, err) |
11263
ae5f9f26f81c
patch 8.0.0517: there is no way to remove quickfix lists
Christian Brabandt <cb@256bit.org>
parents:
11195
diff
changeset
|
548 |
18656
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
549 Xexpr '' |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
550 call assert_fails(cmd, 'E42:') |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
551 |
9405
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
552 call s:create_test_file('Xqftestfile1') |
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
553 call s:create_test_file('Xqftestfile2') |
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
554 |
28421
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
555 let lines =<< trim END |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
556 Xqftestfile1:5:Line5 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
557 Xqftestfile1:6:Line6 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
558 Xqftestfile2:10:Line10 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
559 Xqftestfile2:11:Line11 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
560 RegularLine1 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
561 RegularLine2 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
562 END |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
563 Xgetexpr lines |
9405
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
564 |
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
565 Xfirst |
19471
cb73f4ae6b7c
patch 8.2.0293: various Ex commands not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
19435
diff
changeset
|
566 call assert_fails('-5Xcc', 'E16:') |
22087
ff21e2962490
patch 8.2.1593: tests do not check the error number properly
Bram Moolenaar <Bram@vim.org>
parents:
22083
diff
changeset
|
567 call assert_fails('Xprev', 'E553:') |
ff21e2962490
patch 8.2.1593: tests do not check the error number properly
Bram Moolenaar <Bram@vim.org>
parents:
22083
diff
changeset
|
568 call assert_fails('Xpfile', 'E553:') |
9405
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
569 Xnfile |
20978
2c3e7a6bd6c6
patch 8.2.1040: not enough testing for movement commands
Bram Moolenaar <Bram@vim.org>
parents:
20814
diff
changeset
|
570 call assert_equal('Xqftestfile2', @%) |
9405
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
571 call assert_equal(10, line('.')) |
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
572 Xpfile |
20978
2c3e7a6bd6c6
patch 8.2.1040: not enough testing for movement commands
Bram Moolenaar <Bram@vim.org>
parents:
20814
diff
changeset
|
573 call assert_equal('Xqftestfile1', @%) |
9405
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
574 call assert_equal(6, line('.')) |
13016
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
575 5Xcc |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
576 call assert_equal(5, g:Xgetlist({'idx':0}).idx) |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
577 2Xcc |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
578 call assert_equal(2, g:Xgetlist({'idx':0}).idx) |
18656
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
579 if a:cchar == 'c' |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
580 cc |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
581 else |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
582 ll |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
583 endif |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
584 call assert_equal(2, g:Xgetlist({'idx':0}).idx) |
13016
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
585 10Xcc |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
586 call assert_equal(6, g:Xgetlist({'idx':0}).idx) |
9405
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
587 Xlast |
11378
2ed7a34ecc54
patch 8.0.0574: get only one quickfix list after :caddbuf
Christian Brabandt <cb@256bit.org>
parents:
11301
diff
changeset
|
588 Xprev |
20978
2c3e7a6bd6c6
patch 8.2.1040: not enough testing for movement commands
Bram Moolenaar <Bram@vim.org>
parents:
20814
diff
changeset
|
589 call assert_equal('Xqftestfile2', @%) |
9405
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
590 call assert_equal(11, line('.')) |
22087
ff21e2962490
patch 8.2.1593: tests do not check the error number properly
Bram Moolenaar <Bram@vim.org>
parents:
22083
diff
changeset
|
591 call assert_fails('Xnext', 'E553:') |
ff21e2962490
patch 8.2.1593: tests do not check the error number properly
Bram Moolenaar <Bram@vim.org>
parents:
22083
diff
changeset
|
592 call assert_fails('Xnfile', 'E553:') |
18656
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
593 " To process the range using quickfix list entries, directly use the |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
594 " quickfix commands (don't use the user defined commands) |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
595 if a:cchar == 'c' |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
596 $cc |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
597 else |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
598 $ll |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
599 endif |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
600 call assert_equal(6, g:Xgetlist({'idx':0}).idx) |
9405
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
601 Xrewind |
20978
2c3e7a6bd6c6
patch 8.2.1040: not enough testing for movement commands
Bram Moolenaar <Bram@vim.org>
parents:
20814
diff
changeset
|
602 call assert_equal('Xqftestfile1', @%) |
9405
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
603 call assert_equal(5, line('.')) |
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
604 |
11378
2ed7a34ecc54
patch 8.0.0574: get only one quickfix list after :caddbuf
Christian Brabandt <cb@256bit.org>
parents:
11301
diff
changeset
|
605 10Xnext |
20978
2c3e7a6bd6c6
patch 8.2.1040: not enough testing for movement commands
Bram Moolenaar <Bram@vim.org>
parents:
20814
diff
changeset
|
606 call assert_equal('Xqftestfile2', @%) |
11378
2ed7a34ecc54
patch 8.0.0574: get only one quickfix list after :caddbuf
Christian Brabandt <cb@256bit.org>
parents:
11301
diff
changeset
|
607 call assert_equal(11, line('.')) |
2ed7a34ecc54
patch 8.0.0574: get only one quickfix list after :caddbuf
Christian Brabandt <cb@256bit.org>
parents:
11301
diff
changeset
|
608 10Xprev |
20978
2c3e7a6bd6c6
patch 8.2.1040: not enough testing for movement commands
Bram Moolenaar <Bram@vim.org>
parents:
20814
diff
changeset
|
609 call assert_equal('Xqftestfile1', @%) |
11378
2ed7a34ecc54
patch 8.0.0574: get only one quickfix list after :caddbuf
Christian Brabandt <cb@256bit.org>
parents:
11301
diff
changeset
|
610 call assert_equal(5, line('.')) |
2ed7a34ecc54
patch 8.0.0574: get only one quickfix list after :caddbuf
Christian Brabandt <cb@256bit.org>
parents:
11301
diff
changeset
|
611 |
13016
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
612 " Jumping to an error from the error window using cc command |
28421
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
613 let lines =<< trim END |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
614 Xqftestfile1:5:Line5 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
615 Xqftestfile1:6:Line6 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
616 Xqftestfile2:10:Line10 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
617 Xqftestfile2:11:Line11 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
618 END |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
619 Xgetexpr lines |
13016
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
620 Xopen |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
621 10Xcc |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
622 call assert_equal(11, line('.')) |
20978
2c3e7a6bd6c6
patch 8.2.1040: not enough testing for movement commands
Bram Moolenaar <Bram@vim.org>
parents:
20814
diff
changeset
|
623 call assert_equal('Xqftestfile2', @%) |
19407
2f4be7ca1b1b
patch 8.2.0261: some code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents:
19370
diff
changeset
|
624 Xopen |
2f4be7ca1b1b
patch 8.2.0261: some code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents:
19370
diff
changeset
|
625 call cursor(2, 1) |
2f4be7ca1b1b
patch 8.2.0261: some code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents:
19370
diff
changeset
|
626 if a:cchar == 'c' |
2f4be7ca1b1b
patch 8.2.0261: some code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents:
19370
diff
changeset
|
627 .cc |
2f4be7ca1b1b
patch 8.2.0261: some code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents:
19370
diff
changeset
|
628 else |
2f4be7ca1b1b
patch 8.2.0261: some code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents:
19370
diff
changeset
|
629 .ll |
2f4be7ca1b1b
patch 8.2.0261: some code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents:
19370
diff
changeset
|
630 endif |
2f4be7ca1b1b
patch 8.2.0261: some code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents:
19370
diff
changeset
|
631 call assert_equal(6, line('.')) |
20978
2c3e7a6bd6c6
patch 8.2.1040: not enough testing for movement commands
Bram Moolenaar <Bram@vim.org>
parents:
20814
diff
changeset
|
632 call assert_equal('Xqftestfile1', @%) |
13016
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
633 |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
634 " Jumping to an error from the error window (when only the error window is |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
635 " present) |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
636 Xopen | only |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
637 Xlast 1 |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
638 call assert_equal(5, line('.')) |
20978
2c3e7a6bd6c6
patch 8.2.1040: not enough testing for movement commands
Bram Moolenaar <Bram@vim.org>
parents:
20814
diff
changeset
|
639 call assert_equal('Xqftestfile1', @%) |
13016
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
640 |
11195
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
641 Xexpr "" |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
642 call assert_fails('Xnext', 'E42:') |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
643 |
9405
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
644 call delete('Xqftestfile1') |
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
645 call delete('Xqftestfile2') |
12465
805f7fd40e0d
patch 8.0.1112: can't get size or current index from quickfix list
Christian Brabandt <cb@256bit.org>
parents:
12427
diff
changeset
|
646 |
805f7fd40e0d
patch 8.0.1112: can't get size or current index from quickfix list
Christian Brabandt <cb@256bit.org>
parents:
12427
diff
changeset
|
647 " Should be able to use next/prev with invalid entries |
805f7fd40e0d
patch 8.0.1112: can't get size or current index from quickfix list
Christian Brabandt <cb@256bit.org>
parents:
12427
diff
changeset
|
648 Xexpr "" |
805f7fd40e0d
patch 8.0.1112: can't get size or current index from quickfix list
Christian Brabandt <cb@256bit.org>
parents:
12427
diff
changeset
|
649 call assert_equal(0, g:Xgetlist({'idx' : 0}).idx) |
805f7fd40e0d
patch 8.0.1112: can't get size or current index from quickfix list
Christian Brabandt <cb@256bit.org>
parents:
12427
diff
changeset
|
650 call assert_equal(0, g:Xgetlist({'size' : 0}).size) |
18827
f98368dd6615
patch 8.1.2401: :cexpr does not handle | in expression
Bram Moolenaar <Bram@vim.org>
parents:
18740
diff
changeset
|
651 Xaddexpr ['foo', 'bar', 'baz', 'quux', 'sh|moo'] |
12465
805f7fd40e0d
patch 8.0.1112: can't get size or current index from quickfix list
Christian Brabandt <cb@256bit.org>
parents:
12427
diff
changeset
|
652 call assert_equal(5, g:Xgetlist({'size' : 0}).size) |
805f7fd40e0d
patch 8.0.1112: can't get size or current index from quickfix list
Christian Brabandt <cb@256bit.org>
parents:
12427
diff
changeset
|
653 Xlast |
805f7fd40e0d
patch 8.0.1112: can't get size or current index from quickfix list
Christian Brabandt <cb@256bit.org>
parents:
12427
diff
changeset
|
654 call assert_equal(5, g:Xgetlist({'idx' : 0}).idx) |
805f7fd40e0d
patch 8.0.1112: can't get size or current index from quickfix list
Christian Brabandt <cb@256bit.org>
parents:
12427
diff
changeset
|
655 Xfirst |
805f7fd40e0d
patch 8.0.1112: can't get size or current index from quickfix list
Christian Brabandt <cb@256bit.org>
parents:
12427
diff
changeset
|
656 call assert_equal(1, g:Xgetlist({'idx' : 0}).idx) |
805f7fd40e0d
patch 8.0.1112: can't get size or current index from quickfix list
Christian Brabandt <cb@256bit.org>
parents:
12427
diff
changeset
|
657 2Xnext |
805f7fd40e0d
patch 8.0.1112: can't get size or current index from quickfix list
Christian Brabandt <cb@256bit.org>
parents:
12427
diff
changeset
|
658 call assert_equal(3, g:Xgetlist({'idx' : 0}).idx) |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
659 endfunc |
9405
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
660 |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
661 func Test_browse() |
9405
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
662 call Xtest_browse('c') |
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
663 call Xtest_browse('l') |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
664 endfunc |
9405
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
665 |
27897
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
666 " Test for memory allocation failures |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
667 func Xnomem_tests(cchar) |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
668 call s:setup_commands(a:cchar) |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
669 |
9121
7350959e53c3
commit https://github.com/vim/vim/commit/8e8df251bf2505e5decf258397c6069fbe5e2e01
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
670 call test_alloc_fail(GetAllocId('qf_dirname_start'), 0, 0) |
27897
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
671 call assert_fails('Xvimgrep vim runtest.vim', 'E342:') |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
672 |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
673 call test_alloc_fail(GetAllocId('qf_dirname_now'), 0, 0) |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
674 call assert_fails('Xvimgrep vim runtest.vim', 'E342:') |
7513
37e061ec063c
commit https://github.com/vim/vim/commit/75bdf6aa30a5c99d67c42886cf7a4a000bbaa422
Christian Brabandt <cb@256bit.org>
parents:
7502
diff
changeset
|
675 |
9121
7350959e53c3
commit https://github.com/vim/vim/commit/8e8df251bf2505e5decf258397c6069fbe5e2e01
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
676 call test_alloc_fail(GetAllocId('qf_namebuf'), 0, 0) |
27897
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
677 call assert_fails('Xfile runtest.vim', 'E342:') |
7513
37e061ec063c
commit https://github.com/vim/vim/commit/75bdf6aa30a5c99d67c42886cf7a4a000bbaa422
Christian Brabandt <cb@256bit.org>
parents:
7502
diff
changeset
|
678 |
9121
7350959e53c3
commit https://github.com/vim/vim/commit/8e8df251bf2505e5decf258397c6069fbe5e2e01
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
679 call test_alloc_fail(GetAllocId('qf_errmsg'), 0, 0) |
27897
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
680 call assert_fails('Xfile runtest.vim', 'E342:') |
7513
37e061ec063c
commit https://github.com/vim/vim/commit/75bdf6aa30a5c99d67c42886cf7a4a000bbaa422
Christian Brabandt <cb@256bit.org>
parents:
7502
diff
changeset
|
681 |
9121
7350959e53c3
commit https://github.com/vim/vim/commit/8e8df251bf2505e5decf258397c6069fbe5e2e01
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
682 call test_alloc_fail(GetAllocId('qf_pattern'), 0, 0) |
27897
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
683 call assert_fails('Xfile runtest.vim', 'E342:') |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
684 |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
685 call test_alloc_fail(GetAllocId('qf_efm_fmtstr'), 0, 0) |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
686 set efm=%f |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
687 call assert_fails('Xexpr ["Xfile1"]', 'E342:') |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
688 set efm& |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
689 |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
690 call test_alloc_fail(GetAllocId('qf_efm_fmtpart'), 0, 0) |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
691 set efm=%f:%l:%m,%f-%l-%m |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
692 call assert_fails('Xaddexpr ["Xfile2", "Xfile3"]', 'E342:') |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
693 set efm& |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
694 |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
695 call test_alloc_fail(GetAllocId('qf_title'), 0, 0) |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
696 call assert_fails('Xexpr ""', 'E342:') |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
697 call assert_equal('', g:Xgetlist({'all': 1}).title) |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
698 |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
699 call test_alloc_fail(GetAllocId('qf_mef_name'), 0, 0) |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
700 set makeef=Xtmp##.err |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
701 call assert_fails('Xgrep needle haystack', 'E342:') |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
702 set makeef& |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
703 |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
704 call test_alloc_fail(GetAllocId('qf_qfline'), 0, 0) |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
705 call assert_fails('Xexpr "Xfile1:10:Line10"', 'E342:') |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
706 |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
707 if a:cchar == 'l' |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
708 for id in ['qf_qfline', 'qf_qfinfo'] |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
709 lgetexpr ["Xfile1:10:L10", "Xfile2:20:L20"] |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
710 call test_alloc_fail(GetAllocId(id), 0, 0) |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
711 call assert_fails('new', 'E342:') |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
712 call assert_equal(2, winnr('$')) |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
713 call assert_equal([], getloclist(0)) |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
714 %bw! |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
715 endfor |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
716 endif |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
717 |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
718 call test_alloc_fail(GetAllocId('qf_qfline'), 0, 0) |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
719 try |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
720 call assert_fails('Xvimgrep vim runtest.vim', 'E342:') |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
721 catch /^Vim:Interrupt$/ |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
722 endtry |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
723 |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
724 call test_alloc_fail(GetAllocId('qf_qfline'), 0, 0) |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
725 try |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
726 call assert_fails('Xvimgrep /vim/f runtest.vim', 'E342:') |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
727 catch /^Vim:Interrupt$/ |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
728 endtry |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
729 |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
730 let l = getqflist({"lines": ["Xfile1:10:L10"]}) |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
731 call test_alloc_fail(GetAllocId('qf_qfline'), 0, 0) |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
732 call assert_fails('call g:Xsetlist(l.items)', 'E342:') |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
733 |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
734 call test_alloc_fail(GetAllocId('qf_qfline'), 0, 0) |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
735 try |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
736 call assert_fails('Xhelpgrep quickfix', 'E342:') |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
737 catch /^Vim:Interrupt$/ |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
738 endtry |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
739 |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
740 call test_alloc_fail(GetAllocId('qf_qfinfo'), 0, 0) |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
741 call assert_fails('let l = g:Xgetlist({"lines": ["Xfile1:10:L10"]})', 'E342:') |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
742 call assert_equal(#{items: []}, l) |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
743 |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
744 if a:cchar == 'l' |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
745 call setqflist([], 'f') |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
746 call setloclist(0, [], 'f') |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
747 call test_alloc_fail(GetAllocId('qf_qfinfo'), 0, 0) |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
748 call assert_fails('lhelpgrep quickfix', 'E342:') |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
749 call assert_equal([], getloclist(0)) |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
750 |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
751 call test_alloc_fail(GetAllocId('qf_qfinfo'), 0, 0) |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
752 call assert_fails('lvimgrep vim runtest.vim', 'E342:') |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
753 |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
754 let l = getqflist({"lines": ["Xfile1:10:L10"]}) |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
755 call test_alloc_fail(GetAllocId('qf_qfinfo'), 0, 0) |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
756 call assert_fails('call setloclist(0, l.items)', 'E342:') |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
757 |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
758 call test_alloc_fail(GetAllocId('qf_qfinfo'), 0, 0) |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
759 call assert_fails('lbuffer', 'E342:') |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
760 |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
761 call test_alloc_fail(GetAllocId('qf_qfinfo'), 0, 0) |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
762 call assert_fails('lexpr ["Xfile1:10:L10", "Xfile2:20:L20"]', 'E342:') |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
763 |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
764 call test_alloc_fail(GetAllocId('qf_qfinfo'), 0, 0) |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
765 call assert_fails('lfile runtest.vim', 'E342:') |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
766 endif |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
767 |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
768 call test_alloc_fail(GetAllocId('qf_dirstack'), 0, 0) |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
769 set efm=%DEntering\ dir\ %f,%f:%l:%m |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
770 call assert_fails('Xexpr ["Entering dir abc", "abc.txt:1:Hello world"]', 'E342:') |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
771 set efm& |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
772 |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
773 call test_alloc_fail(GetAllocId('qf_dirstack'), 0, 0) |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
774 set efm=%+P[%f],(%l)%m |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
775 call assert_fails('Xexpr ["[runtest.vim]", "(1)Hello"]', 'E342:') |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
776 set efm& |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
777 |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
778 call test_alloc_fail(GetAllocId('qf_multiline_pfx'), 0, 0) |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
779 set efm=%EError,%Cline\ %l,%Z%m |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
780 call assert_fails('Xexpr ["Error", "line 1", "msg"]', 'E342:') |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
781 set efm& |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
782 |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
783 call test_alloc_fail(GetAllocId('qf_makecmd'), 0, 0) |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
784 call assert_fails('Xgrep vim runtest.vim', 'E342:') |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
785 |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
786 call test_alloc_fail(GetAllocId('qf_linebuf'), 0, 0) |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
787 call assert_fails('Xexpr repeat("a", 8192)', 'E342:') |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
788 |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
789 call test_alloc_fail(GetAllocId('qf_linebuf'), 0, 0) |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
790 call assert_fails('Xexpr [repeat("a", 8192)]', 'E342:') |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
791 |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
792 new |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
793 call setline(1, repeat('a', 8192)) |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
794 call test_alloc_fail(GetAllocId('qf_linebuf'), 0, 0) |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
795 call assert_fails('Xbuffer', 'E342:') |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
796 %bw! |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
797 |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
798 call writefile([repeat('a', 8192)], 'Xtest') |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
799 call test_alloc_fail(GetAllocId('qf_linebuf'), 0, 0) |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
800 call assert_fails('Xfile Xtest', 'E342:') |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
801 call delete('Xtest') |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
802 endfunc |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
803 |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
804 func Test_nomem() |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
805 call Xnomem_tests('c') |
2a2c0958a913
patch 8.2.4474: memory allocation failures not tested in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27873
diff
changeset
|
806 call Xnomem_tests('l') |
7513
37e061ec063c
commit https://github.com/vim/vim/commit/75bdf6aa30a5c99d67c42886cf7a4a000bbaa422
Christian Brabandt <cb@256bit.org>
parents:
7502
diff
changeset
|
807 endfunc |
37e061ec063c
commit https://github.com/vim/vim/commit/75bdf6aa30a5c99d67c42886cf7a4a000bbaa422
Christian Brabandt <cb@256bit.org>
parents:
7502
diff
changeset
|
808 |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
809 func s:test_xhelpgrep(cchar) |
9342
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
810 call s:setup_commands(a:cchar) |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
811 Xhelpgrep quickfix |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
812 Xopen |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
813 if a:cchar == 'c' |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
814 let title_text = ':helpgrep quickfix' |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
815 else |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
816 let title_text = ':lhelpgrep quickfix' |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
817 endif |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
818 call assert_true(w:quickfix_title =~ title_text, w:quickfix_title) |
11378
2ed7a34ecc54
patch 8.0.0574: get only one quickfix list after :caddbuf
Christian Brabandt <cb@256bit.org>
parents:
11301
diff
changeset
|
819 |
2ed7a34ecc54
patch 8.0.0574: get only one quickfix list after :caddbuf
Christian Brabandt <cb@256bit.org>
parents:
11301
diff
changeset
|
820 " Jumping to a help topic should open the help window |
2ed7a34ecc54
patch 8.0.0574: get only one quickfix list after :caddbuf
Christian Brabandt <cb@256bit.org>
parents:
11301
diff
changeset
|
821 only |
2ed7a34ecc54
patch 8.0.0574: get only one quickfix list after :caddbuf
Christian Brabandt <cb@256bit.org>
parents:
11301
diff
changeset
|
822 Xnext |
2ed7a34ecc54
patch 8.0.0574: get only one quickfix list after :caddbuf
Christian Brabandt <cb@256bit.org>
parents:
11301
diff
changeset
|
823 call assert_true(&buftype == 'help') |
2ed7a34ecc54
patch 8.0.0574: get only one quickfix list after :caddbuf
Christian Brabandt <cb@256bit.org>
parents:
11301
diff
changeset
|
824 call assert_true(winnr('$') == 2) |
2ed7a34ecc54
patch 8.0.0574: get only one quickfix list after :caddbuf
Christian Brabandt <cb@256bit.org>
parents:
11301
diff
changeset
|
825 " Jumping to the next match should reuse the help window |
2ed7a34ecc54
patch 8.0.0574: get only one quickfix list after :caddbuf
Christian Brabandt <cb@256bit.org>
parents:
11301
diff
changeset
|
826 Xnext |
2ed7a34ecc54
patch 8.0.0574: get only one quickfix list after :caddbuf
Christian Brabandt <cb@256bit.org>
parents:
11301
diff
changeset
|
827 call assert_true(&buftype == 'help') |
2ed7a34ecc54
patch 8.0.0574: get only one quickfix list after :caddbuf
Christian Brabandt <cb@256bit.org>
parents:
11301
diff
changeset
|
828 call assert_true(winnr() == 1) |
2ed7a34ecc54
patch 8.0.0574: get only one quickfix list after :caddbuf
Christian Brabandt <cb@256bit.org>
parents:
11301
diff
changeset
|
829 call assert_true(winnr('$') == 2) |
2ed7a34ecc54
patch 8.0.0574: get only one quickfix list after :caddbuf
Christian Brabandt <cb@256bit.org>
parents:
11301
diff
changeset
|
830 " Jumping to the next match from the quickfix window should reuse the help |
2ed7a34ecc54
patch 8.0.0574: get only one quickfix list after :caddbuf
Christian Brabandt <cb@256bit.org>
parents:
11301
diff
changeset
|
831 " window |
2ed7a34ecc54
patch 8.0.0574: get only one quickfix list after :caddbuf
Christian Brabandt <cb@256bit.org>
parents:
11301
diff
changeset
|
832 Xopen |
2ed7a34ecc54
patch 8.0.0574: get only one quickfix list after :caddbuf
Christian Brabandt <cb@256bit.org>
parents:
11301
diff
changeset
|
833 Xnext |
2ed7a34ecc54
patch 8.0.0574: get only one quickfix list after :caddbuf
Christian Brabandt <cb@256bit.org>
parents:
11301
diff
changeset
|
834 call assert_true(&buftype == 'help') |
2ed7a34ecc54
patch 8.0.0574: get only one quickfix list after :caddbuf
Christian Brabandt <cb@256bit.org>
parents:
11301
diff
changeset
|
835 call assert_true(winnr() == 1) |
2ed7a34ecc54
patch 8.0.0574: get only one quickfix list after :caddbuf
Christian Brabandt <cb@256bit.org>
parents:
11301
diff
changeset
|
836 call assert_true(winnr('$') == 2) |
24964
f4aa891a5ab8
patch 8.2.3019: location list only has the start position.
Bram Moolenaar <Bram@vim.org>
parents:
24962
diff
changeset
|
837 call assert_match('|\d\+ col \d\+-\d\+|', getbufline(winbufnr(2), 1)[0]) |
11378
2ed7a34ecc54
patch 8.0.0574: get only one quickfix list after :caddbuf
Christian Brabandt <cb@256bit.org>
parents:
11301
diff
changeset
|
838 |
9342
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
839 " This wipes out the buffer, make sure that doesn't cause trouble. |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
840 Xclose |
11195
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
841 |
18656
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
842 " When the current window is vertically split, jumping to a help match |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
843 " should open the help window at the top. |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
844 only | enew |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
845 let w1 = win_getid() |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
846 vert new |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
847 let w2 = win_getid() |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
848 Xnext |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
849 let w3 = win_getid() |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
850 call assert_true(&buftype == 'help') |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
851 call assert_true(winnr() == 1) |
18697
c035b4fa4bc5
patch 8.1.2340: quickfix test fails under valgrind and asan
Bram Moolenaar <Bram@vim.org>
parents:
18695
diff
changeset
|
852 " See jump_to_help_window() for details |
c035b4fa4bc5
patch 8.1.2340: quickfix test fails under valgrind and asan
Bram Moolenaar <Bram@vim.org>
parents:
18695
diff
changeset
|
853 let w2_width = winwidth(w2) |
c035b4fa4bc5
patch 8.1.2340: quickfix test fails under valgrind and asan
Bram Moolenaar <Bram@vim.org>
parents:
18695
diff
changeset
|
854 if w2_width != &columns && w2_width < 80 |
c035b4fa4bc5
patch 8.1.2340: quickfix test fails under valgrind and asan
Bram Moolenaar <Bram@vim.org>
parents:
18695
diff
changeset
|
855 call assert_equal(['col', [['leaf', w3], |
c035b4fa4bc5
patch 8.1.2340: quickfix test fails under valgrind and asan
Bram Moolenaar <Bram@vim.org>
parents:
18695
diff
changeset
|
856 \ ['row', [['leaf', w2], ['leaf', w1]]]]], winlayout()) |
c035b4fa4bc5
patch 8.1.2340: quickfix test fails under valgrind and asan
Bram Moolenaar <Bram@vim.org>
parents:
18695
diff
changeset
|
857 else |
c035b4fa4bc5
patch 8.1.2340: quickfix test fails under valgrind and asan
Bram Moolenaar <Bram@vim.org>
parents:
18695
diff
changeset
|
858 call assert_equal(['row', [['col', [['leaf', w3], ['leaf', w2]]], |
c035b4fa4bc5
patch 8.1.2340: quickfix test fails under valgrind and asan
Bram Moolenaar <Bram@vim.org>
parents:
18695
diff
changeset
|
859 \ ['leaf', w1]]] , winlayout()) |
c035b4fa4bc5
patch 8.1.2340: quickfix test fails under valgrind and asan
Bram Moolenaar <Bram@vim.org>
parents:
18695
diff
changeset
|
860 endif |
18656
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
861 |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
862 new | only |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
863 set buftype=help |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
864 set modified |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
865 call assert_fails('Xnext', 'E37:') |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
866 set nomodified |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
867 new | only |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
868 |
12427
fc3e2d5614dd
patch 8.0.1093: various small quickfix issues
Christian Brabandt <cb@256bit.org>
parents:
12321
diff
changeset
|
869 if a:cchar == 'l' |
fc3e2d5614dd
patch 8.0.1093: various small quickfix issues
Christian Brabandt <cb@256bit.org>
parents:
12321
diff
changeset
|
870 " When a help window is present, running :lhelpgrep should reuse the |
fc3e2d5614dd
patch 8.0.1093: various small quickfix issues
Christian Brabandt <cb@256bit.org>
parents:
12321
diff
changeset
|
871 " help window and not the current window |
fc3e2d5614dd
patch 8.0.1093: various small quickfix issues
Christian Brabandt <cb@256bit.org>
parents:
12321
diff
changeset
|
872 new | only |
fc3e2d5614dd
patch 8.0.1093: various small quickfix issues
Christian Brabandt <cb@256bit.org>
parents:
12321
diff
changeset
|
873 call g:Xsetlist([], 'f') |
fc3e2d5614dd
patch 8.0.1093: various small quickfix issues
Christian Brabandt <cb@256bit.org>
parents:
12321
diff
changeset
|
874 help index.txt |
fc3e2d5614dd
patch 8.0.1093: various small quickfix issues
Christian Brabandt <cb@256bit.org>
parents:
12321
diff
changeset
|
875 wincmd w |
fc3e2d5614dd
patch 8.0.1093: various small quickfix issues
Christian Brabandt <cb@256bit.org>
parents:
12321
diff
changeset
|
876 lhelpgrep quickfix |
fc3e2d5614dd
patch 8.0.1093: various small quickfix issues
Christian Brabandt <cb@256bit.org>
parents:
12321
diff
changeset
|
877 call assert_equal(1, winnr()) |
fc3e2d5614dd
patch 8.0.1093: various small quickfix issues
Christian Brabandt <cb@256bit.org>
parents:
12321
diff
changeset
|
878 call assert_notequal([], getloclist(1)) |
fc3e2d5614dd
patch 8.0.1093: various small quickfix issues
Christian Brabandt <cb@256bit.org>
parents:
12321
diff
changeset
|
879 call assert_equal([], getloclist(2)) |
fc3e2d5614dd
patch 8.0.1093: various small quickfix issues
Christian Brabandt <cb@256bit.org>
parents:
12321
diff
changeset
|
880 endif |
fc3e2d5614dd
patch 8.0.1093: various small quickfix issues
Christian Brabandt <cb@256bit.org>
parents:
12321
diff
changeset
|
881 |
11378
2ed7a34ecc54
patch 8.0.0574: get only one quickfix list after :caddbuf
Christian Brabandt <cb@256bit.org>
parents:
11301
diff
changeset
|
882 new | only |
2ed7a34ecc54
patch 8.0.0574: get only one quickfix list after :caddbuf
Christian Brabandt <cb@256bit.org>
parents:
11301
diff
changeset
|
883 |
11195
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
884 " Search for non existing help string |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
885 call assert_fails('Xhelpgrep a1b2c3', 'E480:') |
14915
f508bb2fb808
patch 8.1.0469: too often indexing in qf_lists[]
Bram Moolenaar <Bram@vim.org>
parents:
14664
diff
changeset
|
886 " Invalid regular expression |
21265
6a4806e326dd
patch 8.2.1183: assert_fails() checks the last error message
Bram Moolenaar <Bram@vim.org>
parents:
21100
diff
changeset
|
887 call assert_fails('Xhelpgrep \@<!', 'E866:') |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
888 endfunc |
9342
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
889 |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
890 func Test_helpgrep() |
9342
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
891 call s:test_xhelpgrep('c') |
9752
429be545637a
commit https://github.com/vim/vim/commit/cf25fdb8f10a92b3bf9e295c466c1b69812b7886
Christian Brabandt <cb@256bit.org>
parents:
9608
diff
changeset
|
892 helpclose |
9342
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
893 call s:test_xhelpgrep('l') |
7677
85a7a945fb87
commit https://github.com/vim/vim/commit/62ef797496c6243d111c596a592a8ef8c1d1e710
Christian Brabandt <cb@256bit.org>
parents:
7593
diff
changeset
|
894 endfunc |
7513
37e061ec063c
commit https://github.com/vim/vim/commit/75bdf6aa30a5c99d67c42886cf7a4a000bbaa422
Christian Brabandt <cb@256bit.org>
parents:
7502
diff
changeset
|
895 |
23493
f8382c4e6551
patch 8.2.2289: Vim9: 'cpo' can become empty
Bram Moolenaar <Bram@vim.org>
parents:
23203
diff
changeset
|
896 def Test_helpgrep_vim9_restore_cpo() |
f8382c4e6551
patch 8.2.2289: Vim9: 'cpo' can become empty
Bram Moolenaar <Bram@vim.org>
parents:
23203
diff
changeset
|
897 assert_equal('aABceFs', &cpo) |
f8382c4e6551
patch 8.2.2289: Vim9: 'cpo' can become empty
Bram Moolenaar <Bram@vim.org>
parents:
23203
diff
changeset
|
898 |
f8382c4e6551
patch 8.2.2289: Vim9: 'cpo' can become empty
Bram Moolenaar <Bram@vim.org>
parents:
23203
diff
changeset
|
899 var rtp_save = &rtp |
f8382c4e6551
patch 8.2.2289: Vim9: 'cpo' can become empty
Bram Moolenaar <Bram@vim.org>
parents:
23203
diff
changeset
|
900 var dir = 'Xruntime/after' |
f8382c4e6551
patch 8.2.2289: Vim9: 'cpo' can become empty
Bram Moolenaar <Bram@vim.org>
parents:
23203
diff
changeset
|
901 &rtp ..= ',' .. dir |
f8382c4e6551
patch 8.2.2289: Vim9: 'cpo' can become empty
Bram Moolenaar <Bram@vim.org>
parents:
23203
diff
changeset
|
902 mkdir(dir .. '/ftplugin', 'p') |
23938
2a885d095bff
patch 8.2.2511: Vim9: cannot use Vim9 script syntax in some places
Bram Moolenaar <Bram@vim.org>
parents:
23778
diff
changeset
|
903 writefile(['vim9script'], dir .. '/ftplugin/qf.vim') |
23493
f8382c4e6551
patch 8.2.2289: Vim9: 'cpo' can become empty
Bram Moolenaar <Bram@vim.org>
parents:
23203
diff
changeset
|
904 filetype plugin on |
f8382c4e6551
patch 8.2.2289: Vim9: 'cpo' can become empty
Bram Moolenaar <Bram@vim.org>
parents:
23203
diff
changeset
|
905 silent helpgrep grail |
f8382c4e6551
patch 8.2.2289: Vim9: 'cpo' can become empty
Bram Moolenaar <Bram@vim.org>
parents:
23203
diff
changeset
|
906 cwindow |
f8382c4e6551
patch 8.2.2289: Vim9: 'cpo' can become empty
Bram Moolenaar <Bram@vim.org>
parents:
23203
diff
changeset
|
907 silent helpgrep grail |
f8382c4e6551
patch 8.2.2289: Vim9: 'cpo' can become empty
Bram Moolenaar <Bram@vim.org>
parents:
23203
diff
changeset
|
908 |
f8382c4e6551
patch 8.2.2289: Vim9: 'cpo' can become empty
Bram Moolenaar <Bram@vim.org>
parents:
23203
diff
changeset
|
909 assert_equal('aABceFs', &cpo) |
27873
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
910 delete('Xruntime', 'rf') |
23493
f8382c4e6551
patch 8.2.2289: Vim9: 'cpo' can become empty
Bram Moolenaar <Bram@vim.org>
parents:
23203
diff
changeset
|
911 &rtp = rtp_save |
f8382c4e6551
patch 8.2.2289: Vim9: 'cpo' can become empty
Bram Moolenaar <Bram@vim.org>
parents:
23203
diff
changeset
|
912 cclose |
f8382c4e6551
patch 8.2.2289: Vim9: 'cpo' can become empty
Bram Moolenaar <Bram@vim.org>
parents:
23203
diff
changeset
|
913 helpclose |
f8382c4e6551
patch 8.2.2289: Vim9: 'cpo' can become empty
Bram Moolenaar <Bram@vim.org>
parents:
23203
diff
changeset
|
914 enddef |
f8382c4e6551
patch 8.2.2289: Vim9: 'cpo' can become empty
Bram Moolenaar <Bram@vim.org>
parents:
23203
diff
changeset
|
915 |
27873
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
916 " When running the :helpgrep command, if an autocmd modifies the 'cpoptions' |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
917 " value, then Vim crashes. (issue fixed by 7.2b-004 and 8.2.4453) |
27855
44a552776007
patch 8.2.4453: :helpgrep may free an option that was not allocated
Bram Moolenaar <Bram@vim.org>
parents:
27605
diff
changeset
|
918 func Test_helpgrep_restore_cpo_aucmd() |
44a552776007
patch 8.2.4453: :helpgrep may free an option that was not allocated
Bram Moolenaar <Bram@vim.org>
parents:
27605
diff
changeset
|
919 let save_cpo = &cpo |
44a552776007
patch 8.2.4453: :helpgrep may free an option that was not allocated
Bram Moolenaar <Bram@vim.org>
parents:
27605
diff
changeset
|
920 augroup QF_Test |
44a552776007
patch 8.2.4453: :helpgrep may free an option that was not allocated
Bram Moolenaar <Bram@vim.org>
parents:
27605
diff
changeset
|
921 au! |
44a552776007
patch 8.2.4453: :helpgrep may free an option that was not allocated
Bram Moolenaar <Bram@vim.org>
parents:
27605
diff
changeset
|
922 autocmd BufNew * set cpo=acd |
44a552776007
patch 8.2.4453: :helpgrep may free an option that was not allocated
Bram Moolenaar <Bram@vim.org>
parents:
27605
diff
changeset
|
923 augroup END |
44a552776007
patch 8.2.4453: :helpgrep may free an option that was not allocated
Bram Moolenaar <Bram@vim.org>
parents:
27605
diff
changeset
|
924 |
44a552776007
patch 8.2.4453: :helpgrep may free an option that was not allocated
Bram Moolenaar <Bram@vim.org>
parents:
27605
diff
changeset
|
925 helpgrep quickfix |
44a552776007
patch 8.2.4453: :helpgrep may free an option that was not allocated
Bram Moolenaar <Bram@vim.org>
parents:
27605
diff
changeset
|
926 call assert_equal('acd', &cpo) |
44a552776007
patch 8.2.4453: :helpgrep may free an option that was not allocated
Bram Moolenaar <Bram@vim.org>
parents:
27605
diff
changeset
|
927 %bw! |
44a552776007
patch 8.2.4453: :helpgrep may free an option that was not allocated
Bram Moolenaar <Bram@vim.org>
parents:
27605
diff
changeset
|
928 |
44a552776007
patch 8.2.4453: :helpgrep may free an option that was not allocated
Bram Moolenaar <Bram@vim.org>
parents:
27605
diff
changeset
|
929 set cpo&vim |
44a552776007
patch 8.2.4453: :helpgrep may free an option that was not allocated
Bram Moolenaar <Bram@vim.org>
parents:
27605
diff
changeset
|
930 augroup QF_Test |
44a552776007
patch 8.2.4453: :helpgrep may free an option that was not allocated
Bram Moolenaar <Bram@vim.org>
parents:
27605
diff
changeset
|
931 au! |
44a552776007
patch 8.2.4453: :helpgrep may free an option that was not allocated
Bram Moolenaar <Bram@vim.org>
parents:
27605
diff
changeset
|
932 autocmd BufReadPost * set cpo= |
44a552776007
patch 8.2.4453: :helpgrep may free an option that was not allocated
Bram Moolenaar <Bram@vim.org>
parents:
27605
diff
changeset
|
933 augroup END |
44a552776007
patch 8.2.4453: :helpgrep may free an option that was not allocated
Bram Moolenaar <Bram@vim.org>
parents:
27605
diff
changeset
|
934 |
44a552776007
patch 8.2.4453: :helpgrep may free an option that was not allocated
Bram Moolenaar <Bram@vim.org>
parents:
27605
diff
changeset
|
935 helpgrep buffer |
44a552776007
patch 8.2.4453: :helpgrep may free an option that was not allocated
Bram Moolenaar <Bram@vim.org>
parents:
27605
diff
changeset
|
936 call assert_equal('', &cpo) |
44a552776007
patch 8.2.4453: :helpgrep may free an option that was not allocated
Bram Moolenaar <Bram@vim.org>
parents:
27605
diff
changeset
|
937 |
44a552776007
patch 8.2.4453: :helpgrep may free an option that was not allocated
Bram Moolenaar <Bram@vim.org>
parents:
27605
diff
changeset
|
938 augroup QF_Test |
44a552776007
patch 8.2.4453: :helpgrep may free an option that was not allocated
Bram Moolenaar <Bram@vim.org>
parents:
27605
diff
changeset
|
939 au! |
44a552776007
patch 8.2.4453: :helpgrep may free an option that was not allocated
Bram Moolenaar <Bram@vim.org>
parents:
27605
diff
changeset
|
940 augroup END |
44a552776007
patch 8.2.4453: :helpgrep may free an option that was not allocated
Bram Moolenaar <Bram@vim.org>
parents:
27605
diff
changeset
|
941 %bw! |
44a552776007
patch 8.2.4453: :helpgrep may free an option that was not allocated
Bram Moolenaar <Bram@vim.org>
parents:
27605
diff
changeset
|
942 let &cpo = save_cpo |
44a552776007
patch 8.2.4453: :helpgrep may free an option that was not allocated
Bram Moolenaar <Bram@vim.org>
parents:
27605
diff
changeset
|
943 endfunc |
44a552776007
patch 8.2.4453: :helpgrep may free an option that was not allocated
Bram Moolenaar <Bram@vim.org>
parents:
27605
diff
changeset
|
944 |
24590
2818f846f099
patch 8.2.2834: Vim9: :cexpr does not work with local variables
Bram Moolenaar <Bram@vim.org>
parents:
24547
diff
changeset
|
945 def Test_vim9_cexpr() |
2818f846f099
patch 8.2.2834: Vim9: :cexpr does not work with local variables
Bram Moolenaar <Bram@vim.org>
parents:
24547
diff
changeset
|
946 var text = 'somefile:95:error' |
2818f846f099
patch 8.2.2834: Vim9: :cexpr does not work with local variables
Bram Moolenaar <Bram@vim.org>
parents:
24547
diff
changeset
|
947 cexpr text |
2818f846f099
patch 8.2.2834: Vim9: :cexpr does not work with local variables
Bram Moolenaar <Bram@vim.org>
parents:
24547
diff
changeset
|
948 var l = getqflist() |
2818f846f099
patch 8.2.2834: Vim9: :cexpr does not work with local variables
Bram Moolenaar <Bram@vim.org>
parents:
24547
diff
changeset
|
949 assert_equal(1, l->len()) |
2818f846f099
patch 8.2.2834: Vim9: :cexpr does not work with local variables
Bram Moolenaar <Bram@vim.org>
parents:
24547
diff
changeset
|
950 assert_equal(95, l[0].lnum) |
2818f846f099
patch 8.2.2834: Vim9: :cexpr does not work with local variables
Bram Moolenaar <Bram@vim.org>
parents:
24547
diff
changeset
|
951 assert_equal('error', l[0].text) |
2818f846f099
patch 8.2.2834: Vim9: :cexpr does not work with local variables
Bram Moolenaar <Bram@vim.org>
parents:
24547
diff
changeset
|
952 |
2818f846f099
patch 8.2.2834: Vim9: :cexpr does not work with local variables
Bram Moolenaar <Bram@vim.org>
parents:
24547
diff
changeset
|
953 text = 'somefile:77:warning' |
2818f846f099
patch 8.2.2834: Vim9: :cexpr does not work with local variables
Bram Moolenaar <Bram@vim.org>
parents:
24547
diff
changeset
|
954 caddexpr text |
2818f846f099
patch 8.2.2834: Vim9: :cexpr does not work with local variables
Bram Moolenaar <Bram@vim.org>
parents:
24547
diff
changeset
|
955 l = getqflist() |
2818f846f099
patch 8.2.2834: Vim9: :cexpr does not work with local variables
Bram Moolenaar <Bram@vim.org>
parents:
24547
diff
changeset
|
956 assert_equal(2, l->len()) |
2818f846f099
patch 8.2.2834: Vim9: :cexpr does not work with local variables
Bram Moolenaar <Bram@vim.org>
parents:
24547
diff
changeset
|
957 assert_equal(77, l[1].lnum) |
2818f846f099
patch 8.2.2834: Vim9: :cexpr does not work with local variables
Bram Moolenaar <Bram@vim.org>
parents:
24547
diff
changeset
|
958 assert_equal('warning', l[1].text) |
2818f846f099
patch 8.2.2834: Vim9: :cexpr does not work with local variables
Bram Moolenaar <Bram@vim.org>
parents:
24547
diff
changeset
|
959 enddef |
2818f846f099
patch 8.2.2834: Vim9: :cexpr does not work with local variables
Bram Moolenaar <Bram@vim.org>
parents:
24547
diff
changeset
|
960 |
7710
bf58e9f8d52a
commit https://github.com/vim/vim/commit/6920c72d4d62c8dc5596e9f392e38204f561d7af
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
961 func Test_errortitle() |
bf58e9f8d52a
commit https://github.com/vim/vim/commit/6920c72d4d62c8dc5596e9f392e38204f561d7af
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
962 augroup QfBufWinEnter |
bf58e9f8d52a
commit https://github.com/vim/vim/commit/6920c72d4d62c8dc5596e9f392e38204f561d7af
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
963 au! |
bf58e9f8d52a
commit https://github.com/vim/vim/commit/6920c72d4d62c8dc5596e9f392e38204f561d7af
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
964 au BufWinEnter * :let g:a=get(w:, 'quickfix_title', 'NONE') |
bf58e9f8d52a
commit https://github.com/vim/vim/commit/6920c72d4d62c8dc5596e9f392e38204f561d7af
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
965 augroup END |
bf58e9f8d52a
commit https://github.com/vim/vim/commit/6920c72d4d62c8dc5596e9f392e38204f561d7af
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
966 copen |
bf58e9f8d52a
commit https://github.com/vim/vim/commit/6920c72d4d62c8dc5596e9f392e38204f561d7af
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
967 let a=[{'lnum': 308, 'bufnr': bufnr(''), 'col': 58, 'valid': 1, 'vcol': 0, 'nr': 0, 'type': '', 'pattern': '', 'text': ' au BufWinEnter * :let g:a=get(w:, ''quickfix_title'', ''NONE'')'}] |
bf58e9f8d52a
commit https://github.com/vim/vim/commit/6920c72d4d62c8dc5596e9f392e38204f561d7af
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
968 call setqflist(a) |
bf58e9f8d52a
commit https://github.com/vim/vim/commit/6920c72d4d62c8dc5596e9f392e38204f561d7af
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
969 call assert_equal(':setqflist()', g:a) |
bf58e9f8d52a
commit https://github.com/vim/vim/commit/6920c72d4d62c8dc5596e9f392e38204f561d7af
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
970 augroup QfBufWinEnter |
bf58e9f8d52a
commit https://github.com/vim/vim/commit/6920c72d4d62c8dc5596e9f392e38204f561d7af
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
971 au! |
bf58e9f8d52a
commit https://github.com/vim/vim/commit/6920c72d4d62c8dc5596e9f392e38204f561d7af
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
972 augroup END |
bf58e9f8d52a
commit https://github.com/vim/vim/commit/6920c72d4d62c8dc5596e9f392e38204f561d7af
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
973 augroup! QfBufWinEnter |
bf58e9f8d52a
commit https://github.com/vim/vim/commit/6920c72d4d62c8dc5596e9f392e38204f561d7af
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
974 endfunc |
8558
22aecf80378e
commit https://github.com/vim/vim/commit/e27dba499aaaf2ffe9f0da45f062450b434cddaa
Christian Brabandt <cb@256bit.org>
parents:
7710
diff
changeset
|
975 |
8603
bfa74b84c41c
commit https://github.com/vim/vim/commit/5584df65a0ca2315d1eebc13c54a448bee4d0758
Christian Brabandt <cb@256bit.org>
parents:
8597
diff
changeset
|
976 func Test_vimgreptitle() |
bfa74b84c41c
commit https://github.com/vim/vim/commit/5584df65a0ca2315d1eebc13c54a448bee4d0758
Christian Brabandt <cb@256bit.org>
parents:
8597
diff
changeset
|
977 augroup QfBufWinEnter |
bfa74b84c41c
commit https://github.com/vim/vim/commit/5584df65a0ca2315d1eebc13c54a448bee4d0758
Christian Brabandt <cb@256bit.org>
parents:
8597
diff
changeset
|
978 au! |
bfa74b84c41c
commit https://github.com/vim/vim/commit/5584df65a0ca2315d1eebc13c54a448bee4d0758
Christian Brabandt <cb@256bit.org>
parents:
8597
diff
changeset
|
979 au BufWinEnter * :let g:a=get(w:, 'quickfix_title', 'NONE') |
bfa74b84c41c
commit https://github.com/vim/vim/commit/5584df65a0ca2315d1eebc13c54a448bee4d0758
Christian Brabandt <cb@256bit.org>
parents:
8597
diff
changeset
|
980 augroup END |
bfa74b84c41c
commit https://github.com/vim/vim/commit/5584df65a0ca2315d1eebc13c54a448bee4d0758
Christian Brabandt <cb@256bit.org>
parents:
8597
diff
changeset
|
981 try |
bfa74b84c41c
commit https://github.com/vim/vim/commit/5584df65a0ca2315d1eebc13c54a448bee4d0758
Christian Brabandt <cb@256bit.org>
parents:
8597
diff
changeset
|
982 vimgrep /pattern/j file |
bfa74b84c41c
commit https://github.com/vim/vim/commit/5584df65a0ca2315d1eebc13c54a448bee4d0758
Christian Brabandt <cb@256bit.org>
parents:
8597
diff
changeset
|
983 catch /E480/ |
bfa74b84c41c
commit https://github.com/vim/vim/commit/5584df65a0ca2315d1eebc13c54a448bee4d0758
Christian Brabandt <cb@256bit.org>
parents:
8597
diff
changeset
|
984 endtry |
bfa74b84c41c
commit https://github.com/vim/vim/commit/5584df65a0ca2315d1eebc13c54a448bee4d0758
Christian Brabandt <cb@256bit.org>
parents:
8597
diff
changeset
|
985 copen |
bfa74b84c41c
commit https://github.com/vim/vim/commit/5584df65a0ca2315d1eebc13c54a448bee4d0758
Christian Brabandt <cb@256bit.org>
parents:
8597
diff
changeset
|
986 call assert_equal(': vimgrep /pattern/j file', g:a) |
bfa74b84c41c
commit https://github.com/vim/vim/commit/5584df65a0ca2315d1eebc13c54a448bee4d0758
Christian Brabandt <cb@256bit.org>
parents:
8597
diff
changeset
|
987 augroup QfBufWinEnter |
bfa74b84c41c
commit https://github.com/vim/vim/commit/5584df65a0ca2315d1eebc13c54a448bee4d0758
Christian Brabandt <cb@256bit.org>
parents:
8597
diff
changeset
|
988 au! |
bfa74b84c41c
commit https://github.com/vim/vim/commit/5584df65a0ca2315d1eebc13c54a448bee4d0758
Christian Brabandt <cb@256bit.org>
parents:
8597
diff
changeset
|
989 augroup END |
bfa74b84c41c
commit https://github.com/vim/vim/commit/5584df65a0ca2315d1eebc13c54a448bee4d0758
Christian Brabandt <cb@256bit.org>
parents:
8597
diff
changeset
|
990 augroup! QfBufWinEnter |
bfa74b84c41c
commit https://github.com/vim/vim/commit/5584df65a0ca2315d1eebc13c54a448bee4d0758
Christian Brabandt <cb@256bit.org>
parents:
8597
diff
changeset
|
991 endfunc |
bfa74b84c41c
commit https://github.com/vim/vim/commit/5584df65a0ca2315d1eebc13c54a448bee4d0758
Christian Brabandt <cb@256bit.org>
parents:
8597
diff
changeset
|
992 |
26026
db9fdfb86679
patch 8.2.3547: opening the quickfix window triggers BufWinEnter twice
Bram Moolenaar <Bram@vim.org>
parents:
25435
diff
changeset
|
993 func Test_bufwinenter_once() |
db9fdfb86679
patch 8.2.3547: opening the quickfix window triggers BufWinEnter twice
Bram Moolenaar <Bram@vim.org>
parents:
25435
diff
changeset
|
994 augroup QfBufWinEnter |
db9fdfb86679
patch 8.2.3547: opening the quickfix window triggers BufWinEnter twice
Bram Moolenaar <Bram@vim.org>
parents:
25435
diff
changeset
|
995 au! |
db9fdfb86679
patch 8.2.3547: opening the quickfix window triggers BufWinEnter twice
Bram Moolenaar <Bram@vim.org>
parents:
25435
diff
changeset
|
996 au BufWinEnter * let g:got_afile ..= 'got ' .. expand('<afile>') |
db9fdfb86679
patch 8.2.3547: opening the quickfix window triggers BufWinEnter twice
Bram Moolenaar <Bram@vim.org>
parents:
25435
diff
changeset
|
997 augroup END |
db9fdfb86679
patch 8.2.3547: opening the quickfix window triggers BufWinEnter twice
Bram Moolenaar <Bram@vim.org>
parents:
25435
diff
changeset
|
998 let g:got_afile = '' |
db9fdfb86679
patch 8.2.3547: opening the quickfix window triggers BufWinEnter twice
Bram Moolenaar <Bram@vim.org>
parents:
25435
diff
changeset
|
999 copen |
db9fdfb86679
patch 8.2.3547: opening the quickfix window triggers BufWinEnter twice
Bram Moolenaar <Bram@vim.org>
parents:
25435
diff
changeset
|
1000 call assert_equal('got quickfix', g:got_afile) |
db9fdfb86679
patch 8.2.3547: opening the quickfix window triggers BufWinEnter twice
Bram Moolenaar <Bram@vim.org>
parents:
25435
diff
changeset
|
1001 |
db9fdfb86679
patch 8.2.3547: opening the quickfix window triggers BufWinEnter twice
Bram Moolenaar <Bram@vim.org>
parents:
25435
diff
changeset
|
1002 cclose |
db9fdfb86679
patch 8.2.3547: opening the quickfix window triggers BufWinEnter twice
Bram Moolenaar <Bram@vim.org>
parents:
25435
diff
changeset
|
1003 unlet g:got_afile |
db9fdfb86679
patch 8.2.3547: opening the quickfix window triggers BufWinEnter twice
Bram Moolenaar <Bram@vim.org>
parents:
25435
diff
changeset
|
1004 augroup QfBufWinEnter |
db9fdfb86679
patch 8.2.3547: opening the quickfix window triggers BufWinEnter twice
Bram Moolenaar <Bram@vim.org>
parents:
25435
diff
changeset
|
1005 au! |
db9fdfb86679
patch 8.2.3547: opening the quickfix window triggers BufWinEnter twice
Bram Moolenaar <Bram@vim.org>
parents:
25435
diff
changeset
|
1006 augroup END |
db9fdfb86679
patch 8.2.3547: opening the quickfix window triggers BufWinEnter twice
Bram Moolenaar <Bram@vim.org>
parents:
25435
diff
changeset
|
1007 augroup! QfBufWinEnter |
db9fdfb86679
patch 8.2.3547: opening the quickfix window triggers BufWinEnter twice
Bram Moolenaar <Bram@vim.org>
parents:
25435
diff
changeset
|
1008 endfunc |
db9fdfb86679
patch 8.2.3547: opening the quickfix window triggers BufWinEnter twice
Bram Moolenaar <Bram@vim.org>
parents:
25435
diff
changeset
|
1009 |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
1010 func XqfTitleTests(cchar) |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1011 call s:setup_commands(a:cchar) |
8558
22aecf80378e
commit https://github.com/vim/vim/commit/e27dba499aaaf2ffe9f0da45f062450b434cddaa
Christian Brabandt <cb@256bit.org>
parents:
7710
diff
changeset
|
1012 |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1013 Xgetexpr ['file:1:1:message'] |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1014 let l = g:Xgetlist() |
8558
22aecf80378e
commit https://github.com/vim/vim/commit/e27dba499aaaf2ffe9f0da45f062450b434cddaa
Christian Brabandt <cb@256bit.org>
parents:
7710
diff
changeset
|
1015 if a:cchar == 'c' |
22aecf80378e
commit https://github.com/vim/vim/commit/e27dba499aaaf2ffe9f0da45f062450b434cddaa
Christian Brabandt <cb@256bit.org>
parents:
7710
diff
changeset
|
1016 call setqflist(l, 'r') |
22aecf80378e
commit https://github.com/vim/vim/commit/e27dba499aaaf2ffe9f0da45f062450b434cddaa
Christian Brabandt <cb@256bit.org>
parents:
7710
diff
changeset
|
1017 else |
22aecf80378e
commit https://github.com/vim/vim/commit/e27dba499aaaf2ffe9f0da45f062450b434cddaa
Christian Brabandt <cb@256bit.org>
parents:
7710
diff
changeset
|
1018 call setloclist(0, l, 'r') |
22aecf80378e
commit https://github.com/vim/vim/commit/e27dba499aaaf2ffe9f0da45f062450b434cddaa
Christian Brabandt <cb@256bit.org>
parents:
7710
diff
changeset
|
1019 endif |
22aecf80378e
commit https://github.com/vim/vim/commit/e27dba499aaaf2ffe9f0da45f062450b434cddaa
Christian Brabandt <cb@256bit.org>
parents:
7710
diff
changeset
|
1020 |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1021 Xopen |
8558
22aecf80378e
commit https://github.com/vim/vim/commit/e27dba499aaaf2ffe9f0da45f062450b434cddaa
Christian Brabandt <cb@256bit.org>
parents:
7710
diff
changeset
|
1022 if a:cchar == 'c' |
22aecf80378e
commit https://github.com/vim/vim/commit/e27dba499aaaf2ffe9f0da45f062450b434cddaa
Christian Brabandt <cb@256bit.org>
parents:
7710
diff
changeset
|
1023 let title = ':setqflist()' |
22aecf80378e
commit https://github.com/vim/vim/commit/e27dba499aaaf2ffe9f0da45f062450b434cddaa
Christian Brabandt <cb@256bit.org>
parents:
7710
diff
changeset
|
1024 else |
22aecf80378e
commit https://github.com/vim/vim/commit/e27dba499aaaf2ffe9f0da45f062450b434cddaa
Christian Brabandt <cb@256bit.org>
parents:
7710
diff
changeset
|
1025 let title = ':setloclist()' |
22aecf80378e
commit https://github.com/vim/vim/commit/e27dba499aaaf2ffe9f0da45f062450b434cddaa
Christian Brabandt <cb@256bit.org>
parents:
7710
diff
changeset
|
1026 endif |
22aecf80378e
commit https://github.com/vim/vim/commit/e27dba499aaaf2ffe9f0da45f062450b434cddaa
Christian Brabandt <cb@256bit.org>
parents:
7710
diff
changeset
|
1027 call assert_equal(title, w:quickfix_title) |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1028 Xclose |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
1029 endfunc |
8558
22aecf80378e
commit https://github.com/vim/vim/commit/e27dba499aaaf2ffe9f0da45f062450b434cddaa
Christian Brabandt <cb@256bit.org>
parents:
7710
diff
changeset
|
1030 |
22aecf80378e
commit https://github.com/vim/vim/commit/e27dba499aaaf2ffe9f0da45f062450b434cddaa
Christian Brabandt <cb@256bit.org>
parents:
7710
diff
changeset
|
1031 " Tests for quickfix window's title |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
1032 func Test_qf_title() |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1033 call XqfTitleTests('c') |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1034 call XqfTitleTests('l') |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
1035 endfunc |
8558
22aecf80378e
commit https://github.com/vim/vim/commit/e27dba499aaaf2ffe9f0da45f062450b434cddaa
Christian Brabandt <cb@256bit.org>
parents:
7710
diff
changeset
|
1036 |
22aecf80378e
commit https://github.com/vim/vim/commit/e27dba499aaaf2ffe9f0da45f062450b434cddaa
Christian Brabandt <cb@256bit.org>
parents:
7710
diff
changeset
|
1037 " Tests for 'errorformat' |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
1038 func Test_efm() |
8558
22aecf80378e
commit https://github.com/vim/vim/commit/e27dba499aaaf2ffe9f0da45f062450b434cddaa
Christian Brabandt <cb@256bit.org>
parents:
7710
diff
changeset
|
1039 let save_efm = &efm |
22aecf80378e
commit https://github.com/vim/vim/commit/e27dba499aaaf2ffe9f0da45f062450b434cddaa
Christian Brabandt <cb@256bit.org>
parents:
7710
diff
changeset
|
1040 set efm=%EEEE%m,%WWWW%m,%+CCCC%.%#,%-GGGG%.%# |
22aecf80378e
commit https://github.com/vim/vim/commit/e27dba499aaaf2ffe9f0da45f062450b434cddaa
Christian Brabandt <cb@256bit.org>
parents:
7710
diff
changeset
|
1041 cgetexpr ['WWWW', 'EEEE', 'CCCC'] |
22aecf80378e
commit https://github.com/vim/vim/commit/e27dba499aaaf2ffe9f0da45f062450b434cddaa
Christian Brabandt <cb@256bit.org>
parents:
7710
diff
changeset
|
1042 let l = strtrans(string(map(getqflist(), '[v:val.text, v:val.valid]'))) |
22aecf80378e
commit https://github.com/vim/vim/commit/e27dba499aaaf2ffe9f0da45f062450b434cddaa
Christian Brabandt <cb@256bit.org>
parents:
7710
diff
changeset
|
1043 call assert_equal("[['W', 1], ['E^@CCCC', 1]]", l) |
22aecf80378e
commit https://github.com/vim/vim/commit/e27dba499aaaf2ffe9f0da45f062450b434cddaa
Christian Brabandt <cb@256bit.org>
parents:
7710
diff
changeset
|
1044 cgetexpr ['WWWW', 'GGGG', 'EEEE', 'CCCC'] |
22aecf80378e
commit https://github.com/vim/vim/commit/e27dba499aaaf2ffe9f0da45f062450b434cddaa
Christian Brabandt <cb@256bit.org>
parents:
7710
diff
changeset
|
1045 let l = strtrans(string(map(getqflist(), '[v:val.text, v:val.valid]'))) |
22aecf80378e
commit https://github.com/vim/vim/commit/e27dba499aaaf2ffe9f0da45f062450b434cddaa
Christian Brabandt <cb@256bit.org>
parents:
7710
diff
changeset
|
1046 call assert_equal("[['W', 1], ['E^@CCCC', 1]]", l) |
22aecf80378e
commit https://github.com/vim/vim/commit/e27dba499aaaf2ffe9f0da45f062450b434cddaa
Christian Brabandt <cb@256bit.org>
parents:
7710
diff
changeset
|
1047 cgetexpr ['WWWW', 'GGGG', 'ZZZZ', 'EEEE', 'CCCC', 'YYYY'] |
22aecf80378e
commit https://github.com/vim/vim/commit/e27dba499aaaf2ffe9f0da45f062450b434cddaa
Christian Brabandt <cb@256bit.org>
parents:
7710
diff
changeset
|
1048 let l = strtrans(string(map(getqflist(), '[v:val.text, v:val.valid]'))) |
22aecf80378e
commit https://github.com/vim/vim/commit/e27dba499aaaf2ffe9f0da45f062450b434cddaa
Christian Brabandt <cb@256bit.org>
parents:
7710
diff
changeset
|
1049 call assert_equal("[['W', 1], ['ZZZZ', 0], ['E^@CCCC', 1], ['YYYY', 0]]", l) |
22aecf80378e
commit https://github.com/vim/vim/commit/e27dba499aaaf2ffe9f0da45f062450b434cddaa
Christian Brabandt <cb@256bit.org>
parents:
7710
diff
changeset
|
1050 let &efm = save_efm |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
1051 endfunc |
8597
51de88bf954d
commit https://github.com/vim/vim/commit/1ff2b64b11e7d263c6853745d5e594bd8f94b91e
Christian Brabandt <cb@256bit.org>
parents:
8558
diff
changeset
|
1052 |
51de88bf954d
commit https://github.com/vim/vim/commit/1ff2b64b11e7d263c6853745d5e594bd8f94b91e
Christian Brabandt <cb@256bit.org>
parents:
8558
diff
changeset
|
1053 " This will test for problems in quickfix: |
51de88bf954d
commit https://github.com/vim/vim/commit/1ff2b64b11e7d263c6853745d5e594bd8f94b91e
Christian Brabandt <cb@256bit.org>
parents:
8558
diff
changeset
|
1054 " A. incorrectly copying location lists which caused the location list to show |
51de88bf954d
commit https://github.com/vim/vim/commit/1ff2b64b11e7d263c6853745d5e594bd8f94b91e
Christian Brabandt <cb@256bit.org>
parents:
8558
diff
changeset
|
1055 " a different name than the file that was actually being displayed. |
51de88bf954d
commit https://github.com/vim/vim/commit/1ff2b64b11e7d263c6853745d5e594bd8f94b91e
Christian Brabandt <cb@256bit.org>
parents:
8558
diff
changeset
|
1056 " B. not reusing the window for which the location list window is opened but |
51de88bf954d
commit https://github.com/vim/vim/commit/1ff2b64b11e7d263c6853745d5e594bd8f94b91e
Christian Brabandt <cb@256bit.org>
parents:
8558
diff
changeset
|
1057 " instead creating new windows. |
51de88bf954d
commit https://github.com/vim/vim/commit/1ff2b64b11e7d263c6853745d5e594bd8f94b91e
Christian Brabandt <cb@256bit.org>
parents:
8558
diff
changeset
|
1058 " C. make sure that the location list window is not reused instead of the |
51de88bf954d
commit https://github.com/vim/vim/commit/1ff2b64b11e7d263c6853745d5e594bd8f94b91e
Christian Brabandt <cb@256bit.org>
parents:
8558
diff
changeset
|
1059 " window it belongs to. |
51de88bf954d
commit https://github.com/vim/vim/commit/1ff2b64b11e7d263c6853745d5e594bd8f94b91e
Christian Brabandt <cb@256bit.org>
parents:
8558
diff
changeset
|
1060 " |
51de88bf954d
commit https://github.com/vim/vim/commit/1ff2b64b11e7d263c6853745d5e594bd8f94b91e
Christian Brabandt <cb@256bit.org>
parents:
8558
diff
changeset
|
1061 " Set up the test environment: |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
1062 func ReadTestProtocol(name) |
8597
51de88bf954d
commit https://github.com/vim/vim/commit/1ff2b64b11e7d263c6853745d5e594bd8f94b91e
Christian Brabandt <cb@256bit.org>
parents:
8558
diff
changeset
|
1063 let base = substitute(a:name, '\v^test://(.*)%(\.[^.]+)?', '\1', '') |
51de88bf954d
commit https://github.com/vim/vim/commit/1ff2b64b11e7d263c6853745d5e594bd8f94b91e
Christian Brabandt <cb@256bit.org>
parents:
8558
diff
changeset
|
1064 let word = substitute(base, '\v(.*)\..*', '\1', '') |
51de88bf954d
commit https://github.com/vim/vim/commit/1ff2b64b11e7d263c6853745d5e594bd8f94b91e
Christian Brabandt <cb@256bit.org>
parents:
8558
diff
changeset
|
1065 |
51de88bf954d
commit https://github.com/vim/vim/commit/1ff2b64b11e7d263c6853745d5e594bd8f94b91e
Christian Brabandt <cb@256bit.org>
parents:
8558
diff
changeset
|
1066 setl modifiable |
51de88bf954d
commit https://github.com/vim/vim/commit/1ff2b64b11e7d263c6853745d5e594bd8f94b91e
Christian Brabandt <cb@256bit.org>
parents:
8558
diff
changeset
|
1067 setl noreadonly |
51de88bf954d
commit https://github.com/vim/vim/commit/1ff2b64b11e7d263c6853745d5e594bd8f94b91e
Christian Brabandt <cb@256bit.org>
parents:
8558
diff
changeset
|
1068 setl noswapfile |
51de88bf954d
commit https://github.com/vim/vim/commit/1ff2b64b11e7d263c6853745d5e594bd8f94b91e
Christian Brabandt <cb@256bit.org>
parents:
8558
diff
changeset
|
1069 setl bufhidden=delete |
51de88bf954d
commit https://github.com/vim/vim/commit/1ff2b64b11e7d263c6853745d5e594bd8f94b91e
Christian Brabandt <cb@256bit.org>
parents:
8558
diff
changeset
|
1070 %del _ |
51de88bf954d
commit https://github.com/vim/vim/commit/1ff2b64b11e7d263c6853745d5e594bd8f94b91e
Christian Brabandt <cb@256bit.org>
parents:
8558
diff
changeset
|
1071 " For problem 2: |
51de88bf954d
commit https://github.com/vim/vim/commit/1ff2b64b11e7d263c6853745d5e594bd8f94b91e
Christian Brabandt <cb@256bit.org>
parents:
8558
diff
changeset
|
1072 " 'buftype' has to be set to reproduce the constant opening of new windows |
51de88bf954d
commit https://github.com/vim/vim/commit/1ff2b64b11e7d263c6853745d5e594bd8f94b91e
Christian Brabandt <cb@256bit.org>
parents:
8558
diff
changeset
|
1073 setl buftype=nofile |
51de88bf954d
commit https://github.com/vim/vim/commit/1ff2b64b11e7d263c6853745d5e594bd8f94b91e
Christian Brabandt <cb@256bit.org>
parents:
8558
diff
changeset
|
1074 |
51de88bf954d
commit https://github.com/vim/vim/commit/1ff2b64b11e7d263c6853745d5e594bd8f94b91e
Christian Brabandt <cb@256bit.org>
parents:
8558
diff
changeset
|
1075 call setline(1, word) |
51de88bf954d
commit https://github.com/vim/vim/commit/1ff2b64b11e7d263c6853745d5e594bd8f94b91e
Christian Brabandt <cb@256bit.org>
parents:
8558
diff
changeset
|
1076 |
51de88bf954d
commit https://github.com/vim/vim/commit/1ff2b64b11e7d263c6853745d5e594bd8f94b91e
Christian Brabandt <cb@256bit.org>
parents:
8558
diff
changeset
|
1077 setl nomodified |
51de88bf954d
commit https://github.com/vim/vim/commit/1ff2b64b11e7d263c6853745d5e594bd8f94b91e
Christian Brabandt <cb@256bit.org>
parents:
8558
diff
changeset
|
1078 setl nomodifiable |
51de88bf954d
commit https://github.com/vim/vim/commit/1ff2b64b11e7d263c6853745d5e594bd8f94b91e
Christian Brabandt <cb@256bit.org>
parents:
8558
diff
changeset
|
1079 setl readonly |
51de88bf954d
commit https://github.com/vim/vim/commit/1ff2b64b11e7d263c6853745d5e594bd8f94b91e
Christian Brabandt <cb@256bit.org>
parents:
8558
diff
changeset
|
1080 exe 'doautocmd BufRead ' . substitute(a:name, '\v^test://(.*)', '\1', '') |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
1081 endfunc |
8597
51de88bf954d
commit https://github.com/vim/vim/commit/1ff2b64b11e7d263c6853745d5e594bd8f94b91e
Christian Brabandt <cb@256bit.org>
parents:
8558
diff
changeset
|
1082 |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
1083 func Test_locationlist() |
21765
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1084 enew |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1085 |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1086 augroup testgroup |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1087 au! |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1088 autocmd BufReadCmd test://* call ReadTestProtocol(expand("<amatch>")) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1089 augroup END |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1090 |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1091 let words = [ "foo", "bar", "baz", "quux", "shmoo", "spam", "eggs" ] |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1092 |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1093 let qflist = [] |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1094 for word in words |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1095 call add(qflist, {'filename': 'test://' . word . '.txt', 'text': 'file ' . word . '.txt', }) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1096 " NOTE: problem 1: |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1097 " intentionally not setting 'lnum' so that the quickfix entries are not |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1098 " valid |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1099 eval qflist->setloclist(0, ' ') |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1100 endfor |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1101 |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1102 " Test A |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1103 lrewind |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1104 enew |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1105 lopen |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1106 4lnext |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1107 vert split |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1108 wincmd L |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1109 lopen |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1110 wincmd p |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1111 lnext |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1112 let fileName = expand("%") |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1113 wincmd p |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1114 let locationListFileName = substitute(getline(line('.')), '\([^|]*\)|.*', '\1', '') |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1115 let fileName = substitute(fileName, '\\', '/', 'g') |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1116 let locationListFileName = substitute(locationListFileName, '\\', '/', 'g') |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1117 call assert_equal("test://bar.txt", fileName) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1118 call assert_equal("test://bar.txt", locationListFileName) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1119 |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1120 wincmd n | only |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1121 |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1122 " Test B: |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1123 lrewind |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1124 lopen |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1125 2 |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1126 exe "normal \<CR>" |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1127 wincmd p |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1128 3 |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1129 exe "normal \<CR>" |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1130 wincmd p |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1131 4 |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1132 exe "normal \<CR>" |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1133 call assert_equal(2, winnr('$')) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1134 wincmd n | only |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1135 |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1136 " Test C: |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1137 lrewind |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1138 lopen |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1139 " Let's move the location list window to the top to check whether it (the |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1140 " first window found) will be reused when we try to open new windows: |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1141 wincmd K |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1142 2 |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1143 exe "normal \<CR>" |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1144 wincmd p |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1145 3 |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1146 exe "normal \<CR>" |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1147 wincmd p |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1148 4 |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1149 exe "normal \<CR>" |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1150 1wincmd w |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1151 call assert_equal('quickfix', &buftype) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1152 2wincmd w |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1153 let bufferName = expand("%") |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1154 let bufferName = substitute(bufferName, '\\', '/', 'g') |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1155 call assert_equal('test://quux.txt', bufferName) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1156 |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1157 wincmd n | only |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1158 |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1159 augroup! testgroup |
11195
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
1160 endfunc |
8605
536b9b88d1ca
commit https://github.com/vim/vim/commit/0899d698030ec076eb26352cda1ea334ab0819d9
Christian Brabandt <cb@256bit.org>
parents:
8603
diff
changeset
|
1161 |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
1162 func Test_locationlist_curwin_was_closed() |
21765
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1163 augroup testgroup |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1164 au! |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1165 autocmd BufReadCmd test_curwin.txt call R(expand("<amatch>")) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1166 augroup END |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1167 |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1168 func! R(n) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1169 quit |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1170 endfunc |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1171 |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1172 new |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1173 let q = [] |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1174 call add(q, {'filename': 'test_curwin.txt' }) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1175 call setloclist(0, q) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1176 call assert_fails('lrewind', 'E924:') |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1177 |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1178 augroup! testgroup |
27507
b8a5de86e9d1
patch 8.2.4281: using freed memory with :lopen and :bwipe
Bram Moolenaar <Bram@vim.org>
parents:
27457
diff
changeset
|
1179 delfunc R |
11195
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
1180 endfunc |
8649
ec78ecf15de7
commit https://github.com/vim/vim/commit/7eba3d2cbf19e731dc51652bc26099cc253d538a
Christian Brabandt <cb@256bit.org>
parents:
8605
diff
changeset
|
1181 |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
1182 func Test_locationlist_cross_tab_jump() |
10281
92fa8e5ef210
commit https://github.com/vim/vim/commit/0a9046fbcb33770517ab0220b8100c4494bddab2
Christian Brabandt <cb@256bit.org>
parents:
10257
diff
changeset
|
1183 call writefile(['loclistfoo'], 'loclistfoo') |
92fa8e5ef210
commit https://github.com/vim/vim/commit/0a9046fbcb33770517ab0220b8100c4494bddab2
Christian Brabandt <cb@256bit.org>
parents:
10257
diff
changeset
|
1184 call writefile(['loclistbar'], 'loclistbar') |
92fa8e5ef210
commit https://github.com/vim/vim/commit/0a9046fbcb33770517ab0220b8100c4494bddab2
Christian Brabandt <cb@256bit.org>
parents:
10257
diff
changeset
|
1185 set switchbuf=usetab |
92fa8e5ef210
commit https://github.com/vim/vim/commit/0a9046fbcb33770517ab0220b8100c4494bddab2
Christian Brabandt <cb@256bit.org>
parents:
10257
diff
changeset
|
1186 |
92fa8e5ef210
commit https://github.com/vim/vim/commit/0a9046fbcb33770517ab0220b8100c4494bddab2
Christian Brabandt <cb@256bit.org>
parents:
10257
diff
changeset
|
1187 edit loclistfoo |
92fa8e5ef210
commit https://github.com/vim/vim/commit/0a9046fbcb33770517ab0220b8100c4494bddab2
Christian Brabandt <cb@256bit.org>
parents:
10257
diff
changeset
|
1188 tabedit loclistbar |
92fa8e5ef210
commit https://github.com/vim/vim/commit/0a9046fbcb33770517ab0220b8100c4494bddab2
Christian Brabandt <cb@256bit.org>
parents:
10257
diff
changeset
|
1189 silent lgrep loclistfoo loclist* |
92fa8e5ef210
commit https://github.com/vim/vim/commit/0a9046fbcb33770517ab0220b8100c4494bddab2
Christian Brabandt <cb@256bit.org>
parents:
10257
diff
changeset
|
1190 call assert_equal(1, tabpagenr()) |
92fa8e5ef210
commit https://github.com/vim/vim/commit/0a9046fbcb33770517ab0220b8100c4494bddab2
Christian Brabandt <cb@256bit.org>
parents:
10257
diff
changeset
|
1191 |
92fa8e5ef210
commit https://github.com/vim/vim/commit/0a9046fbcb33770517ab0220b8100c4494bddab2
Christian Brabandt <cb@256bit.org>
parents:
10257
diff
changeset
|
1192 enew | only | tabonly |
92fa8e5ef210
commit https://github.com/vim/vim/commit/0a9046fbcb33770517ab0220b8100c4494bddab2
Christian Brabandt <cb@256bit.org>
parents:
10257
diff
changeset
|
1193 set switchbuf&vim |
92fa8e5ef210
commit https://github.com/vim/vim/commit/0a9046fbcb33770517ab0220b8100c4494bddab2
Christian Brabandt <cb@256bit.org>
parents:
10257
diff
changeset
|
1194 call delete('loclistfoo') |
92fa8e5ef210
commit https://github.com/vim/vim/commit/0a9046fbcb33770517ab0220b8100c4494bddab2
Christian Brabandt <cb@256bit.org>
parents:
10257
diff
changeset
|
1195 call delete('loclistbar') |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
1196 endfunc |
10281
92fa8e5ef210
commit https://github.com/vim/vim/commit/0a9046fbcb33770517ab0220b8100c4494bddab2
Christian Brabandt <cb@256bit.org>
parents:
10257
diff
changeset
|
1197 |
8649
ec78ecf15de7
commit https://github.com/vim/vim/commit/7eba3d2cbf19e731dc51652bc26099cc253d538a
Christian Brabandt <cb@256bit.org>
parents:
8605
diff
changeset
|
1198 " More tests for 'errorformat' |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
1199 func Test_efm1() |
21765
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1200 " The 'errorformat' setting is different on non-Unix systems. |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1201 " This test works only on Unix-like systems. |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1202 CheckUnix |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1203 |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1204 let l =<< trim [DATA] |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1205 "Xtestfile", line 4.12: 1506-045 (S) Undeclared identifier fd_set. |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1206 "Xtestfile", line 6 col 19; this is an error |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1207 gcc -c -DHAVE_CONFIsing-prototypes -I/usr/X11R6/include version.c |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1208 Xtestfile:9: parse error before `asd' |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1209 make: *** [vim] Error 1 |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1210 in file "Xtestfile" linenr 10: there is an error |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1211 |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1212 2 returned |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1213 "Xtestfile", line 11 col 1; this is an error |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1214 "Xtestfile", line 12 col 2; this is another error |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1215 "Xtestfile", line 14:10; this is an error in column 10 |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1216 =Xtestfile=, line 15:10; this is another error, but in vcol 10 this time |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1217 "Xtestfile", linenr 16: yet another problem |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1218 Error in "Xtestfile" at line 17: |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1219 x should be a dot |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1220 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx line 17 |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1221 ^ |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1222 Error in "Xtestfile" at line 18: |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1223 x should be a dot |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1224 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx line 18 |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1225 .............^ |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1226 Error in "Xtestfile" at line 19: |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1227 x should be a dot |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1228 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx line 19 |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1229 --------------^ |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1230 Error in "Xtestfile" at line 20: |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1231 x should be a dot |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1232 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx line 20 |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1233 ^ |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1234 |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1235 Does anyone know what is the problem and how to correction it? |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1236 "Xtestfile", line 21 col 9: What is the title of the quickfix window? |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1237 "Xtestfile", line 22 col 9: What is the title of the quickfix window? |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1238 [DATA] |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1239 |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1240 call writefile(l, 'Xerrorfile1') |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1241 call writefile(l[:-2], 'Xerrorfile2') |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1242 |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1243 let m =<< [DATA] |
17172
6990c1160ea5
patch 8.1.1585: :let-heredoc does not trim enough
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
1244 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx line 2 |
6990c1160ea5
patch 8.1.1585: :let-heredoc does not trim enough
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
1245 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx line 3 |
6990c1160ea5
patch 8.1.1585: :let-heredoc does not trim enough
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
1246 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx line 4 |
6990c1160ea5
patch 8.1.1585: :let-heredoc does not trim enough
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
1247 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx line 5 |
6990c1160ea5
patch 8.1.1585: :let-heredoc does not trim enough
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
1248 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx line 6 |
6990c1160ea5
patch 8.1.1585: :let-heredoc does not trim enough
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
1249 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx line 7 |
6990c1160ea5
patch 8.1.1585: :let-heredoc does not trim enough
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
1250 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx line 8 |
6990c1160ea5
patch 8.1.1585: :let-heredoc does not trim enough
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
1251 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx line 9 |
6990c1160ea5
patch 8.1.1585: :let-heredoc does not trim enough
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
1252 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx line 10 |
6990c1160ea5
patch 8.1.1585: :let-heredoc does not trim enough
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
1253 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx line 11 |
6990c1160ea5
patch 8.1.1585: :let-heredoc does not trim enough
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
1254 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx line 12 |
6990c1160ea5
patch 8.1.1585: :let-heredoc does not trim enough
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
1255 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx line 13 |
6990c1160ea5
patch 8.1.1585: :let-heredoc does not trim enough
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
1256 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx line 14 |
6990c1160ea5
patch 8.1.1585: :let-heredoc does not trim enough
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
1257 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx line 15 |
6990c1160ea5
patch 8.1.1585: :let-heredoc does not trim enough
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
1258 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx line 16 |
6990c1160ea5
patch 8.1.1585: :let-heredoc does not trim enough
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
1259 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx line 17 |
6990c1160ea5
patch 8.1.1585: :let-heredoc does not trim enough
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
1260 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx line 18 |
6990c1160ea5
patch 8.1.1585: :let-heredoc does not trim enough
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
1261 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx line 19 |
6990c1160ea5
patch 8.1.1585: :let-heredoc does not trim enough
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
1262 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx line 20 |
6990c1160ea5
patch 8.1.1585: :let-heredoc does not trim enough
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
1263 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx line 21 |
6990c1160ea5
patch 8.1.1585: :let-heredoc does not trim enough
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
1264 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx line 22 |
6990c1160ea5
patch 8.1.1585: :let-heredoc does not trim enough
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
1265 [DATA] |
21765
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1266 call writefile(m, 'Xtestfile') |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1267 |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1268 let save_efm = &efm |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1269 set efm+==%f=\\,\ line\ %l%*\\D%v%*[^\ ]\ %m |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1270 set efm^=%AError\ in\ \"%f\"\ at\ line\ %l:,%Z%p^,%C%m |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1271 |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1272 exe 'cf Xerrorfile2' |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1273 clast |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1274 copen |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1275 call assert_equal(':cf Xerrorfile2', w:quickfix_title) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1276 wincmd p |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1277 |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1278 exe 'cf Xerrorfile1' |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1279 call assert_equal([4, 12], [line('.'), col('.')]) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1280 cn |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1281 call assert_equal([6, 19], [line('.'), col('.')]) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1282 cn |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1283 call assert_equal([9, 2], [line('.'), col('.')]) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1284 cn |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1285 call assert_equal([10, 2], [line('.'), col('.')]) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1286 cn |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1287 call assert_equal([11, 1], [line('.'), col('.')]) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1288 cn |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1289 call assert_equal([12, 2], [line('.'), col('.')]) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1290 cn |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1291 call assert_equal([14, 10], [line('.'), col('.')]) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1292 cn |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1293 call assert_equal([15, 3, 10], [line('.'), col('.'), virtcol('.')]) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1294 cn |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1295 call assert_equal([16, 2], [line('.'), col('.')]) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1296 cn |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1297 call assert_equal([17, 6], [line('.'), col('.')]) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1298 cn |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1299 call assert_equal([18, 7], [line('.'), col('.')]) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1300 cn |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1301 call assert_equal([19, 8], [line('.'), col('.')]) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1302 cn |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1303 call assert_equal([20, 9], [line('.'), col('.')]) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1304 clast |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1305 cprev |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1306 cprev |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1307 wincmd w |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1308 call assert_equal(':cf Xerrorfile1', w:quickfix_title) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1309 wincmd p |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1310 |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1311 let &efm = save_efm |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1312 call delete('Xerrorfile1') |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1313 call delete('Xerrorfile2') |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
1314 call delete('Xtestfile') |
11195
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
1315 endfunc |
8702
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8649
diff
changeset
|
1316 |
9309
178252c6850e
commit https://github.com/vim/vim/commit/ab47c61f46f0797308217cd3c045472cb0ec3195
Christian Brabandt <cb@256bit.org>
parents:
9258
diff
changeset
|
1317 " Test for quickfix directory stack support |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
1318 func s:dir_stack_tests(cchar) |
9334
674f9e3ccd1a
commit https://github.com/vim/vim/commit/38df43bd13a2498cc96b3ddd9a20dd75126bd171
Christian Brabandt <cb@256bit.org>
parents:
9317
diff
changeset
|
1319 call s:setup_commands(a:cchar) |
674f9e3ccd1a
commit https://github.com/vim/vim/commit/38df43bd13a2498cc96b3ddd9a20dd75126bd171
Christian Brabandt <cb@256bit.org>
parents:
9317
diff
changeset
|
1320 |
9309
178252c6850e
commit https://github.com/vim/vim/commit/ab47c61f46f0797308217cd3c045472cb0ec3195
Christian Brabandt <cb@256bit.org>
parents:
9258
diff
changeset
|
1321 let save_efm=&efm |
178252c6850e
commit https://github.com/vim/vim/commit/ab47c61f46f0797308217cd3c045472cb0ec3195
Christian Brabandt <cb@256bit.org>
parents:
9258
diff
changeset
|
1322 set efm=%DEntering\ dir\ '%f',%f:%l:%m,%XLeaving\ dir\ '%f' |
178252c6850e
commit https://github.com/vim/vim/commit/ab47c61f46f0797308217cd3c045472cb0ec3195
Christian Brabandt <cb@256bit.org>
parents:
9258
diff
changeset
|
1323 |
28421
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
1324 let lines =<< trim END |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
1325 Entering dir 'dir1/a' |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
1326 habits2.txt:1:Nine Healthy Habits |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
1327 Entering dir 'b' |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
1328 habits3.txt:2:0 Hours of television |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
1329 habits2.txt:7:5 Small meals |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
1330 Entering dir 'dir1/c' |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
1331 habits4.txt:3:1 Hour of exercise |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
1332 Leaving dir 'dir1/c' |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
1333 Leaving dir 'dir1/a' |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
1334 habits1.txt:4:2 Liters of water |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
1335 Entering dir 'dir2' |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
1336 habits5.txt:5:3 Cups of hot green tea |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
1337 Leaving dir 'dir2' |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
1338 END |
9309
178252c6850e
commit https://github.com/vim/vim/commit/ab47c61f46f0797308217cd3c045472cb0ec3195
Christian Brabandt <cb@256bit.org>
parents:
9258
diff
changeset
|
1339 |
9397
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9342
diff
changeset
|
1340 Xexpr "" |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9342
diff
changeset
|
1341 for l in lines |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9342
diff
changeset
|
1342 Xaddexpr l |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9342
diff
changeset
|
1343 endfor |
9309
178252c6850e
commit https://github.com/vim/vim/commit/ab47c61f46f0797308217cd3c045472cb0ec3195
Christian Brabandt <cb@256bit.org>
parents:
9258
diff
changeset
|
1344 |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1345 let qf = g:Xgetlist() |
9309
178252c6850e
commit https://github.com/vim/vim/commit/ab47c61f46f0797308217cd3c045472cb0ec3195
Christian Brabandt <cb@256bit.org>
parents:
9258
diff
changeset
|
1346 |
178252c6850e
commit https://github.com/vim/vim/commit/ab47c61f46f0797308217cd3c045472cb0ec3195
Christian Brabandt <cb@256bit.org>
parents:
9258
diff
changeset
|
1347 call assert_equal('dir1/a/habits2.txt', bufname(qf[1].bufnr)) |
178252c6850e
commit https://github.com/vim/vim/commit/ab47c61f46f0797308217cd3c045472cb0ec3195
Christian Brabandt <cb@256bit.org>
parents:
9258
diff
changeset
|
1348 call assert_equal(1, qf[1].lnum) |
178252c6850e
commit https://github.com/vim/vim/commit/ab47c61f46f0797308217cd3c045472cb0ec3195
Christian Brabandt <cb@256bit.org>
parents:
9258
diff
changeset
|
1349 call assert_equal('dir1/a/b/habits3.txt', bufname(qf[3].bufnr)) |
178252c6850e
commit https://github.com/vim/vim/commit/ab47c61f46f0797308217cd3c045472cb0ec3195
Christian Brabandt <cb@256bit.org>
parents:
9258
diff
changeset
|
1350 call assert_equal(2, qf[3].lnum) |
178252c6850e
commit https://github.com/vim/vim/commit/ab47c61f46f0797308217cd3c045472cb0ec3195
Christian Brabandt <cb@256bit.org>
parents:
9258
diff
changeset
|
1351 call assert_equal('dir1/a/habits2.txt', bufname(qf[4].bufnr)) |
178252c6850e
commit https://github.com/vim/vim/commit/ab47c61f46f0797308217cd3c045472cb0ec3195
Christian Brabandt <cb@256bit.org>
parents:
9258
diff
changeset
|
1352 call assert_equal(7, qf[4].lnum) |
178252c6850e
commit https://github.com/vim/vim/commit/ab47c61f46f0797308217cd3c045472cb0ec3195
Christian Brabandt <cb@256bit.org>
parents:
9258
diff
changeset
|
1353 call assert_equal('dir1/c/habits4.txt', bufname(qf[6].bufnr)) |
178252c6850e
commit https://github.com/vim/vim/commit/ab47c61f46f0797308217cd3c045472cb0ec3195
Christian Brabandt <cb@256bit.org>
parents:
9258
diff
changeset
|
1354 call assert_equal(3, qf[6].lnum) |
178252c6850e
commit https://github.com/vim/vim/commit/ab47c61f46f0797308217cd3c045472cb0ec3195
Christian Brabandt <cb@256bit.org>
parents:
9258
diff
changeset
|
1355 call assert_equal('habits1.txt', bufname(qf[9].bufnr)) |
178252c6850e
commit https://github.com/vim/vim/commit/ab47c61f46f0797308217cd3c045472cb0ec3195
Christian Brabandt <cb@256bit.org>
parents:
9258
diff
changeset
|
1356 call assert_equal(4, qf[9].lnum) |
178252c6850e
commit https://github.com/vim/vim/commit/ab47c61f46f0797308217cd3c045472cb0ec3195
Christian Brabandt <cb@256bit.org>
parents:
9258
diff
changeset
|
1357 call assert_equal('dir2/habits5.txt', bufname(qf[11].bufnr)) |
178252c6850e
commit https://github.com/vim/vim/commit/ab47c61f46f0797308217cd3c045472cb0ec3195
Christian Brabandt <cb@256bit.org>
parents:
9258
diff
changeset
|
1358 call assert_equal(5, qf[11].lnum) |
178252c6850e
commit https://github.com/vim/vim/commit/ab47c61f46f0797308217cd3c045472cb0ec3195
Christian Brabandt <cb@256bit.org>
parents:
9258
diff
changeset
|
1359 |
178252c6850e
commit https://github.com/vim/vim/commit/ab47c61f46f0797308217cd3c045472cb0ec3195
Christian Brabandt <cb@256bit.org>
parents:
9258
diff
changeset
|
1360 let &efm=save_efm |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
1361 endfunc |
9309
178252c6850e
commit https://github.com/vim/vim/commit/ab47c61f46f0797308217cd3c045472cb0ec3195
Christian Brabandt <cb@256bit.org>
parents:
9258
diff
changeset
|
1362 |
178252c6850e
commit https://github.com/vim/vim/commit/ab47c61f46f0797308217cd3c045472cb0ec3195
Christian Brabandt <cb@256bit.org>
parents:
9258
diff
changeset
|
1363 " Tests for %D and %X errorformat options |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
1364 func Test_efm_dirstack() |
9309
178252c6850e
commit https://github.com/vim/vim/commit/ab47c61f46f0797308217cd3c045472cb0ec3195
Christian Brabandt <cb@256bit.org>
parents:
9258
diff
changeset
|
1365 " Create the directory stack and files |
178252c6850e
commit https://github.com/vim/vim/commit/ab47c61f46f0797308217cd3c045472cb0ec3195
Christian Brabandt <cb@256bit.org>
parents:
9258
diff
changeset
|
1366 call mkdir('dir1') |
178252c6850e
commit https://github.com/vim/vim/commit/ab47c61f46f0797308217cd3c045472cb0ec3195
Christian Brabandt <cb@256bit.org>
parents:
9258
diff
changeset
|
1367 call mkdir('dir1/a') |
178252c6850e
commit https://github.com/vim/vim/commit/ab47c61f46f0797308217cd3c045472cb0ec3195
Christian Brabandt <cb@256bit.org>
parents:
9258
diff
changeset
|
1368 call mkdir('dir1/a/b') |
178252c6850e
commit https://github.com/vim/vim/commit/ab47c61f46f0797308217cd3c045472cb0ec3195
Christian Brabandt <cb@256bit.org>
parents:
9258
diff
changeset
|
1369 call mkdir('dir1/c') |
178252c6850e
commit https://github.com/vim/vim/commit/ab47c61f46f0797308217cd3c045472cb0ec3195
Christian Brabandt <cb@256bit.org>
parents:
9258
diff
changeset
|
1370 call mkdir('dir2') |
178252c6850e
commit https://github.com/vim/vim/commit/ab47c61f46f0797308217cd3c045472cb0ec3195
Christian Brabandt <cb@256bit.org>
parents:
9258
diff
changeset
|
1371 |
28421
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
1372 let lines =<< trim END |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
1373 Nine Healthy Habits |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
1374 0 Hours of television |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
1375 1 Hour of exercise |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
1376 2 Liters of water |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
1377 3 Cups of hot green tea |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
1378 4 Short mental breaks |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
1379 5 Small meals |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
1380 6 AM wake up time |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
1381 7 Minutes of laughter |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
1382 8 Hours of sleep (at least) |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
1383 9 PM end of the day and off to bed |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
1384 END |
9309
178252c6850e
commit https://github.com/vim/vim/commit/ab47c61f46f0797308217cd3c045472cb0ec3195
Christian Brabandt <cb@256bit.org>
parents:
9258
diff
changeset
|
1385 call writefile(lines, 'habits1.txt') |
178252c6850e
commit https://github.com/vim/vim/commit/ab47c61f46f0797308217cd3c045472cb0ec3195
Christian Brabandt <cb@256bit.org>
parents:
9258
diff
changeset
|
1386 call writefile(lines, 'dir1/a/habits2.txt') |
178252c6850e
commit https://github.com/vim/vim/commit/ab47c61f46f0797308217cd3c045472cb0ec3195
Christian Brabandt <cb@256bit.org>
parents:
9258
diff
changeset
|
1387 call writefile(lines, 'dir1/a/b/habits3.txt') |
178252c6850e
commit https://github.com/vim/vim/commit/ab47c61f46f0797308217cd3c045472cb0ec3195
Christian Brabandt <cb@256bit.org>
parents:
9258
diff
changeset
|
1388 call writefile(lines, 'dir1/c/habits4.txt') |
178252c6850e
commit https://github.com/vim/vim/commit/ab47c61f46f0797308217cd3c045472cb0ec3195
Christian Brabandt <cb@256bit.org>
parents:
9258
diff
changeset
|
1389 call writefile(lines, 'dir2/habits5.txt') |
178252c6850e
commit https://github.com/vim/vim/commit/ab47c61f46f0797308217cd3c045472cb0ec3195
Christian Brabandt <cb@256bit.org>
parents:
9258
diff
changeset
|
1390 |
178252c6850e
commit https://github.com/vim/vim/commit/ab47c61f46f0797308217cd3c045472cb0ec3195
Christian Brabandt <cb@256bit.org>
parents:
9258
diff
changeset
|
1391 call s:dir_stack_tests('c') |
178252c6850e
commit https://github.com/vim/vim/commit/ab47c61f46f0797308217cd3c045472cb0ec3195
Christian Brabandt <cb@256bit.org>
parents:
9258
diff
changeset
|
1392 call s:dir_stack_tests('l') |
178252c6850e
commit https://github.com/vim/vim/commit/ab47c61f46f0797308217cd3c045472cb0ec3195
Christian Brabandt <cb@256bit.org>
parents:
9258
diff
changeset
|
1393 |
178252c6850e
commit https://github.com/vim/vim/commit/ab47c61f46f0797308217cd3c045472cb0ec3195
Christian Brabandt <cb@256bit.org>
parents:
9258
diff
changeset
|
1394 call delete('dir1', 'rf') |
178252c6850e
commit https://github.com/vim/vim/commit/ab47c61f46f0797308217cd3c045472cb0ec3195
Christian Brabandt <cb@256bit.org>
parents:
9258
diff
changeset
|
1395 call delete('dir2', 'rf') |
178252c6850e
commit https://github.com/vim/vim/commit/ab47c61f46f0797308217cd3c045472cb0ec3195
Christian Brabandt <cb@256bit.org>
parents:
9258
diff
changeset
|
1396 call delete('habits1.txt') |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
1397 endfunc |
9309
178252c6850e
commit https://github.com/vim/vim/commit/ab47c61f46f0797308217cd3c045472cb0ec3195
Christian Brabandt <cb@256bit.org>
parents:
9258
diff
changeset
|
1398 |
10257
2d0e6034743a
commit https://github.com/vim/vim/commit/9b4579481892a62e7e002498b9eddaaf75bbda49
Christian Brabandt <cb@256bit.org>
parents:
10237
diff
changeset
|
1399 " Test for resync after continuing an ignored message |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
1400 func Xefm_ignore_continuations(cchar) |
10257
2d0e6034743a
commit https://github.com/vim/vim/commit/9b4579481892a62e7e002498b9eddaaf75bbda49
Christian Brabandt <cb@256bit.org>
parents:
10237
diff
changeset
|
1401 call s:setup_commands(a:cchar) |
2d0e6034743a
commit https://github.com/vim/vim/commit/9b4579481892a62e7e002498b9eddaaf75bbda49
Christian Brabandt <cb@256bit.org>
parents:
10237
diff
changeset
|
1402 |
2d0e6034743a
commit https://github.com/vim/vim/commit/9b4579481892a62e7e002498b9eddaaf75bbda49
Christian Brabandt <cb@256bit.org>
parents:
10237
diff
changeset
|
1403 let save_efm = &efm |
2d0e6034743a
commit https://github.com/vim/vim/commit/9b4579481892a62e7e002498b9eddaaf75bbda49
Christian Brabandt <cb@256bit.org>
parents:
10237
diff
changeset
|
1404 |
2d0e6034743a
commit https://github.com/vim/vim/commit/9b4579481892a62e7e002498b9eddaaf75bbda49
Christian Brabandt <cb@256bit.org>
parents:
10237
diff
changeset
|
1405 let &efm = |
2d0e6034743a
commit https://github.com/vim/vim/commit/9b4579481892a62e7e002498b9eddaaf75bbda49
Christian Brabandt <cb@256bit.org>
parents:
10237
diff
changeset
|
1406 \ '%Eerror %m %l,' . |
2d0e6034743a
commit https://github.com/vim/vim/commit/9b4579481892a62e7e002498b9eddaaf75bbda49
Christian Brabandt <cb@256bit.org>
parents:
10237
diff
changeset
|
1407 \ '%-Wignored %m %l,' . |
2d0e6034743a
commit https://github.com/vim/vim/commit/9b4579481892a62e7e002498b9eddaaf75bbda49
Christian Brabandt <cb@256bit.org>
parents:
10237
diff
changeset
|
1408 \ '%+Cmore ignored %m %l,' . |
2d0e6034743a
commit https://github.com/vim/vim/commit/9b4579481892a62e7e002498b9eddaaf75bbda49
Christian Brabandt <cb@256bit.org>
parents:
10237
diff
changeset
|
1409 \ '%Zignored end' |
28421
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
1410 let lines =<< trim END |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
1411 ignored warning 1 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
1412 more ignored continuation 2 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
1413 ignored end |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
1414 error resync 4 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
1415 END |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
1416 Xgetexpr lines |
10257
2d0e6034743a
commit https://github.com/vim/vim/commit/9b4579481892a62e7e002498b9eddaaf75bbda49
Christian Brabandt <cb@256bit.org>
parents:
10237
diff
changeset
|
1417 let l = map(g:Xgetlist(), '[v:val.text, v:val.valid, v:val.lnum, v:val.type]') |
2d0e6034743a
commit https://github.com/vim/vim/commit/9b4579481892a62e7e002498b9eddaaf75bbda49
Christian Brabandt <cb@256bit.org>
parents:
10237
diff
changeset
|
1418 call assert_equal([['resync', 1, 4, 'E']], l) |
2d0e6034743a
commit https://github.com/vim/vim/commit/9b4579481892a62e7e002498b9eddaaf75bbda49
Christian Brabandt <cb@256bit.org>
parents:
10237
diff
changeset
|
1419 |
2d0e6034743a
commit https://github.com/vim/vim/commit/9b4579481892a62e7e002498b9eddaaf75bbda49
Christian Brabandt <cb@256bit.org>
parents:
10237
diff
changeset
|
1420 let &efm = save_efm |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
1421 endfunc |
10257
2d0e6034743a
commit https://github.com/vim/vim/commit/9b4579481892a62e7e002498b9eddaaf75bbda49
Christian Brabandt <cb@256bit.org>
parents:
10237
diff
changeset
|
1422 |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
1423 func Test_efm_ignore_continuations() |
10257
2d0e6034743a
commit https://github.com/vim/vim/commit/9b4579481892a62e7e002498b9eddaaf75bbda49
Christian Brabandt <cb@256bit.org>
parents:
10237
diff
changeset
|
1424 call Xefm_ignore_continuations('c') |
2d0e6034743a
commit https://github.com/vim/vim/commit/9b4579481892a62e7e002498b9eddaaf75bbda49
Christian Brabandt <cb@256bit.org>
parents:
10237
diff
changeset
|
1425 call Xefm_ignore_continuations('l') |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
1426 endfunc |
10257
2d0e6034743a
commit https://github.com/vim/vim/commit/9b4579481892a62e7e002498b9eddaaf75bbda49
Christian Brabandt <cb@256bit.org>
parents:
10237
diff
changeset
|
1427 |
9405
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
1428 " Tests for invalid error format specifies |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
1429 func Xinvalid_efm_Tests(cchar) |
9405
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
1430 call s:setup_commands(a:cchar) |
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
1431 |
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
1432 let save_efm = &efm |
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
1433 |
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
1434 set efm=%f:%l:%m,%f:%f:%l:%m |
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
1435 call assert_fails('Xexpr "abc.txt:1:Hello world"', 'E372:') |
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
1436 |
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
1437 set efm=%f:%l:%m,%f:%l:%r:%m |
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
1438 call assert_fails('Xexpr "abc.txt:1:Hello world"', 'E373:') |
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
1439 |
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
1440 set efm=%f:%l:%m,%O:%f:%l:%m |
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
1441 call assert_fails('Xexpr "abc.txt:1:Hello world"', 'E373:') |
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
1442 |
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
1443 set efm=%f:%l:%m,%f:%l:%*[^a-z |
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
1444 call assert_fails('Xexpr "abc.txt:1:Hello world"', 'E374:') |
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
1445 |
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
1446 set efm=%f:%l:%m,%f:%l:%*c |
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
1447 call assert_fails('Xexpr "abc.txt:1:Hello world"', 'E375:') |
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
1448 |
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
1449 set efm=%f:%l:%m,%L%M%N |
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
1450 call assert_fails('Xexpr "abc.txt:1:Hello world"', 'E376:') |
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
1451 |
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
1452 set efm=%f:%l:%m,%f:%l:%m:%R |
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
1453 call assert_fails('Xexpr "abc.txt:1:Hello world"', 'E377:') |
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
1454 |
18695
48ded92ce361
patch 8.1.2339: insufficient testing for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18660
diff
changeset
|
1455 " Invalid regular expression |
48ded92ce361
patch 8.1.2339: insufficient testing for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18660
diff
changeset
|
1456 set efm=%\\%%k |
48ded92ce361
patch 8.1.2339: insufficient testing for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18660
diff
changeset
|
1457 call assert_fails('Xexpr "abc.txt:1:Hello world"', 'E867:') |
48ded92ce361
patch 8.1.2339: insufficient testing for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18660
diff
changeset
|
1458 |
9405
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
1459 set efm= |
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
1460 call assert_fails('Xexpr "abc.txt:1:Hello world"', 'E378:') |
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
1461 |
27873
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
1462 " Empty directory name. When there is an error in parsing new entries, make |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
1463 " sure the previous quickfix list is made the current list. |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
1464 set efm& |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
1465 cexpr ["one", "two"] |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
1466 let qf_id = getqflist(#{id: 0}).id |
9405
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
1467 set efm=%DEntering\ dir\ abc,%f:%l:%m |
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
1468 call assert_fails('Xexpr ["Entering dir abc", "abc.txt:1:Hello world"]', 'E379:') |
27873
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
1469 call assert_equal(qf_id, getqflist(#{id: 0}).id) |
9405
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
1470 |
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
1471 let &efm = save_efm |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
1472 endfunc |
9405
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
1473 |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
1474 func Test_invalid_efm() |
9405
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
1475 call Xinvalid_efm_Tests('c') |
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
1476 call Xinvalid_efm_Tests('l') |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
1477 endfunc |
9405
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
1478 |
9342
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
1479 " TODO: |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
1480 " Add tests for the following formats in 'errorformat' |
9405
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
1481 " %r %O |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
1482 func Test_efm2() |
9342
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
1483 let save_efm = &efm |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
1484 |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
1485 " Test for %s format in efm |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
1486 set efm=%f:%s |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
1487 cexpr 'Xtestfile:Line search text' |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
1488 let l = getqflist() |
18695
48ded92ce361
patch 8.1.2339: insufficient testing for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18660
diff
changeset
|
1489 call assert_equal('^\VLine search text\$', l[0].pattern) |
48ded92ce361
patch 8.1.2339: insufficient testing for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18660
diff
changeset
|
1490 call assert_equal(0, l[0].lnum) |
9342
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
1491 |
11195
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
1492 let l = split(execute('clist', ''), "\n") |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
1493 call assert_equal([' 1 Xtestfile:^\VLine search text\$: '], l) |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
1494 |
18695
48ded92ce361
patch 8.1.2339: insufficient testing for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18660
diff
changeset
|
1495 " Test for a long line |
48ded92ce361
patch 8.1.2339: insufficient testing for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18660
diff
changeset
|
1496 cexpr 'Xtestfile:' . repeat('a', 1026) |
48ded92ce361
patch 8.1.2339: insufficient testing for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18660
diff
changeset
|
1497 let l = getqflist() |
48ded92ce361
patch 8.1.2339: insufficient testing for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18660
diff
changeset
|
1498 call assert_equal('^\V' . repeat('a', 1019) . '\$', l[0].pattern) |
48ded92ce361
patch 8.1.2339: insufficient testing for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18660
diff
changeset
|
1499 |
9405
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
1500 " Test for %P, %Q and %t format specifiers |
16720
9c90cf08cfa8
patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents:
16555
diff
changeset
|
1501 let lines =<< trim [DATA] |
17172
6990c1160ea5
patch 8.1.1585: :let-heredoc does not trim enough
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
1502 [Xtestfile1] |
6990c1160ea5
patch 8.1.1585: :let-heredoc does not trim enough
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
1503 (1,17) error: ';' missing |
6990c1160ea5
patch 8.1.1585: :let-heredoc does not trim enough
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
1504 (21,2) warning: variable 'z' not defined |
6990c1160ea5
patch 8.1.1585: :let-heredoc does not trim enough
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
1505 (67,3) error: end of file found before string ended |
6990c1160ea5
patch 8.1.1585: :let-heredoc does not trim enough
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
1506 -- |
6990c1160ea5
patch 8.1.1585: :let-heredoc does not trim enough
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
1507 |
6990c1160ea5
patch 8.1.1585: :let-heredoc does not trim enough
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
1508 [Xtestfile2] |
6990c1160ea5
patch 8.1.1585: :let-heredoc does not trim enough
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
1509 -- |
6990c1160ea5
patch 8.1.1585: :let-heredoc does not trim enough
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
1510 |
6990c1160ea5
patch 8.1.1585: :let-heredoc does not trim enough
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
1511 [Xtestfile3] |
6990c1160ea5
patch 8.1.1585: :let-heredoc does not trim enough
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
1512 NEW compiler v1.1 |
6990c1160ea5
patch 8.1.1585: :let-heredoc does not trim enough
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
1513 (2,2) warning: variable 'x' not defined |
6990c1160ea5
patch 8.1.1585: :let-heredoc does not trim enough
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
1514 (67,3) warning: 's' already defined |
6990c1160ea5
patch 8.1.1585: :let-heredoc does not trim enough
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
1515 -- |
16720
9c90cf08cfa8
patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents:
16555
diff
changeset
|
1516 [DATA] |
9c90cf08cfa8
patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents:
16555
diff
changeset
|
1517 |
11195
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
1518 set efm=%+P[%f]%r,(%l\\,%c)%*[\ ]%t%*[^:]:\ %m,%+Q--%r |
11030
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
1519 " To exercise the push/pop file functionality in quickfix, the test files |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
1520 " need to be created. |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
1521 call writefile(['Line1'], 'Xtestfile1') |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
1522 call writefile(['Line2'], 'Xtestfile2') |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
1523 call writefile(['Line3'], 'Xtestfile3') |
9397
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9342
diff
changeset
|
1524 cexpr "" |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9342
diff
changeset
|
1525 for l in lines |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9342
diff
changeset
|
1526 caddexpr l |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9342
diff
changeset
|
1527 endfor |
9342
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
1528 let l = getqflist() |
11195
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
1529 call assert_equal(12, len(l)) |
9342
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
1530 call assert_equal(21, l[2].lnum) |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
1531 call assert_equal(2, l[2].col) |
9405
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
1532 call assert_equal('w', l[2].type) |
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
1533 call assert_equal('e', l[3].type) |
11030
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
1534 call delete('Xtestfile1') |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
1535 call delete('Xtestfile2') |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
1536 call delete('Xtestfile3') |
9405
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
1537 |
18695
48ded92ce361
patch 8.1.2339: insufficient testing for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18660
diff
changeset
|
1538 " Test for %P, %Q with non-existing files |
48ded92ce361
patch 8.1.2339: insufficient testing for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18660
diff
changeset
|
1539 cexpr lines |
48ded92ce361
patch 8.1.2339: insufficient testing for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18660
diff
changeset
|
1540 let l = getqflist() |
48ded92ce361
patch 8.1.2339: insufficient testing for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18660
diff
changeset
|
1541 call assert_equal(14, len(l)) |
48ded92ce361
patch 8.1.2339: insufficient testing for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18660
diff
changeset
|
1542 call assert_equal('[Xtestfile1]', l[0].text) |
48ded92ce361
patch 8.1.2339: insufficient testing for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18660
diff
changeset
|
1543 call assert_equal('[Xtestfile2]', l[6].text) |
48ded92ce361
patch 8.1.2339: insufficient testing for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18660
diff
changeset
|
1544 call assert_equal('[Xtestfile3]', l[9].text) |
48ded92ce361
patch 8.1.2339: insufficient testing for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18660
diff
changeset
|
1545 |
9405
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
1546 " Tests for %E, %C and %Z format specifiers |
16720
9c90cf08cfa8
patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents:
16555
diff
changeset
|
1547 let lines =<< trim [DATA] |
17172
6990c1160ea5
patch 8.1.1585: :let-heredoc does not trim enough
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
1548 Error 275 |
6990c1160ea5
patch 8.1.1585: :let-heredoc does not trim enough
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
1549 line 42 |
6990c1160ea5
patch 8.1.1585: :let-heredoc does not trim enough
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
1550 column 3 |
6990c1160ea5
patch 8.1.1585: :let-heredoc does not trim enough
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
1551 ' ' expected after '--' |
16720
9c90cf08cfa8
patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents:
16555
diff
changeset
|
1552 [DATA] |
9c90cf08cfa8
patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents:
16555
diff
changeset
|
1553 |
9405
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
1554 set efm=%EError\ %n,%Cline\ %l,%Ccolumn\ %c,%Z%m |
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
1555 cgetexpr lines |
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
1556 let l = getqflist() |
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
1557 call assert_equal(275, l[0].nr) |
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
1558 call assert_equal(42, l[0].lnum) |
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
1559 call assert_equal(3, l[0].col) |
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
1560 call assert_equal('E', l[0].type) |
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
1561 call assert_equal("\n' ' expected after '--'", l[0].text) |
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
1562 |
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
1563 " Test for %> |
16720
9c90cf08cfa8
patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents:
16555
diff
changeset
|
1564 let lines =<< trim [DATA] |
17172
6990c1160ea5
patch 8.1.1585: :let-heredoc does not trim enough
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
1565 Error in line 147 of foo.c: |
6990c1160ea5
patch 8.1.1585: :let-heredoc does not trim enough
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
1566 unknown variable 'i' |
16720
9c90cf08cfa8
patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents:
16555
diff
changeset
|
1567 [DATA] |
9c90cf08cfa8
patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents:
16555
diff
changeset
|
1568 |
9405
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
1569 set efm=unknown\ variable\ %m,%E%>Error\ in\ line\ %l\ of\ %f:,%Z%m |
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
1570 cgetexpr lines |
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
1571 let l = getqflist() |
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
1572 call assert_equal(147, l[0].lnum) |
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
1573 call assert_equal('E', l[0].type) |
2ce9814053d8
commit https://github.com/vim/vim/commit/0fcc7c6dd1902b71e0e7d0a35ddabafef6455a83
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
1574 call assert_equal("\nunknown variable 'i'", l[0].text) |
9342
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
1575 |
9568
ccbd2e604e59
commit https://github.com/vim/vim/commit/e87e6dddc2b2a99572ec0db0833c052214c4fbd3
Christian Brabandt <cb@256bit.org>
parents:
9540
diff
changeset
|
1576 " Test for %A, %C and other formats |
16720
9c90cf08cfa8
patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents:
16555
diff
changeset
|
1577 let lines =<< trim [DATA] |
17172
6990c1160ea5
patch 8.1.1585: :let-heredoc does not trim enough
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
1578 ============================================================== |
6990c1160ea5
patch 8.1.1585: :let-heredoc does not trim enough
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
1579 FAIL: testGetTypeIdCachesResult (dbfacadeTest.DjsDBFacadeTest) |
6990c1160ea5
patch 8.1.1585: :let-heredoc does not trim enough
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
1580 -------------------------------------------------------------- |
6990c1160ea5
patch 8.1.1585: :let-heredoc does not trim enough
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
1581 Traceback (most recent call last): |
6990c1160ea5
patch 8.1.1585: :let-heredoc does not trim enough
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
1582 File "unittests/dbfacadeTest.py", line 89, in testFoo |
6990c1160ea5
patch 8.1.1585: :let-heredoc does not trim enough
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
1583 self.assertEquals(34, dtid) |
6990c1160ea5
patch 8.1.1585: :let-heredoc does not trim enough
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
1584 File "/usr/lib/python2.2/unittest.py", line 286, in |
6990c1160ea5
patch 8.1.1585: :let-heredoc does not trim enough
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
1585 failUnlessEqual |
6990c1160ea5
patch 8.1.1585: :let-heredoc does not trim enough
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
1586 raise self.failureException, \\ |
18695
48ded92ce361
patch 8.1.2339: insufficient testing for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18660
diff
changeset
|
1587 W:AssertionError: 34 != 33 |
17172
6990c1160ea5
patch 8.1.1585: :let-heredoc does not trim enough
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
1588 |
6990c1160ea5
patch 8.1.1585: :let-heredoc does not trim enough
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
1589 -------------------------------------------------------------- |
6990c1160ea5
patch 8.1.1585: :let-heredoc does not trim enough
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
1590 Ran 27 tests in 0.063s |
16720
9c90cf08cfa8
patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents:
16555
diff
changeset
|
1591 [DATA] |
9c90cf08cfa8
patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents:
16555
diff
changeset
|
1592 |
18695
48ded92ce361
patch 8.1.2339: insufficient testing for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18660
diff
changeset
|
1593 set efm=%C\ %.%#,%A\ \ File\ \"%f\"\\,\ line\ %l%.%#,%Z%[%^\ ]%\\@=%t:%m |
9568
ccbd2e604e59
commit https://github.com/vim/vim/commit/e87e6dddc2b2a99572ec0db0833c052214c4fbd3
Christian Brabandt <cb@256bit.org>
parents:
9540
diff
changeset
|
1594 cgetexpr lines |
ccbd2e604e59
commit https://github.com/vim/vim/commit/e87e6dddc2b2a99572ec0db0833c052214c4fbd3
Christian Brabandt <cb@256bit.org>
parents:
9540
diff
changeset
|
1595 let l = getqflist() |
ccbd2e604e59
commit https://github.com/vim/vim/commit/e87e6dddc2b2a99572ec0db0833c052214c4fbd3
Christian Brabandt <cb@256bit.org>
parents:
9540
diff
changeset
|
1596 call assert_equal(8, len(l)) |
ccbd2e604e59
commit https://github.com/vim/vim/commit/e87e6dddc2b2a99572ec0db0833c052214c4fbd3
Christian Brabandt <cb@256bit.org>
parents:
9540
diff
changeset
|
1597 call assert_equal(89, l[4].lnum) |
ccbd2e604e59
commit https://github.com/vim/vim/commit/e87e6dddc2b2a99572ec0db0833c052214c4fbd3
Christian Brabandt <cb@256bit.org>
parents:
9540
diff
changeset
|
1598 call assert_equal(1, l[4].valid) |
ccbd2e604e59
commit https://github.com/vim/vim/commit/e87e6dddc2b2a99572ec0db0833c052214c4fbd3
Christian Brabandt <cb@256bit.org>
parents:
9540
diff
changeset
|
1599 call assert_equal('unittests/dbfacadeTest.py', bufname(l[4].bufnr)) |
18695
48ded92ce361
patch 8.1.2339: insufficient testing for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18660
diff
changeset
|
1600 call assert_equal('W', l[4].type) |
9568
ccbd2e604e59
commit https://github.com/vim/vim/commit/e87e6dddc2b2a99572ec0db0833c052214c4fbd3
Christian Brabandt <cb@256bit.org>
parents:
9540
diff
changeset
|
1601 |
13821
98274127d675
patch 8.0.1782: no simple way to label quickfix entries
Christian Brabandt <cb@256bit.org>
parents:
13819
diff
changeset
|
1602 " Test for %o |
98274127d675
patch 8.0.1782: no simple way to label quickfix entries
Christian Brabandt <cb@256bit.org>
parents:
13819
diff
changeset
|
1603 set efm=%f(%o):%l\ %m |
13825
eb7707562201
patch 8.0.1784: gvim test gets stuck in dialog
Christian Brabandt <cb@256bit.org>
parents:
13821
diff
changeset
|
1604 cgetexpr ['Xotestfile(Language.PureScript.Types):20 Error'] |
eb7707562201
patch 8.0.1784: gvim test gets stuck in dialog
Christian Brabandt <cb@256bit.org>
parents:
13821
diff
changeset
|
1605 call writefile(['Line1'], 'Xotestfile') |
13821
98274127d675
patch 8.0.1782: no simple way to label quickfix entries
Christian Brabandt <cb@256bit.org>
parents:
13819
diff
changeset
|
1606 let l = getqflist() |
98274127d675
patch 8.0.1782: no simple way to label quickfix entries
Christian Brabandt <cb@256bit.org>
parents:
13819
diff
changeset
|
1607 call assert_equal(1, len(l), string(l)) |
98274127d675
patch 8.0.1782: no simple way to label quickfix entries
Christian Brabandt <cb@256bit.org>
parents:
13819
diff
changeset
|
1608 call assert_equal('Language.PureScript.Types', l[0].module) |
98274127d675
patch 8.0.1782: no simple way to label quickfix entries
Christian Brabandt <cb@256bit.org>
parents:
13819
diff
changeset
|
1609 copen |
98274127d675
patch 8.0.1782: no simple way to label quickfix entries
Christian Brabandt <cb@256bit.org>
parents:
13819
diff
changeset
|
1610 call assert_equal('Language.PureScript.Types|20| Error', getline(1)) |
98274127d675
patch 8.0.1782: no simple way to label quickfix entries
Christian Brabandt <cb@256bit.org>
parents:
13819
diff
changeset
|
1611 call feedkeys("\<CR>", 'xn') |
13825
eb7707562201
patch 8.0.1784: gvim test gets stuck in dialog
Christian Brabandt <cb@256bit.org>
parents:
13821
diff
changeset
|
1612 call assert_equal('Xotestfile', expand('%:t')) |
13821
98274127d675
patch 8.0.1782: no simple way to label quickfix entries
Christian Brabandt <cb@256bit.org>
parents:
13819
diff
changeset
|
1613 cclose |
98274127d675
patch 8.0.1782: no simple way to label quickfix entries
Christian Brabandt <cb@256bit.org>
parents:
13819
diff
changeset
|
1614 bd |
13825
eb7707562201
patch 8.0.1784: gvim test gets stuck in dialog
Christian Brabandt <cb@256bit.org>
parents:
13821
diff
changeset
|
1615 call delete("Xotestfile") |
13821
98274127d675
patch 8.0.1782: no simple way to label quickfix entries
Christian Brabandt <cb@256bit.org>
parents:
13819
diff
changeset
|
1616 |
18695
48ded92ce361
patch 8.1.2339: insufficient testing for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18660
diff
changeset
|
1617 " Test for a long module name |
48ded92ce361
patch 8.1.2339: insufficient testing for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18660
diff
changeset
|
1618 cexpr 'Xtest(' . repeat('m', 1026) . '):15 message' |
48ded92ce361
patch 8.1.2339: insufficient testing for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18660
diff
changeset
|
1619 let l = getqflist() |
48ded92ce361
patch 8.1.2339: insufficient testing for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18660
diff
changeset
|
1620 call assert_equal(repeat('m', 1024), l[0].module) |
48ded92ce361
patch 8.1.2339: insufficient testing for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18660
diff
changeset
|
1621 call assert_equal(15, l[0].lnum) |
48ded92ce361
patch 8.1.2339: insufficient testing for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18660
diff
changeset
|
1622 call assert_equal('message', l[0].text) |
48ded92ce361
patch 8.1.2339: insufficient testing for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18660
diff
changeset
|
1623 |
11378
2ed7a34ecc54
patch 8.0.0574: get only one quickfix list after :caddbuf
Christian Brabandt <cb@256bit.org>
parents:
11301
diff
changeset
|
1624 " The following sequence of commands used to crash Vim |
2ed7a34ecc54
patch 8.0.0574: get only one quickfix list after :caddbuf
Christian Brabandt <cb@256bit.org>
parents:
11301
diff
changeset
|
1625 set efm=%W%m |
2ed7a34ecc54
patch 8.0.0574: get only one quickfix list after :caddbuf
Christian Brabandt <cb@256bit.org>
parents:
11301
diff
changeset
|
1626 cgetexpr ['msg1'] |
2ed7a34ecc54
patch 8.0.0574: get only one quickfix list after :caddbuf
Christian Brabandt <cb@256bit.org>
parents:
11301
diff
changeset
|
1627 let l = getqflist() |
2ed7a34ecc54
patch 8.0.0574: get only one quickfix list after :caddbuf
Christian Brabandt <cb@256bit.org>
parents:
11301
diff
changeset
|
1628 call assert_equal(1, len(l), string(l)) |
2ed7a34ecc54
patch 8.0.0574: get only one quickfix list after :caddbuf
Christian Brabandt <cb@256bit.org>
parents:
11301
diff
changeset
|
1629 call assert_equal('msg1', l[0].text) |
2ed7a34ecc54
patch 8.0.0574: get only one quickfix list after :caddbuf
Christian Brabandt <cb@256bit.org>
parents:
11301
diff
changeset
|
1630 set efm=%C%m |
2ed7a34ecc54
patch 8.0.0574: get only one quickfix list after :caddbuf
Christian Brabandt <cb@256bit.org>
parents:
11301
diff
changeset
|
1631 lexpr 'msg2' |
2ed7a34ecc54
patch 8.0.0574: get only one quickfix list after :caddbuf
Christian Brabandt <cb@256bit.org>
parents:
11301
diff
changeset
|
1632 let l = getloclist(0) |
2ed7a34ecc54
patch 8.0.0574: get only one quickfix list after :caddbuf
Christian Brabandt <cb@256bit.org>
parents:
11301
diff
changeset
|
1633 call assert_equal(1, len(l), string(l)) |
2ed7a34ecc54
patch 8.0.0574: get only one quickfix list after :caddbuf
Christian Brabandt <cb@256bit.org>
parents:
11301
diff
changeset
|
1634 call assert_equal('msg2', l[0].text) |
2ed7a34ecc54
patch 8.0.0574: get only one quickfix list after :caddbuf
Christian Brabandt <cb@256bit.org>
parents:
11301
diff
changeset
|
1635 lopen |
2ed7a34ecc54
patch 8.0.0574: get only one quickfix list after :caddbuf
Christian Brabandt <cb@256bit.org>
parents:
11301
diff
changeset
|
1636 call setqflist([], 'r') |
2ed7a34ecc54
patch 8.0.0574: get only one quickfix list after :caddbuf
Christian Brabandt <cb@256bit.org>
parents:
11301
diff
changeset
|
1637 caddbuf |
2ed7a34ecc54
patch 8.0.0574: get only one quickfix list after :caddbuf
Christian Brabandt <cb@256bit.org>
parents:
11301
diff
changeset
|
1638 let l = getqflist() |
2ed7a34ecc54
patch 8.0.0574: get only one quickfix list after :caddbuf
Christian Brabandt <cb@256bit.org>
parents:
11301
diff
changeset
|
1639 call assert_equal(1, len(l), string(l)) |
2ed7a34ecc54
patch 8.0.0574: get only one quickfix list after :caddbuf
Christian Brabandt <cb@256bit.org>
parents:
11301
diff
changeset
|
1640 call assert_equal('|| msg2', l[0].text) |
2ed7a34ecc54
patch 8.0.0574: get only one quickfix list after :caddbuf
Christian Brabandt <cb@256bit.org>
parents:
11301
diff
changeset
|
1641 |
13948
2ed1585c6467
patch 8.0.1844: superfluous quickfix code, missing examples
Christian Brabandt <cb@256bit.org>
parents:
13921
diff
changeset
|
1642 " When matching error lines, case should be ignored. Test for this. |
2ed1585c6467
patch 8.0.1844: superfluous quickfix code, missing examples
Christian Brabandt <cb@256bit.org>
parents:
13921
diff
changeset
|
1643 set noignorecase |
2ed1585c6467
patch 8.0.1844: superfluous quickfix code, missing examples
Christian Brabandt <cb@256bit.org>
parents:
13921
diff
changeset
|
1644 let l=getqflist({'lines' : ['Xtest:FOO10:Line 20'], 'efm':'%f:foo%l:%m'}) |
2ed1585c6467
patch 8.0.1844: superfluous quickfix code, missing examples
Christian Brabandt <cb@256bit.org>
parents:
13921
diff
changeset
|
1645 call assert_equal(10, l.items[0].lnum) |
2ed1585c6467
patch 8.0.1844: superfluous quickfix code, missing examples
Christian Brabandt <cb@256bit.org>
parents:
13921
diff
changeset
|
1646 call assert_equal('Line 20', l.items[0].text) |
2ed1585c6467
patch 8.0.1844: superfluous quickfix code, missing examples
Christian Brabandt <cb@256bit.org>
parents:
13921
diff
changeset
|
1647 set ignorecase& |
2ed1585c6467
patch 8.0.1844: superfluous quickfix code, missing examples
Christian Brabandt <cb@256bit.org>
parents:
13921
diff
changeset
|
1648 |
11378
2ed7a34ecc54
patch 8.0.0574: get only one quickfix list after :caddbuf
Christian Brabandt <cb@256bit.org>
parents:
11301
diff
changeset
|
1649 new | only |
9342
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
1650 let &efm = save_efm |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
1651 endfunc |
9342
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
1652 |
20729
ada6f26e6eb1
patch 8.2.0917: quickfix entries do not suport a "note" type
Bram Moolenaar <Bram@vim.org>
parents:
20631
diff
changeset
|
1653 " Test for '%t' (error type) field in 'efm' |
ada6f26e6eb1
patch 8.2.0917: quickfix entries do not suport a "note" type
Bram Moolenaar <Bram@vim.org>
parents:
20631
diff
changeset
|
1654 func Test_efm_error_type() |
ada6f26e6eb1
patch 8.2.0917: quickfix entries do not suport a "note" type
Bram Moolenaar <Bram@vim.org>
parents:
20631
diff
changeset
|
1655 let save_efm = &efm |
ada6f26e6eb1
patch 8.2.0917: quickfix entries do not suport a "note" type
Bram Moolenaar <Bram@vim.org>
parents:
20631
diff
changeset
|
1656 |
ada6f26e6eb1
patch 8.2.0917: quickfix entries do not suport a "note" type
Bram Moolenaar <Bram@vim.org>
parents:
20631
diff
changeset
|
1657 " error type |
ada6f26e6eb1
patch 8.2.0917: quickfix entries do not suport a "note" type
Bram Moolenaar <Bram@vim.org>
parents:
20631
diff
changeset
|
1658 set efm=%f:%l:%t:%m |
28421
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
1659 let lines =<< trim END |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
1660 Xfile1:10:E:msg1 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
1661 Xfile1:20:W:msg2 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
1662 Xfile1:30:I:msg3 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
1663 Xfile1:40:N:msg4 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
1664 Xfile1:50:R:msg5 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
1665 END |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
1666 cexpr lines |
20729
ada6f26e6eb1
patch 8.2.0917: quickfix entries do not suport a "note" type
Bram Moolenaar <Bram@vim.org>
parents:
20631
diff
changeset
|
1667 let output = split(execute('clist'), "\n") |
ada6f26e6eb1
patch 8.2.0917: quickfix entries do not suport a "note" type
Bram Moolenaar <Bram@vim.org>
parents:
20631
diff
changeset
|
1668 call assert_equal([ |
ada6f26e6eb1
patch 8.2.0917: quickfix entries do not suport a "note" type
Bram Moolenaar <Bram@vim.org>
parents:
20631
diff
changeset
|
1669 \ ' 1 Xfile1:10 error: msg1', |
ada6f26e6eb1
patch 8.2.0917: quickfix entries do not suport a "note" type
Bram Moolenaar <Bram@vim.org>
parents:
20631
diff
changeset
|
1670 \ ' 2 Xfile1:20 warning: msg2', |
ada6f26e6eb1
patch 8.2.0917: quickfix entries do not suport a "note" type
Bram Moolenaar <Bram@vim.org>
parents:
20631
diff
changeset
|
1671 \ ' 3 Xfile1:30 info: msg3', |
ada6f26e6eb1
patch 8.2.0917: quickfix entries do not suport a "note" type
Bram Moolenaar <Bram@vim.org>
parents:
20631
diff
changeset
|
1672 \ ' 4 Xfile1:40 note: msg4', |
ada6f26e6eb1
patch 8.2.0917: quickfix entries do not suport a "note" type
Bram Moolenaar <Bram@vim.org>
parents:
20631
diff
changeset
|
1673 \ ' 5 Xfile1:50 R: msg5'], output) |
ada6f26e6eb1
patch 8.2.0917: quickfix entries do not suport a "note" type
Bram Moolenaar <Bram@vim.org>
parents:
20631
diff
changeset
|
1674 |
ada6f26e6eb1
patch 8.2.0917: quickfix entries do not suport a "note" type
Bram Moolenaar <Bram@vim.org>
parents:
20631
diff
changeset
|
1675 " error type and a error number |
ada6f26e6eb1
patch 8.2.0917: quickfix entries do not suport a "note" type
Bram Moolenaar <Bram@vim.org>
parents:
20631
diff
changeset
|
1676 set efm=%f:%l:%t:%n:%m |
28421
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
1677 let lines =<< trim END |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
1678 Xfile1:10:E:2:msg1 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
1679 Xfile1:20:W:4:msg2 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
1680 Xfile1:30:I:6:msg3 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
1681 Xfile1:40:N:8:msg4 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
1682 Xfile1:50:R:3:msg5 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
1683 END |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
1684 cexpr lines |
20729
ada6f26e6eb1
patch 8.2.0917: quickfix entries do not suport a "note" type
Bram Moolenaar <Bram@vim.org>
parents:
20631
diff
changeset
|
1685 let output = split(execute('clist'), "\n") |
ada6f26e6eb1
patch 8.2.0917: quickfix entries do not suport a "note" type
Bram Moolenaar <Bram@vim.org>
parents:
20631
diff
changeset
|
1686 call assert_equal([ |
ada6f26e6eb1
patch 8.2.0917: quickfix entries do not suport a "note" type
Bram Moolenaar <Bram@vim.org>
parents:
20631
diff
changeset
|
1687 \ ' 1 Xfile1:10 error 2: msg1', |
ada6f26e6eb1
patch 8.2.0917: quickfix entries do not suport a "note" type
Bram Moolenaar <Bram@vim.org>
parents:
20631
diff
changeset
|
1688 \ ' 2 Xfile1:20 warning 4: msg2', |
ada6f26e6eb1
patch 8.2.0917: quickfix entries do not suport a "note" type
Bram Moolenaar <Bram@vim.org>
parents:
20631
diff
changeset
|
1689 \ ' 3 Xfile1:30 info 6: msg3', |
ada6f26e6eb1
patch 8.2.0917: quickfix entries do not suport a "note" type
Bram Moolenaar <Bram@vim.org>
parents:
20631
diff
changeset
|
1690 \ ' 4 Xfile1:40 note 8: msg4', |
ada6f26e6eb1
patch 8.2.0917: quickfix entries do not suport a "note" type
Bram Moolenaar <Bram@vim.org>
parents:
20631
diff
changeset
|
1691 \ ' 5 Xfile1:50 R 3: msg5'], output) |
ada6f26e6eb1
patch 8.2.0917: quickfix entries do not suport a "note" type
Bram Moolenaar <Bram@vim.org>
parents:
20631
diff
changeset
|
1692 let &efm = save_efm |
ada6f26e6eb1
patch 8.2.0917: quickfix entries do not suport a "note" type
Bram Moolenaar <Bram@vim.org>
parents:
20631
diff
changeset
|
1693 endfunc |
ada6f26e6eb1
patch 8.2.0917: quickfix entries do not suport a "note" type
Bram Moolenaar <Bram@vim.org>
parents:
20631
diff
changeset
|
1694 |
27605
bf540a32439a
patch 8.2.4329: no support for end line number and column in 'errorformat'
Bram Moolenaar <Bram@vim.org>
parents:
27601
diff
changeset
|
1695 " Test for end_lnum ('%e') and end_col ('%k') fields in 'efm' |
bf540a32439a
patch 8.2.4329: no support for end line number and column in 'errorformat'
Bram Moolenaar <Bram@vim.org>
parents:
27601
diff
changeset
|
1696 func Test_efm_end_lnum_col() |
bf540a32439a
patch 8.2.4329: no support for end line number and column in 'errorformat'
Bram Moolenaar <Bram@vim.org>
parents:
27601
diff
changeset
|
1697 let save_efm = &efm |
bf540a32439a
patch 8.2.4329: no support for end line number and column in 'errorformat'
Bram Moolenaar <Bram@vim.org>
parents:
27601
diff
changeset
|
1698 |
bf540a32439a
patch 8.2.4329: no support for end line number and column in 'errorformat'
Bram Moolenaar <Bram@vim.org>
parents:
27601
diff
changeset
|
1699 " single line |
bf540a32439a
patch 8.2.4329: no support for end line number and column in 'errorformat'
Bram Moolenaar <Bram@vim.org>
parents:
27601
diff
changeset
|
1700 set efm=%f:%l-%e:%c-%k:%t:%m |
bf540a32439a
patch 8.2.4329: no support for end line number and column in 'errorformat'
Bram Moolenaar <Bram@vim.org>
parents:
27601
diff
changeset
|
1701 cexpr ["Xfile1:10-20:1-2:E:msg1", "Xfile1:20-30:2-3:W:msg2",] |
bf540a32439a
patch 8.2.4329: no support for end line number and column in 'errorformat'
Bram Moolenaar <Bram@vim.org>
parents:
27601
diff
changeset
|
1702 let output = split(execute('clist'), "\n") |
bf540a32439a
patch 8.2.4329: no support for end line number and column in 'errorformat'
Bram Moolenaar <Bram@vim.org>
parents:
27601
diff
changeset
|
1703 call assert_equal([ |
bf540a32439a
patch 8.2.4329: no support for end line number and column in 'errorformat'
Bram Moolenaar <Bram@vim.org>
parents:
27601
diff
changeset
|
1704 \ ' 1 Xfile1:10-20 col 1-2 error: msg1', |
bf540a32439a
patch 8.2.4329: no support for end line number and column in 'errorformat'
Bram Moolenaar <Bram@vim.org>
parents:
27601
diff
changeset
|
1705 \ ' 2 Xfile1:20-30 col 2-3 warning: msg2'], output) |
bf540a32439a
patch 8.2.4329: no support for end line number and column in 'errorformat'
Bram Moolenaar <Bram@vim.org>
parents:
27601
diff
changeset
|
1706 |
bf540a32439a
patch 8.2.4329: no support for end line number and column in 'errorformat'
Bram Moolenaar <Bram@vim.org>
parents:
27601
diff
changeset
|
1707 " multiple lines |
bf540a32439a
patch 8.2.4329: no support for end line number and column in 'errorformat'
Bram Moolenaar <Bram@vim.org>
parents:
27601
diff
changeset
|
1708 set efm=%A%n)%m,%Z%f:%l-%e:%c-%k |
28421
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
1709 let lines =<< trim END |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
1710 1)msg1 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
1711 Xfile1:14-24:1-2 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
1712 2)msg2 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
1713 Xfile1:24-34:3-4 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
1714 END |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
1715 cexpr lines |
27605
bf540a32439a
patch 8.2.4329: no support for end line number and column in 'errorformat'
Bram Moolenaar <Bram@vim.org>
parents:
27601
diff
changeset
|
1716 let output = split(execute('clist'), "\n") |
bf540a32439a
patch 8.2.4329: no support for end line number and column in 'errorformat'
Bram Moolenaar <Bram@vim.org>
parents:
27601
diff
changeset
|
1717 call assert_equal([ |
bf540a32439a
patch 8.2.4329: no support for end line number and column in 'errorformat'
Bram Moolenaar <Bram@vim.org>
parents:
27601
diff
changeset
|
1718 \ ' 1 Xfile1:14-24 col 1-2 error 1: msg1', |
bf540a32439a
patch 8.2.4329: no support for end line number and column in 'errorformat'
Bram Moolenaar <Bram@vim.org>
parents:
27601
diff
changeset
|
1719 \ ' 2 Xfile1:24-34 col 3-4 error 2: msg2'], output) |
bf540a32439a
patch 8.2.4329: no support for end line number and column in 'errorformat'
Bram Moolenaar <Bram@vim.org>
parents:
27601
diff
changeset
|
1720 let &efm = save_efm |
bf540a32439a
patch 8.2.4329: no support for end line number and column in 'errorformat'
Bram Moolenaar <Bram@vim.org>
parents:
27601
diff
changeset
|
1721 endfunc |
bf540a32439a
patch 8.2.4329: no support for end line number and column in 'errorformat'
Bram Moolenaar <Bram@vim.org>
parents:
27601
diff
changeset
|
1722 |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
1723 func XquickfixChangedByAutocmd(cchar) |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1724 call s:setup_commands(a:cchar) |
8702
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8649
diff
changeset
|
1725 if a:cchar == 'c' |
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8649
diff
changeset
|
1726 let ErrorNr = 'E925' |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
1727 func! ReadFunc() |
8702
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8649
diff
changeset
|
1728 colder |
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8649
diff
changeset
|
1729 cgetexpr [] |
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8649
diff
changeset
|
1730 endfunc |
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8649
diff
changeset
|
1731 else |
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8649
diff
changeset
|
1732 let ErrorNr = 'E926' |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
1733 func! ReadFunc() |
8702
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8649
diff
changeset
|
1734 lolder |
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8649
diff
changeset
|
1735 lgetexpr [] |
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8649
diff
changeset
|
1736 endfunc |
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8649
diff
changeset
|
1737 endif |
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8649
diff
changeset
|
1738 |
27873
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
1739 augroup QF_Test |
8702
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8649
diff
changeset
|
1740 au! |
8965
90f7dc794aa0
commit https://github.com/vim/vim/commit/d106e5ba7f10f0d2a14eaefe5d78405044416cb9
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
1741 autocmd BufReadCmd test_changed.txt call ReadFunc() |
8702
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8649
diff
changeset
|
1742 augroup END |
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8649
diff
changeset
|
1743 |
8965
90f7dc794aa0
commit https://github.com/vim/vim/commit/d106e5ba7f10f0d2a14eaefe5d78405044416cb9
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
1744 new | only |
8702
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8649
diff
changeset
|
1745 let words = [ "a", "b" ] |
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8649
diff
changeset
|
1746 let qflist = [] |
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8649
diff
changeset
|
1747 for word in words |
8965
90f7dc794aa0
commit https://github.com/vim/vim/commit/d106e5ba7f10f0d2a14eaefe5d78405044416cb9
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
1748 call add(qflist, {'filename': 'test_changed.txt'}) |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1749 call g:Xsetlist(qflist, ' ') |
8702
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8649
diff
changeset
|
1750 endfor |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1751 call assert_fails('Xrewind', ErrorNr . ':') |
8702
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8649
diff
changeset
|
1752 |
27873
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
1753 augroup QF_Test |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
1754 au! |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
1755 augroup END |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
1756 |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
1757 if a:cchar == 'c' |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
1758 cexpr ["Xtest1:1:Line"] |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
1759 cwindow |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
1760 only |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
1761 augroup QF_Test |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
1762 au! |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
1763 autocmd WinEnter * call setqflist([], 'f') |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
1764 augroup END |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
1765 call assert_fails('exe "normal \<CR>"', 'E925:') |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
1766 augroup QF_Test |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
1767 au! |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
1768 augroup END |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
1769 endif |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
1770 %bw! |
8702
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8649
diff
changeset
|
1771 endfunc |
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8649
diff
changeset
|
1772 |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
1773 func Test_quickfix_was_changed_by_autocmd() |
8702
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8649
diff
changeset
|
1774 call XquickfixChangedByAutocmd('c') |
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8649
diff
changeset
|
1775 call XquickfixChangedByAutocmd('l') |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
1776 endfunc |
8716
4ce26276caeb
commit https://github.com/vim/vim/commit/8b20179c657b4266dff115486ca68c6a50324071
Christian Brabandt <cb@256bit.org>
parents:
8702
diff
changeset
|
1777 |
22256
c3c9830c7cdc
patch 8.2.1677: memory access errors when calling setloclist() in autocommand
Bram Moolenaar <Bram@vim.org>
parents:
22099
diff
changeset
|
1778 func Test_setloclist_in_autocommand() |
c3c9830c7cdc
patch 8.2.1677: memory access errors when calling setloclist() in autocommand
Bram Moolenaar <Bram@vim.org>
parents:
22099
diff
changeset
|
1779 call writefile(['test1', 'test2'], 'Xfile') |
c3c9830c7cdc
patch 8.2.1677: memory access errors when calling setloclist() in autocommand
Bram Moolenaar <Bram@vim.org>
parents:
22099
diff
changeset
|
1780 edit Xfile |
c3c9830c7cdc
patch 8.2.1677: memory access errors when calling setloclist() in autocommand
Bram Moolenaar <Bram@vim.org>
parents:
22099
diff
changeset
|
1781 let s:bufnr = bufnr() |
c3c9830c7cdc
patch 8.2.1677: memory access errors when calling setloclist() in autocommand
Bram Moolenaar <Bram@vim.org>
parents:
22099
diff
changeset
|
1782 call setloclist(1, |
c3c9830c7cdc
patch 8.2.1677: memory access errors when calling setloclist() in autocommand
Bram Moolenaar <Bram@vim.org>
parents:
22099
diff
changeset
|
1783 \ [{'bufnr' : s:bufnr, 'lnum' : 1, 'text' : 'test1'}, |
c3c9830c7cdc
patch 8.2.1677: memory access errors when calling setloclist() in autocommand
Bram Moolenaar <Bram@vim.org>
parents:
22099
diff
changeset
|
1784 \ {'bufnr' : s:bufnr, 'lnum' : 2, 'text' : 'test2'}]) |
c3c9830c7cdc
patch 8.2.1677: memory access errors when calling setloclist() in autocommand
Bram Moolenaar <Bram@vim.org>
parents:
22099
diff
changeset
|
1785 |
c3c9830c7cdc
patch 8.2.1677: memory access errors when calling setloclist() in autocommand
Bram Moolenaar <Bram@vim.org>
parents:
22099
diff
changeset
|
1786 augroup Test_LocList |
c3c9830c7cdc
patch 8.2.1677: memory access errors when calling setloclist() in autocommand
Bram Moolenaar <Bram@vim.org>
parents:
22099
diff
changeset
|
1787 au! |
c3c9830c7cdc
patch 8.2.1677: memory access errors when calling setloclist() in autocommand
Bram Moolenaar <Bram@vim.org>
parents:
22099
diff
changeset
|
1788 autocmd BufEnter * call setloclist(1, |
c3c9830c7cdc
patch 8.2.1677: memory access errors when calling setloclist() in autocommand
Bram Moolenaar <Bram@vim.org>
parents:
22099
diff
changeset
|
1789 \ [{'bufnr' : s:bufnr, 'lnum' : 1, 'text' : 'test1'}, |
c3c9830c7cdc
patch 8.2.1677: memory access errors when calling setloclist() in autocommand
Bram Moolenaar <Bram@vim.org>
parents:
22099
diff
changeset
|
1790 \ {'bufnr' : s:bufnr, 'lnum' : 2, 'text' : 'test2'}], 'r') |
c3c9830c7cdc
patch 8.2.1677: memory access errors when calling setloclist() in autocommand
Bram Moolenaar <Bram@vim.org>
parents:
22099
diff
changeset
|
1791 augroup END |
c3c9830c7cdc
patch 8.2.1677: memory access errors when calling setloclist() in autocommand
Bram Moolenaar <Bram@vim.org>
parents:
22099
diff
changeset
|
1792 |
c3c9830c7cdc
patch 8.2.1677: memory access errors when calling setloclist() in autocommand
Bram Moolenaar <Bram@vim.org>
parents:
22099
diff
changeset
|
1793 lopen |
c3c9830c7cdc
patch 8.2.1677: memory access errors when calling setloclist() in autocommand
Bram Moolenaar <Bram@vim.org>
parents:
22099
diff
changeset
|
1794 call assert_fails('exe "normal j\<CR>"', 'E926:') |
c3c9830c7cdc
patch 8.2.1677: memory access errors when calling setloclist() in autocommand
Bram Moolenaar <Bram@vim.org>
parents:
22099
diff
changeset
|
1795 |
c3c9830c7cdc
patch 8.2.1677: memory access errors when calling setloclist() in autocommand
Bram Moolenaar <Bram@vim.org>
parents:
22099
diff
changeset
|
1796 augroup Test_LocList |
c3c9830c7cdc
patch 8.2.1677: memory access errors when calling setloclist() in autocommand
Bram Moolenaar <Bram@vim.org>
parents:
22099
diff
changeset
|
1797 au! |
c3c9830c7cdc
patch 8.2.1677: memory access errors when calling setloclist() in autocommand
Bram Moolenaar <Bram@vim.org>
parents:
22099
diff
changeset
|
1798 augroup END |
c3c9830c7cdc
patch 8.2.1677: memory access errors when calling setloclist() in autocommand
Bram Moolenaar <Bram@vim.org>
parents:
22099
diff
changeset
|
1799 call delete('Xfile') |
c3c9830c7cdc
patch 8.2.1677: memory access errors when calling setloclist() in autocommand
Bram Moolenaar <Bram@vim.org>
parents:
22099
diff
changeset
|
1800 endfunc |
c3c9830c7cdc
patch 8.2.1677: memory access errors when calling setloclist() in autocommand
Bram Moolenaar <Bram@vim.org>
parents:
22099
diff
changeset
|
1801 |
8716
4ce26276caeb
commit https://github.com/vim/vim/commit/8b20179c657b4266dff115486ca68c6a50324071
Christian Brabandt <cb@256bit.org>
parents:
8702
diff
changeset
|
1802 func Test_caddbuffer_to_empty() |
4ce26276caeb
commit https://github.com/vim/vim/commit/8b20179c657b4266dff115486ca68c6a50324071
Christian Brabandt <cb@256bit.org>
parents:
8702
diff
changeset
|
1803 helpgr quickfix |
4ce26276caeb
commit https://github.com/vim/vim/commit/8b20179c657b4266dff115486ca68c6a50324071
Christian Brabandt <cb@256bit.org>
parents:
8702
diff
changeset
|
1804 call setqflist([], 'r') |
4ce26276caeb
commit https://github.com/vim/vim/commit/8b20179c657b4266dff115486ca68c6a50324071
Christian Brabandt <cb@256bit.org>
parents:
8702
diff
changeset
|
1805 cad |
8722
ecb57048c2a8
commit https://github.com/vim/vim/commit/f68f1d70799631d38461c36cd59d08cf839b010d
Christian Brabandt <cb@256bit.org>
parents:
8716
diff
changeset
|
1806 try |
ecb57048c2a8
commit https://github.com/vim/vim/commit/f68f1d70799631d38461c36cd59d08cf839b010d
Christian Brabandt <cb@256bit.org>
parents:
8716
diff
changeset
|
1807 cn |
ecb57048c2a8
commit https://github.com/vim/vim/commit/f68f1d70799631d38461c36cd59d08cf839b010d
Christian Brabandt <cb@256bit.org>
parents:
8716
diff
changeset
|
1808 catch |
ecb57048c2a8
commit https://github.com/vim/vim/commit/f68f1d70799631d38461c36cd59d08cf839b010d
Christian Brabandt <cb@256bit.org>
parents:
8716
diff
changeset
|
1809 " number of matches is unknown |
ecb57048c2a8
commit https://github.com/vim/vim/commit/f68f1d70799631d38461c36cd59d08cf839b010d
Christian Brabandt <cb@256bit.org>
parents:
8716
diff
changeset
|
1810 call assert_true(v:exception =~ 'E553:') |
ecb57048c2a8
commit https://github.com/vim/vim/commit/f68f1d70799631d38461c36cd59d08cf839b010d
Christian Brabandt <cb@256bit.org>
parents:
8716
diff
changeset
|
1811 endtry |
8716
4ce26276caeb
commit https://github.com/vim/vim/commit/8b20179c657b4266dff115486ca68c6a50324071
Christian Brabandt <cb@256bit.org>
parents:
8702
diff
changeset
|
1812 quit! |
4ce26276caeb
commit https://github.com/vim/vim/commit/8b20179c657b4266dff115486ca68c6a50324071
Christian Brabandt <cb@256bit.org>
parents:
8702
diff
changeset
|
1813 endfunc |
8751
7f974075eb8f
commit https://github.com/vim/vim/commit/89c64d557dbe0bacfdd7b2872411b00cc1523d85
Christian Brabandt <cb@256bit.org>
parents:
8722
diff
changeset
|
1814 |
7f974075eb8f
commit https://github.com/vim/vim/commit/89c64d557dbe0bacfdd7b2872411b00cc1523d85
Christian Brabandt <cb@256bit.org>
parents:
8722
diff
changeset
|
1815 func Test_cgetexpr_works() |
7f974075eb8f
commit https://github.com/vim/vim/commit/89c64d557dbe0bacfdd7b2872411b00cc1523d85
Christian Brabandt <cb@256bit.org>
parents:
8722
diff
changeset
|
1816 " this must not crash Vim |
7f974075eb8f
commit https://github.com/vim/vim/commit/89c64d557dbe0bacfdd7b2872411b00cc1523d85
Christian Brabandt <cb@256bit.org>
parents:
8722
diff
changeset
|
1817 cgetexpr [$x] |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1818 lgetexpr [$x] |
8751
7f974075eb8f
commit https://github.com/vim/vim/commit/89c64d557dbe0bacfdd7b2872411b00cc1523d85
Christian Brabandt <cb@256bit.org>
parents:
8722
diff
changeset
|
1819 endfunc |
8932
25c2031e9f9f
commit https://github.com/vim/vim/commit/c1808d5822ed9534ef7f0fe509b15bee92a5cc28
Christian Brabandt <cb@256bit.org>
parents:
8751
diff
changeset
|
1820 |
25c2031e9f9f
commit https://github.com/vim/vim/commit/c1808d5822ed9534ef7f0fe509b15bee92a5cc28
Christian Brabandt <cb@256bit.org>
parents:
8751
diff
changeset
|
1821 " Tests for the setqflist() and setloclist() functions |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
1822 func SetXlistTests(cchar, bnum) |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1823 call s:setup_commands(a:cchar) |
8932
25c2031e9f9f
commit https://github.com/vim/vim/commit/c1808d5822ed9534ef7f0fe509b15bee92a5cc28
Christian Brabandt <cb@256bit.org>
parents:
8751
diff
changeset
|
1824 |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1825 call g:Xsetlist([{'bufnr': a:bnum, 'lnum': 1}, |
24964
f4aa891a5ab8
patch 8.2.3019: location list only has the start position.
Bram Moolenaar <Bram@vim.org>
parents:
24962
diff
changeset
|
1826 \ {'bufnr': a:bnum, 'lnum': 2, 'end_lnum': 3, 'col': 4, 'end_col': 5}]) |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1827 let l = g:Xgetlist() |
8932
25c2031e9f9f
commit https://github.com/vim/vim/commit/c1808d5822ed9534ef7f0fe509b15bee92a5cc28
Christian Brabandt <cb@256bit.org>
parents:
8751
diff
changeset
|
1828 call assert_equal(2, len(l)) |
25c2031e9f9f
commit https://github.com/vim/vim/commit/c1808d5822ed9534ef7f0fe509b15bee92a5cc28
Christian Brabandt <cb@256bit.org>
parents:
8751
diff
changeset
|
1829 call assert_equal(2, l[1].lnum) |
24964
f4aa891a5ab8
patch 8.2.3019: location list only has the start position.
Bram Moolenaar <Bram@vim.org>
parents:
24962
diff
changeset
|
1830 call assert_equal(3, l[1].end_lnum) |
f4aa891a5ab8
patch 8.2.3019: location list only has the start position.
Bram Moolenaar <Bram@vim.org>
parents:
24962
diff
changeset
|
1831 call assert_equal(4, l[1].col) |
f4aa891a5ab8
patch 8.2.3019: location list only has the start position.
Bram Moolenaar <Bram@vim.org>
parents:
24962
diff
changeset
|
1832 call assert_equal(5, l[1].end_col) |
8932
25c2031e9f9f
commit https://github.com/vim/vim/commit/c1808d5822ed9534ef7f0fe509b15bee92a5cc28
Christian Brabandt <cb@256bit.org>
parents:
8751
diff
changeset
|
1833 |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1834 Xnext |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1835 call g:Xsetlist([{'bufnr': a:bnum, 'lnum': 3}], 'a') |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1836 let l = g:Xgetlist() |
8932
25c2031e9f9f
commit https://github.com/vim/vim/commit/c1808d5822ed9534ef7f0fe509b15bee92a5cc28
Christian Brabandt <cb@256bit.org>
parents:
8751
diff
changeset
|
1837 call assert_equal(3, len(l)) |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1838 Xnext |
8932
25c2031e9f9f
commit https://github.com/vim/vim/commit/c1808d5822ed9534ef7f0fe509b15bee92a5cc28
Christian Brabandt <cb@256bit.org>
parents:
8751
diff
changeset
|
1839 call assert_equal(3, line('.')) |
25c2031e9f9f
commit https://github.com/vim/vim/commit/c1808d5822ed9534ef7f0fe509b15bee92a5cc28
Christian Brabandt <cb@256bit.org>
parents:
8751
diff
changeset
|
1840 |
9114
f221aec7fcca
commit https://github.com/vim/vim/commit/2b2b8ae5ab37b04584633c469265d85825166905
Christian Brabandt <cb@256bit.org>
parents:
9033
diff
changeset
|
1841 " Appending entries to the list should not change the cursor position |
f221aec7fcca
commit https://github.com/vim/vim/commit/2b2b8ae5ab37b04584633c469265d85825166905
Christian Brabandt <cb@256bit.org>
parents:
9033
diff
changeset
|
1842 " in the quickfix window |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1843 Xwindow |
9114
f221aec7fcca
commit https://github.com/vim/vim/commit/2b2b8ae5ab37b04584633c469265d85825166905
Christian Brabandt <cb@256bit.org>
parents:
9033
diff
changeset
|
1844 1 |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1845 call g:Xsetlist([{'bufnr': a:bnum, 'lnum': 4}, |
9114
f221aec7fcca
commit https://github.com/vim/vim/commit/2b2b8ae5ab37b04584633c469265d85825166905
Christian Brabandt <cb@256bit.org>
parents:
9033
diff
changeset
|
1846 \ {'bufnr': a:bnum, 'lnum': 5}], 'a') |
f221aec7fcca
commit https://github.com/vim/vim/commit/2b2b8ae5ab37b04584633c469265d85825166905
Christian Brabandt <cb@256bit.org>
parents:
9033
diff
changeset
|
1847 call assert_equal(1, line('.')) |
f221aec7fcca
commit https://github.com/vim/vim/commit/2b2b8ae5ab37b04584633c469265d85825166905
Christian Brabandt <cb@256bit.org>
parents:
9033
diff
changeset
|
1848 close |
f221aec7fcca
commit https://github.com/vim/vim/commit/2b2b8ae5ab37b04584633c469265d85825166905
Christian Brabandt <cb@256bit.org>
parents:
9033
diff
changeset
|
1849 |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1850 call g:Xsetlist([{'bufnr': a:bnum, 'lnum': 3}, |
8932
25c2031e9f9f
commit https://github.com/vim/vim/commit/c1808d5822ed9534ef7f0fe509b15bee92a5cc28
Christian Brabandt <cb@256bit.org>
parents:
8751
diff
changeset
|
1851 \ {'bufnr': a:bnum, 'lnum': 4}, |
25c2031e9f9f
commit https://github.com/vim/vim/commit/c1808d5822ed9534ef7f0fe509b15bee92a5cc28
Christian Brabandt <cb@256bit.org>
parents:
8751
diff
changeset
|
1852 \ {'bufnr': a:bnum, 'lnum': 5}], 'r') |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1853 let l = g:Xgetlist() |
8932
25c2031e9f9f
commit https://github.com/vim/vim/commit/c1808d5822ed9534ef7f0fe509b15bee92a5cc28
Christian Brabandt <cb@256bit.org>
parents:
8751
diff
changeset
|
1854 call assert_equal(3, len(l)) |
25c2031e9f9f
commit https://github.com/vim/vim/commit/c1808d5822ed9534ef7f0fe509b15bee92a5cc28
Christian Brabandt <cb@256bit.org>
parents:
8751
diff
changeset
|
1855 call assert_equal(5, l[2].lnum) |
25c2031e9f9f
commit https://github.com/vim/vim/commit/c1808d5822ed9534ef7f0fe509b15bee92a5cc28
Christian Brabandt <cb@256bit.org>
parents:
8751
diff
changeset
|
1856 |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1857 call g:Xsetlist([]) |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1858 let l = g:Xgetlist() |
8932
25c2031e9f9f
commit https://github.com/vim/vim/commit/c1808d5822ed9534ef7f0fe509b15bee92a5cc28
Christian Brabandt <cb@256bit.org>
parents:
8751
diff
changeset
|
1859 call assert_equal(0, len(l)) |
11195
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
1860 |
11390
73cfcf11d983
patch 8.0.0580: cannot set the valid flag with setqflist()
Christian Brabandt <cb@256bit.org>
parents:
11388
diff
changeset
|
1861 " Tests for setting the 'valid' flag |
73cfcf11d983
patch 8.0.0580: cannot set the valid flag with setqflist()
Christian Brabandt <cb@256bit.org>
parents:
11388
diff
changeset
|
1862 call g:Xsetlist([{'bufnr':a:bnum, 'lnum':4, 'valid':0}]) |
73cfcf11d983
patch 8.0.0580: cannot set the valid flag with setqflist()
Christian Brabandt <cb@256bit.org>
parents:
11388
diff
changeset
|
1863 Xwindow |
73cfcf11d983
patch 8.0.0580: cannot set the valid flag with setqflist()
Christian Brabandt <cb@256bit.org>
parents:
11388
diff
changeset
|
1864 call assert_equal(1, winnr('$')) |
73cfcf11d983
patch 8.0.0580: cannot set the valid flag with setqflist()
Christian Brabandt <cb@256bit.org>
parents:
11388
diff
changeset
|
1865 let l = g:Xgetlist() |
73cfcf11d983
patch 8.0.0580: cannot set the valid flag with setqflist()
Christian Brabandt <cb@256bit.org>
parents:
11388
diff
changeset
|
1866 call g:Xsetlist(l) |
73cfcf11d983
patch 8.0.0580: cannot set the valid flag with setqflist()
Christian Brabandt <cb@256bit.org>
parents:
11388
diff
changeset
|
1867 call assert_equal(0, g:Xgetlist()[0].valid) |
15225
a413374825dd
patch 8.1.0622: adding quickfix items marks items as valid errors
Bram Moolenaar <Bram@vim.org>
parents:
15024
diff
changeset
|
1868 " Adding a non-valid entry should not mark the list as having valid entries |
a413374825dd
patch 8.1.0622: adding quickfix items marks items as valid errors
Bram Moolenaar <Bram@vim.org>
parents:
15024
diff
changeset
|
1869 call g:Xsetlist([{'bufnr':a:bnum, 'lnum':5, 'valid':0}], 'a') |
a413374825dd
patch 8.1.0622: adding quickfix items marks items as valid errors
Bram Moolenaar <Bram@vim.org>
parents:
15024
diff
changeset
|
1870 Xwindow |
a413374825dd
patch 8.1.0622: adding quickfix items marks items as valid errors
Bram Moolenaar <Bram@vim.org>
parents:
15024
diff
changeset
|
1871 call assert_equal(1, winnr('$')) |
a413374825dd
patch 8.1.0622: adding quickfix items marks items as valid errors
Bram Moolenaar <Bram@vim.org>
parents:
15024
diff
changeset
|
1872 |
a413374825dd
patch 8.1.0622: adding quickfix items marks items as valid errors
Bram Moolenaar <Bram@vim.org>
parents:
15024
diff
changeset
|
1873 " :cnext/:cprev should still work even with invalid entries in the list |
a413374825dd
patch 8.1.0622: adding quickfix items marks items as valid errors
Bram Moolenaar <Bram@vim.org>
parents:
15024
diff
changeset
|
1874 let l = [{'bufnr' : a:bnum, 'lnum' : 1, 'text' : '1', 'valid' : 0}, |
a413374825dd
patch 8.1.0622: adding quickfix items marks items as valid errors
Bram Moolenaar <Bram@vim.org>
parents:
15024
diff
changeset
|
1875 \ {'bufnr' : a:bnum, 'lnum' : 2, 'text' : '2', 'valid' : 0}] |
a413374825dd
patch 8.1.0622: adding quickfix items marks items as valid errors
Bram Moolenaar <Bram@vim.org>
parents:
15024
diff
changeset
|
1876 call g:Xsetlist(l) |
a413374825dd
patch 8.1.0622: adding quickfix items marks items as valid errors
Bram Moolenaar <Bram@vim.org>
parents:
15024
diff
changeset
|
1877 Xnext |
a413374825dd
patch 8.1.0622: adding quickfix items marks items as valid errors
Bram Moolenaar <Bram@vim.org>
parents:
15024
diff
changeset
|
1878 call assert_equal(2, g:Xgetlist({'idx' : 0}).idx) |
a413374825dd
patch 8.1.0622: adding quickfix items marks items as valid errors
Bram Moolenaar <Bram@vim.org>
parents:
15024
diff
changeset
|
1879 Xprev |
a413374825dd
patch 8.1.0622: adding quickfix items marks items as valid errors
Bram Moolenaar <Bram@vim.org>
parents:
15024
diff
changeset
|
1880 call assert_equal(1, g:Xgetlist({'idx' : 0}).idx) |
a413374825dd
patch 8.1.0622: adding quickfix items marks items as valid errors
Bram Moolenaar <Bram@vim.org>
parents:
15024
diff
changeset
|
1881 " :cnext/:cprev should still work after appending invalid entries to an |
a413374825dd
patch 8.1.0622: adding quickfix items marks items as valid errors
Bram Moolenaar <Bram@vim.org>
parents:
15024
diff
changeset
|
1882 " empty list |
a413374825dd
patch 8.1.0622: adding quickfix items marks items as valid errors
Bram Moolenaar <Bram@vim.org>
parents:
15024
diff
changeset
|
1883 call g:Xsetlist([]) |
a413374825dd
patch 8.1.0622: adding quickfix items marks items as valid errors
Bram Moolenaar <Bram@vim.org>
parents:
15024
diff
changeset
|
1884 call g:Xsetlist(l, 'a') |
a413374825dd
patch 8.1.0622: adding quickfix items marks items as valid errors
Bram Moolenaar <Bram@vim.org>
parents:
15024
diff
changeset
|
1885 Xnext |
a413374825dd
patch 8.1.0622: adding quickfix items marks items as valid errors
Bram Moolenaar <Bram@vim.org>
parents:
15024
diff
changeset
|
1886 call assert_equal(2, g:Xgetlist({'idx' : 0}).idx) |
a413374825dd
patch 8.1.0622: adding quickfix items marks items as valid errors
Bram Moolenaar <Bram@vim.org>
parents:
15024
diff
changeset
|
1887 Xprev |
a413374825dd
patch 8.1.0622: adding quickfix items marks items as valid errors
Bram Moolenaar <Bram@vim.org>
parents:
15024
diff
changeset
|
1888 call assert_equal(1, g:Xgetlist({'idx' : 0}).idx) |
a413374825dd
patch 8.1.0622: adding quickfix items marks items as valid errors
Bram Moolenaar <Bram@vim.org>
parents:
15024
diff
changeset
|
1889 |
11390
73cfcf11d983
patch 8.0.0580: cannot set the valid flag with setqflist()
Christian Brabandt <cb@256bit.org>
parents:
11388
diff
changeset
|
1890 call g:Xsetlist([{'text':'Text1', 'valid':1}]) |
73cfcf11d983
patch 8.0.0580: cannot set the valid flag with setqflist()
Christian Brabandt <cb@256bit.org>
parents:
11388
diff
changeset
|
1891 Xwindow |
73cfcf11d983
patch 8.0.0580: cannot set the valid flag with setqflist()
Christian Brabandt <cb@256bit.org>
parents:
11388
diff
changeset
|
1892 call assert_equal(2, winnr('$')) |
73cfcf11d983
patch 8.0.0580: cannot set the valid flag with setqflist()
Christian Brabandt <cb@256bit.org>
parents:
11388
diff
changeset
|
1893 Xclose |
73cfcf11d983
patch 8.0.0580: cannot set the valid flag with setqflist()
Christian Brabandt <cb@256bit.org>
parents:
11388
diff
changeset
|
1894 let save_efm = &efm |
73cfcf11d983
patch 8.0.0580: cannot set the valid flag with setqflist()
Christian Brabandt <cb@256bit.org>
parents:
11388
diff
changeset
|
1895 set efm=%m |
73cfcf11d983
patch 8.0.0580: cannot set the valid flag with setqflist()
Christian Brabandt <cb@256bit.org>
parents:
11388
diff
changeset
|
1896 Xgetexpr 'TestMessage' |
73cfcf11d983
patch 8.0.0580: cannot set the valid flag with setqflist()
Christian Brabandt <cb@256bit.org>
parents:
11388
diff
changeset
|
1897 let l = g:Xgetlist() |
73cfcf11d983
patch 8.0.0580: cannot set the valid flag with setqflist()
Christian Brabandt <cb@256bit.org>
parents:
11388
diff
changeset
|
1898 call g:Xsetlist(l) |
73cfcf11d983
patch 8.0.0580: cannot set the valid flag with setqflist()
Christian Brabandt <cb@256bit.org>
parents:
11388
diff
changeset
|
1899 call assert_equal(1, g:Xgetlist()[0].valid) |
73cfcf11d983
patch 8.0.0580: cannot set the valid flag with setqflist()
Christian Brabandt <cb@256bit.org>
parents:
11388
diff
changeset
|
1900 let &efm = save_efm |
73cfcf11d983
patch 8.0.0580: cannot set the valid flag with setqflist()
Christian Brabandt <cb@256bit.org>
parents:
11388
diff
changeset
|
1901 |
11195
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
1902 " Error cases: |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
1903 " Refer to a non-existing buffer and pass a non-dictionary type |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
1904 call assert_fails("call g:Xsetlist([{'bufnr':998, 'lnum':4}," . |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
1905 \ " {'bufnr':999, 'lnum':5}])", 'E92:') |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
1906 call g:Xsetlist([[1, 2,3]]) |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
1907 call assert_equal(0, len(g:Xgetlist())) |
20178
2fb397573541
patch 8.2.0644: insufficient testing for invalid function arguments
Bram Moolenaar <Bram@vim.org>
parents:
20158
diff
changeset
|
1908 call assert_fails('call g:Xsetlist([], [])', 'E928:') |
27873
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
1909 call g:Xsetlist([test_null_dict()]) |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
1910 call assert_equal([], g:Xgetlist()) |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
1911 endfunc |
8932
25c2031e9f9f
commit https://github.com/vim/vim/commit/c1808d5822ed9534ef7f0fe509b15bee92a5cc28
Christian Brabandt <cb@256bit.org>
parents:
8751
diff
changeset
|
1912 |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
1913 func Test_setqflist() |
8932
25c2031e9f9f
commit https://github.com/vim/vim/commit/c1808d5822ed9534ef7f0fe509b15bee92a5cc28
Christian Brabandt <cb@256bit.org>
parents:
8751
diff
changeset
|
1914 new Xtestfile | only |
25c2031e9f9f
commit https://github.com/vim/vim/commit/c1808d5822ed9534ef7f0fe509b15bee92a5cc28
Christian Brabandt <cb@256bit.org>
parents:
8751
diff
changeset
|
1915 let bnum = bufnr('%') |
25c2031e9f9f
commit https://github.com/vim/vim/commit/c1808d5822ed9534ef7f0fe509b15bee92a5cc28
Christian Brabandt <cb@256bit.org>
parents:
8751
diff
changeset
|
1916 call setline(1, range(1,5)) |
25c2031e9f9f
commit https://github.com/vim/vim/commit/c1808d5822ed9534ef7f0fe509b15bee92a5cc28
Christian Brabandt <cb@256bit.org>
parents:
8751
diff
changeset
|
1917 |
25c2031e9f9f
commit https://github.com/vim/vim/commit/c1808d5822ed9534ef7f0fe509b15bee92a5cc28
Christian Brabandt <cb@256bit.org>
parents:
8751
diff
changeset
|
1918 call SetXlistTests('c', bnum) |
25c2031e9f9f
commit https://github.com/vim/vim/commit/c1808d5822ed9534ef7f0fe509b15bee92a5cc28
Christian Brabandt <cb@256bit.org>
parents:
8751
diff
changeset
|
1919 call SetXlistTests('l', bnum) |
25c2031e9f9f
commit https://github.com/vim/vim/commit/c1808d5822ed9534ef7f0fe509b15bee92a5cc28
Christian Brabandt <cb@256bit.org>
parents:
8751
diff
changeset
|
1920 |
9258
7e403edce82f
commit https://github.com/vim/vim/commit/1cee693b310e1494115a1677fac064941092e1bb
Christian Brabandt <cb@256bit.org>
parents:
9121
diff
changeset
|
1921 enew! |
8932
25c2031e9f9f
commit https://github.com/vim/vim/commit/c1808d5822ed9534ef7f0fe509b15bee92a5cc28
Christian Brabandt <cb@256bit.org>
parents:
8751
diff
changeset
|
1922 call delete('Xtestfile') |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
1923 endfunc |
8965
90f7dc794aa0
commit https://github.com/vim/vim/commit/d106e5ba7f10f0d2a14eaefe5d78405044416cb9
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
1924 |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
1925 func Xlist_empty_middle(cchar) |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1926 call s:setup_commands(a:cchar) |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1927 |
9258
7e403edce82f
commit https://github.com/vim/vim/commit/1cee693b310e1494115a1677fac064941092e1bb
Christian Brabandt <cb@256bit.org>
parents:
9121
diff
changeset
|
1928 " create three quickfix lists |
11195
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
1929 let @/ = 'Test_' |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
1930 Xvimgrep // test_quickfix.vim |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1931 let testlen = len(g:Xgetlist()) |
9258
7e403edce82f
commit https://github.com/vim/vim/commit/1cee693b310e1494115a1677fac064941092e1bb
Christian Brabandt <cb@256bit.org>
parents:
9121
diff
changeset
|
1932 call assert_true(testlen > 0) |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1933 Xvimgrep empty test_quickfix.vim |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1934 call assert_true(len(g:Xgetlist()) > 0) |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1935 Xvimgrep matches test_quickfix.vim |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1936 let matchlen = len(g:Xgetlist()) |
9258
7e403edce82f
commit https://github.com/vim/vim/commit/1cee693b310e1494115a1677fac064941092e1bb
Christian Brabandt <cb@256bit.org>
parents:
9121
diff
changeset
|
1937 call assert_true(matchlen > 0) |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1938 Xolder |
9258
7e403edce82f
commit https://github.com/vim/vim/commit/1cee693b310e1494115a1677fac064941092e1bb
Christian Brabandt <cb@256bit.org>
parents:
9121
diff
changeset
|
1939 " make the middle list empty |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1940 call g:Xsetlist([], 'r') |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1941 call assert_true(len(g:Xgetlist()) == 0) |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1942 Xolder |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1943 call assert_equal(testlen, len(g:Xgetlist())) |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1944 Xnewer |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1945 Xnewer |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1946 call assert_equal(matchlen, len(g:Xgetlist())) |
9258
7e403edce82f
commit https://github.com/vim/vim/commit/1cee693b310e1494115a1677fac064941092e1bb
Christian Brabandt <cb@256bit.org>
parents:
9121
diff
changeset
|
1947 endfunc |
7e403edce82f
commit https://github.com/vim/vim/commit/1cee693b310e1494115a1677fac064941092e1bb
Christian Brabandt <cb@256bit.org>
parents:
9121
diff
changeset
|
1948 |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
1949 func Test_setqflist_empty_middle() |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1950 call Xlist_empty_middle('c') |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1951 call Xlist_empty_middle('l') |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
1952 endfunc |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1953 |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
1954 func Xlist_empty_older(cchar) |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1955 call s:setup_commands(a:cchar) |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1956 |
9258
7e403edce82f
commit https://github.com/vim/vim/commit/1cee693b310e1494115a1677fac064941092e1bb
Christian Brabandt <cb@256bit.org>
parents:
9121
diff
changeset
|
1957 " create three quickfix lists |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1958 Xvimgrep one test_quickfix.vim |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1959 let onelen = len(g:Xgetlist()) |
9258
7e403edce82f
commit https://github.com/vim/vim/commit/1cee693b310e1494115a1677fac064941092e1bb
Christian Brabandt <cb@256bit.org>
parents:
9121
diff
changeset
|
1960 call assert_true(onelen > 0) |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1961 Xvimgrep two test_quickfix.vim |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1962 let twolen = len(g:Xgetlist()) |
9258
7e403edce82f
commit https://github.com/vim/vim/commit/1cee693b310e1494115a1677fac064941092e1bb
Christian Brabandt <cb@256bit.org>
parents:
9121
diff
changeset
|
1963 call assert_true(twolen > 0) |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1964 Xvimgrep three test_quickfix.vim |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1965 let threelen = len(g:Xgetlist()) |
9258
7e403edce82f
commit https://github.com/vim/vim/commit/1cee693b310e1494115a1677fac064941092e1bb
Christian Brabandt <cb@256bit.org>
parents:
9121
diff
changeset
|
1966 call assert_true(threelen > 0) |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1967 Xolder 2 |
9258
7e403edce82f
commit https://github.com/vim/vim/commit/1cee693b310e1494115a1677fac064941092e1bb
Christian Brabandt <cb@256bit.org>
parents:
9121
diff
changeset
|
1968 " make the first list empty, check the others didn't change |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1969 call g:Xsetlist([], 'r') |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1970 call assert_true(len(g:Xgetlist()) == 0) |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1971 Xnewer |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1972 call assert_equal(twolen, len(g:Xgetlist())) |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1973 Xnewer |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1974 call assert_equal(threelen, len(g:Xgetlist())) |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
1975 endfunc |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1976 |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
1977 func Test_setqflist_empty_older() |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1978 call Xlist_empty_older('c') |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1979 call Xlist_empty_older('l') |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
1980 endfunc |
9258
7e403edce82f
commit https://github.com/vim/vim/commit/1cee693b310e1494115a1677fac064941092e1bb
Christian Brabandt <cb@256bit.org>
parents:
9121
diff
changeset
|
1981 |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
1982 func XquickfixSetListWithAct(cchar) |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1983 call s:setup_commands(a:cchar) |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1984 |
8965
90f7dc794aa0
commit https://github.com/vim/vim/commit/d106e5ba7f10f0d2a14eaefe5d78405044416cb9
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
1985 let list1 = [{'filename': 'fnameA', 'text': 'A'}, |
90f7dc794aa0
commit https://github.com/vim/vim/commit/d106e5ba7f10f0d2a14eaefe5d78405044416cb9
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
1986 \ {'filename': 'fnameB', 'text': 'B'}] |
90f7dc794aa0
commit https://github.com/vim/vim/commit/d106e5ba7f10f0d2a14eaefe5d78405044416cb9
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
1987 let list2 = [{'filename': 'fnameC', 'text': 'C'}, |
90f7dc794aa0
commit https://github.com/vim/vim/commit/d106e5ba7f10f0d2a14eaefe5d78405044416cb9
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
1988 \ {'filename': 'fnameD', 'text': 'D'}, |
90f7dc794aa0
commit https://github.com/vim/vim/commit/d106e5ba7f10f0d2a14eaefe5d78405044416cb9
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
1989 \ {'filename': 'fnameE', 'text': 'E'}] |
90f7dc794aa0
commit https://github.com/vim/vim/commit/d106e5ba7f10f0d2a14eaefe5d78405044416cb9
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
1990 |
15770
77e97f159554
patch 8.1.0892: failure when closing a window when location list is in use
Bram Moolenaar <Bram@vim.org>
parents:
15740
diff
changeset
|
1991 " {action} is unspecified. Same as specifying ' '. |
8965
90f7dc794aa0
commit https://github.com/vim/vim/commit/d106e5ba7f10f0d2a14eaefe5d78405044416cb9
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
1992 new | only |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1993 silent! Xnewer 99 |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1994 call g:Xsetlist(list1) |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1995 call g:Xsetlist(list2) |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
1996 let li = g:Xgetlist() |
8965
90f7dc794aa0
commit https://github.com/vim/vim/commit/d106e5ba7f10f0d2a14eaefe5d78405044416cb9
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
1997 call assert_equal(3, len(li)) |
90f7dc794aa0
commit https://github.com/vim/vim/commit/d106e5ba7f10f0d2a14eaefe5d78405044416cb9
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
1998 call assert_equal('C', li[0]['text']) |
90f7dc794aa0
commit https://github.com/vim/vim/commit/d106e5ba7f10f0d2a14eaefe5d78405044416cb9
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
1999 call assert_equal('D', li[1]['text']) |
90f7dc794aa0
commit https://github.com/vim/vim/commit/d106e5ba7f10f0d2a14eaefe5d78405044416cb9
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
2000 call assert_equal('E', li[2]['text']) |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
2001 silent! Xolder |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
2002 let li = g:Xgetlist() |
8965
90f7dc794aa0
commit https://github.com/vim/vim/commit/d106e5ba7f10f0d2a14eaefe5d78405044416cb9
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
2003 call assert_equal(2, len(li)) |
90f7dc794aa0
commit https://github.com/vim/vim/commit/d106e5ba7f10f0d2a14eaefe5d78405044416cb9
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
2004 call assert_equal('A', li[0]['text']) |
90f7dc794aa0
commit https://github.com/vim/vim/commit/d106e5ba7f10f0d2a14eaefe5d78405044416cb9
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
2005 call assert_equal('B', li[1]['text']) |
90f7dc794aa0
commit https://github.com/vim/vim/commit/d106e5ba7f10f0d2a14eaefe5d78405044416cb9
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
2006 |
90f7dc794aa0
commit https://github.com/vim/vim/commit/d106e5ba7f10f0d2a14eaefe5d78405044416cb9
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
2007 " {action} is specified ' '. |
90f7dc794aa0
commit https://github.com/vim/vim/commit/d106e5ba7f10f0d2a14eaefe5d78405044416cb9
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
2008 new | only |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
2009 silent! Xnewer 99 |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
2010 call g:Xsetlist(list1) |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
2011 call g:Xsetlist(list2, ' ') |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
2012 let li = g:Xgetlist() |
8965
90f7dc794aa0
commit https://github.com/vim/vim/commit/d106e5ba7f10f0d2a14eaefe5d78405044416cb9
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
2013 call assert_equal(3, len(li)) |
90f7dc794aa0
commit https://github.com/vim/vim/commit/d106e5ba7f10f0d2a14eaefe5d78405044416cb9
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
2014 call assert_equal('C', li[0]['text']) |
90f7dc794aa0
commit https://github.com/vim/vim/commit/d106e5ba7f10f0d2a14eaefe5d78405044416cb9
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
2015 call assert_equal('D', li[1]['text']) |
90f7dc794aa0
commit https://github.com/vim/vim/commit/d106e5ba7f10f0d2a14eaefe5d78405044416cb9
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
2016 call assert_equal('E', li[2]['text']) |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
2017 silent! Xolder |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
2018 let li = g:Xgetlist() |
8965
90f7dc794aa0
commit https://github.com/vim/vim/commit/d106e5ba7f10f0d2a14eaefe5d78405044416cb9
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
2019 call assert_equal(2, len(li)) |
90f7dc794aa0
commit https://github.com/vim/vim/commit/d106e5ba7f10f0d2a14eaefe5d78405044416cb9
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
2020 call assert_equal('A', li[0]['text']) |
90f7dc794aa0
commit https://github.com/vim/vim/commit/d106e5ba7f10f0d2a14eaefe5d78405044416cb9
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
2021 call assert_equal('B', li[1]['text']) |
90f7dc794aa0
commit https://github.com/vim/vim/commit/d106e5ba7f10f0d2a14eaefe5d78405044416cb9
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
2022 |
90f7dc794aa0
commit https://github.com/vim/vim/commit/d106e5ba7f10f0d2a14eaefe5d78405044416cb9
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
2023 " {action} is specified 'a'. |
90f7dc794aa0
commit https://github.com/vim/vim/commit/d106e5ba7f10f0d2a14eaefe5d78405044416cb9
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
2024 new | only |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
2025 silent! Xnewer 99 |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
2026 call g:Xsetlist(list1) |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
2027 call g:Xsetlist(list2, 'a') |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
2028 let li = g:Xgetlist() |
8965
90f7dc794aa0
commit https://github.com/vim/vim/commit/d106e5ba7f10f0d2a14eaefe5d78405044416cb9
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
2029 call assert_equal(5, len(li)) |
90f7dc794aa0
commit https://github.com/vim/vim/commit/d106e5ba7f10f0d2a14eaefe5d78405044416cb9
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
2030 call assert_equal('A', li[0]['text']) |
90f7dc794aa0
commit https://github.com/vim/vim/commit/d106e5ba7f10f0d2a14eaefe5d78405044416cb9
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
2031 call assert_equal('B', li[1]['text']) |
90f7dc794aa0
commit https://github.com/vim/vim/commit/d106e5ba7f10f0d2a14eaefe5d78405044416cb9
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
2032 call assert_equal('C', li[2]['text']) |
90f7dc794aa0
commit https://github.com/vim/vim/commit/d106e5ba7f10f0d2a14eaefe5d78405044416cb9
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
2033 call assert_equal('D', li[3]['text']) |
90f7dc794aa0
commit https://github.com/vim/vim/commit/d106e5ba7f10f0d2a14eaefe5d78405044416cb9
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
2034 call assert_equal('E', li[4]['text']) |
90f7dc794aa0
commit https://github.com/vim/vim/commit/d106e5ba7f10f0d2a14eaefe5d78405044416cb9
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
2035 |
90f7dc794aa0
commit https://github.com/vim/vim/commit/d106e5ba7f10f0d2a14eaefe5d78405044416cb9
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
2036 " {action} is specified 'r'. |
90f7dc794aa0
commit https://github.com/vim/vim/commit/d106e5ba7f10f0d2a14eaefe5d78405044416cb9
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
2037 new | only |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
2038 silent! Xnewer 99 |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
2039 call g:Xsetlist(list1) |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
2040 call g:Xsetlist(list2, 'r') |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
2041 let li = g:Xgetlist() |
8965
90f7dc794aa0
commit https://github.com/vim/vim/commit/d106e5ba7f10f0d2a14eaefe5d78405044416cb9
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
2042 call assert_equal(3, len(li)) |
90f7dc794aa0
commit https://github.com/vim/vim/commit/d106e5ba7f10f0d2a14eaefe5d78405044416cb9
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
2043 call assert_equal('C', li[0]['text']) |
90f7dc794aa0
commit https://github.com/vim/vim/commit/d106e5ba7f10f0d2a14eaefe5d78405044416cb9
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
2044 call assert_equal('D', li[1]['text']) |
90f7dc794aa0
commit https://github.com/vim/vim/commit/d106e5ba7f10f0d2a14eaefe5d78405044416cb9
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
2045 call assert_equal('E', li[2]['text']) |
90f7dc794aa0
commit https://github.com/vim/vim/commit/d106e5ba7f10f0d2a14eaefe5d78405044416cb9
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
2046 |
90f7dc794aa0
commit https://github.com/vim/vim/commit/d106e5ba7f10f0d2a14eaefe5d78405044416cb9
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
2047 " Test for wrong value. |
90f7dc794aa0
commit https://github.com/vim/vim/commit/d106e5ba7f10f0d2a14eaefe5d78405044416cb9
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
2048 new | only |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
2049 call assert_fails("call g:Xsetlist(0)", 'E714:') |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
2050 call assert_fails("call g:Xsetlist(list1, '')", 'E927:') |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
2051 call assert_fails("call g:Xsetlist(list1, 'aa')", 'E927:') |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
2052 call assert_fails("call g:Xsetlist(list1, ' a')", 'E927:') |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
2053 call assert_fails("call g:Xsetlist(list1, 0)", 'E928:') |
8965
90f7dc794aa0
commit https://github.com/vim/vim/commit/d106e5ba7f10f0d2a14eaefe5d78405044416cb9
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
2054 endfunc |
90f7dc794aa0
commit https://github.com/vim/vim/commit/d106e5ba7f10f0d2a14eaefe5d78405044416cb9
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
2055 |
13066
617112037564
patch 8.0.1408: crash in setqflist()
Christian Brabandt <cb@256bit.org>
parents:
13062
diff
changeset
|
2056 func Test_setqflist_invalid_nr() |
617112037564
patch 8.0.1408: crash in setqflist()
Christian Brabandt <cb@256bit.org>
parents:
13062
diff
changeset
|
2057 " The following command used to crash Vim |
18000
7a19c8d6bb9e
patch 8.1.1996: more functions can be used as methods
Bram Moolenaar <Bram@vim.org>
parents:
17918
diff
changeset
|
2058 eval []->setqflist(' ', {'nr' : $XXX_DOES_NOT_EXIST}) |
13066
617112037564
patch 8.0.1408: crash in setqflist()
Christian Brabandt <cb@256bit.org>
parents:
13062
diff
changeset
|
2059 endfunc |
617112037564
patch 8.0.1408: crash in setqflist()
Christian Brabandt <cb@256bit.org>
parents:
13062
diff
changeset
|
2060 |
19366
102f9a44c8b3
patch 8.2.0241: crash when setting 'buftype' to "quickfix"
Bram Moolenaar <Bram@vim.org>
parents:
19308
diff
changeset
|
2061 func Test_setqflist_user_sets_buftype() |
102f9a44c8b3
patch 8.2.0241: crash when setting 'buftype' to "quickfix"
Bram Moolenaar <Bram@vim.org>
parents:
19308
diff
changeset
|
2062 call setqflist([{'text': 'foo'}, {'text': 'bar'}]) |
102f9a44c8b3
patch 8.2.0241: crash when setting 'buftype' to "quickfix"
Bram Moolenaar <Bram@vim.org>
parents:
19308
diff
changeset
|
2063 set buftype=quickfix |
102f9a44c8b3
patch 8.2.0241: crash when setting 'buftype' to "quickfix"
Bram Moolenaar <Bram@vim.org>
parents:
19308
diff
changeset
|
2064 call setqflist([], 'a') |
102f9a44c8b3
patch 8.2.0241: crash when setting 'buftype' to "quickfix"
Bram Moolenaar <Bram@vim.org>
parents:
19308
diff
changeset
|
2065 enew |
102f9a44c8b3
patch 8.2.0241: crash when setting 'buftype' to "quickfix"
Bram Moolenaar <Bram@vim.org>
parents:
19308
diff
changeset
|
2066 endfunc |
102f9a44c8b3
patch 8.2.0241: crash when setting 'buftype' to "quickfix"
Bram Moolenaar <Bram@vim.org>
parents:
19308
diff
changeset
|
2067 |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
2068 func Test_quickfix_set_list_with_act() |
8965
90f7dc794aa0
commit https://github.com/vim/vim/commit/d106e5ba7f10f0d2a14eaefe5d78405044416cb9
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
2069 call XquickfixSetListWithAct('c') |
90f7dc794aa0
commit https://github.com/vim/vim/commit/d106e5ba7f10f0d2a14eaefe5d78405044416cb9
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
2070 call XquickfixSetListWithAct('l') |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
2071 endfunc |
9033
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8965
diff
changeset
|
2072 |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
2073 func XLongLinesTests(cchar) |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
2074 let l = g:Xgetlist() |
9033
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8965
diff
changeset
|
2075 |
9342
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2076 call assert_equal(4, len(l)) |
9033
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8965
diff
changeset
|
2077 call assert_equal(1, l[0].lnum) |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8965
diff
changeset
|
2078 call assert_equal(1, l[0].col) |
9342
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2079 call assert_equal(1975, len(l[0].text)) |
9033
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8965
diff
changeset
|
2080 call assert_equal(2, l[1].lnum) |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8965
diff
changeset
|
2081 call assert_equal(1, l[1].col) |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8965
diff
changeset
|
2082 call assert_equal(4070, len(l[1].text)) |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8965
diff
changeset
|
2083 call assert_equal(3, l[2].lnum) |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8965
diff
changeset
|
2084 call assert_equal(1, l[2].col) |
9342
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2085 call assert_equal(4070, len(l[2].text)) |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2086 call assert_equal(4, l[3].lnum) |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2087 call assert_equal(1, l[3].col) |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2088 call assert_equal(10, len(l[3].text)) |
9033
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8965
diff
changeset
|
2089 |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
2090 call g:Xsetlist([], 'r') |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
2091 endfunc |
9033
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8965
diff
changeset
|
2092 |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
2093 func s:long_lines_tests(cchar) |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
2094 call s:setup_commands(a:cchar) |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
2095 |
9033
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8965
diff
changeset
|
2096 let testfile = 'samples/quickfix.txt' |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8965
diff
changeset
|
2097 |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8965
diff
changeset
|
2098 " file |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
2099 exe 'Xgetfile' testfile |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
2100 call XLongLinesTests(a:cchar) |
9033
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8965
diff
changeset
|
2101 |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8965
diff
changeset
|
2102 " list |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
2103 Xexpr readfile(testfile) |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
2104 call XLongLinesTests(a:cchar) |
9033
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8965
diff
changeset
|
2105 |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8965
diff
changeset
|
2106 " string |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
2107 Xexpr join(readfile(testfile), "\n") |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
2108 call XLongLinesTests(a:cchar) |
9033
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8965
diff
changeset
|
2109 |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8965
diff
changeset
|
2110 " buffer |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
2111 exe 'edit' testfile |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
2112 exe 'Xbuffer' bufnr('%') |
9336
52bda0e40ea2
commit https://github.com/vim/vim/commit/f50df3925b7c909d1cda4c868d8c7ba38189aabe
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
2113 call XLongLinesTests(a:cchar) |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
2114 endfunc |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
2115 |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
2116 func Test_long_lines() |
9317
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
2117 call s:long_lines_tests('c') |
fa3f71185144
commit https://github.com/vim/vim/commit/3ef5bf7d459d6b8a21aaefc80f65448f5a7aa59f
Christian Brabandt <cb@256bit.org>
parents:
9309
diff
changeset
|
2118 call s:long_lines_tests('l') |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
2119 endfunc |
9342
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2120 |
22099
b7cc5d8ea702
patch 8.2.1599: missing line end when skipping a long line with :cgetfile
Bram Moolenaar <Bram@vim.org>
parents:
22087
diff
changeset
|
2121 func Test_cgetfile_on_long_lines() |
b7cc5d8ea702
patch 8.2.1599: missing line end when skipping a long line with :cgetfile
Bram Moolenaar <Bram@vim.org>
parents:
22087
diff
changeset
|
2122 " Problematic values if the line is longer than 4096 bytes. Then 1024 bytes |
b7cc5d8ea702
patch 8.2.1599: missing line end when skipping a long line with :cgetfile
Bram Moolenaar <Bram@vim.org>
parents:
22087
diff
changeset
|
2123 " are read at a time. |
b7cc5d8ea702
patch 8.2.1599: missing line end when skipping a long line with :cgetfile
Bram Moolenaar <Bram@vim.org>
parents:
22087
diff
changeset
|
2124 for len in [4078, 4079, 4080, 5102, 5103, 5104, 6126, 6127, 6128, 7150, 7151, 7152] |
28421
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2125 let lines =<< trim END |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2126 /tmp/file1:1:1:aaa |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2127 /tmp/file2:1:1:%s |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2128 /tmp/file3:1:1:bbb |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2129 /tmp/file4:1:1:ccc |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2130 END |
22099
b7cc5d8ea702
patch 8.2.1599: missing line end when skipping a long line with :cgetfile
Bram Moolenaar <Bram@vim.org>
parents:
22087
diff
changeset
|
2131 let lines[1] = substitute(lines[1], '%s', repeat('x', len), '') |
b7cc5d8ea702
patch 8.2.1599: missing line end when skipping a long line with :cgetfile
Bram Moolenaar <Bram@vim.org>
parents:
22087
diff
changeset
|
2132 call writefile(lines, 'Xcqetfile.txt') |
b7cc5d8ea702
patch 8.2.1599: missing line end when skipping a long line with :cgetfile
Bram Moolenaar <Bram@vim.org>
parents:
22087
diff
changeset
|
2133 cgetfile Xcqetfile.txt |
b7cc5d8ea702
patch 8.2.1599: missing line end when skipping a long line with :cgetfile
Bram Moolenaar <Bram@vim.org>
parents:
22087
diff
changeset
|
2134 call assert_equal(4, getqflist(#{size: v:true}).size, 'with length ' .. len) |
b7cc5d8ea702
patch 8.2.1599: missing line end when skipping a long line with :cgetfile
Bram Moolenaar <Bram@vim.org>
parents:
22087
diff
changeset
|
2135 endfor |
b7cc5d8ea702
patch 8.2.1599: missing line end when skipping a long line with :cgetfile
Bram Moolenaar <Bram@vim.org>
parents:
22087
diff
changeset
|
2136 call delete('Xcqetfile.txt') |
b7cc5d8ea702
patch 8.2.1599: missing line end when skipping a long line with :cgetfile
Bram Moolenaar <Bram@vim.org>
parents:
22087
diff
changeset
|
2137 endfunc |
b7cc5d8ea702
patch 8.2.1599: missing line end when skipping a long line with :cgetfile
Bram Moolenaar <Bram@vim.org>
parents:
22087
diff
changeset
|
2138 |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
2139 func s:create_test_file(filename) |
9342
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2140 let l = [] |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2141 for i in range(1, 20) |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2142 call add(l, 'Line' . i) |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2143 endfor |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2144 call writefile(l, a:filename) |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
2145 endfunc |
9342
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2146 |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
2147 func Test_switchbuf() |
9342
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2148 call s:create_test_file('Xqftestfile1') |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2149 call s:create_test_file('Xqftestfile2') |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2150 call s:create_test_file('Xqftestfile3') |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2151 |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2152 new | only |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2153 edit Xqftestfile1 |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2154 let file1_winid = win_getid() |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2155 new Xqftestfile2 |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2156 let file2_winid = win_getid() |
28421
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2157 let lines =<< trim END |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2158 Xqftestfile1:5:Line5 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2159 Xqftestfile1:6:Line6 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2160 Xqftestfile2:10:Line10 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2161 Xqftestfile2:11:Line11 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2162 Xqftestfile3:15:Line15 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2163 Xqftestfile3:16:Line16 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2164 END |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2165 cgetexpr lines |
9342
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2166 |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2167 new |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2168 let winid = win_getid() |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2169 cfirst | cnext |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2170 call assert_equal(winid, win_getid()) |
11378
2ed7a34ecc54
patch 8.0.0574: get only one quickfix list after :caddbuf
Christian Brabandt <cb@256bit.org>
parents:
11301
diff
changeset
|
2171 2cnext |
9342
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2172 call assert_equal(winid, win_getid()) |
11378
2ed7a34ecc54
patch 8.0.0574: get only one quickfix list after :caddbuf
Christian Brabandt <cb@256bit.org>
parents:
11301
diff
changeset
|
2173 2cnext |
9342
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2174 call assert_equal(winid, win_getid()) |
18656
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
2175 |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
2176 " Test for 'switchbuf' set to search for files in windows in the current |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
2177 " tabpage and jump to an existing window (if present) |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
2178 set switchbuf=useopen |
9342
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2179 enew |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2180 cfirst | cnext |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2181 call assert_equal(file1_winid, win_getid()) |
11378
2ed7a34ecc54
patch 8.0.0574: get only one quickfix list after :caddbuf
Christian Brabandt <cb@256bit.org>
parents:
11301
diff
changeset
|
2182 2cnext |
9342
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2183 call assert_equal(file2_winid, win_getid()) |
11378
2ed7a34ecc54
patch 8.0.0574: get only one quickfix list after :caddbuf
Christian Brabandt <cb@256bit.org>
parents:
11301
diff
changeset
|
2184 2cnext |
9342
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2185 call assert_equal(file2_winid, win_getid()) |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2186 |
18656
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
2187 " Test for 'switchbuf' set to search for files in tabpages and jump to an |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
2188 " existing tabpage (if present) |
9342
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2189 enew | only |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2190 set switchbuf=usetab |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2191 tabedit Xqftestfile1 |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2192 tabedit Xqftestfile2 |
13016
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
2193 tabedit Xqftestfile3 |
9342
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2194 tabfirst |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2195 cfirst | cnext |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2196 call assert_equal(2, tabpagenr()) |
11378
2ed7a34ecc54
patch 8.0.0574: get only one quickfix list after :caddbuf
Christian Brabandt <cb@256bit.org>
parents:
11301
diff
changeset
|
2197 2cnext |
9342
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2198 call assert_equal(3, tabpagenr()) |
13016
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
2199 6cnext |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
2200 call assert_equal(4, tabpagenr()) |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
2201 2cpfile |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
2202 call assert_equal(2, tabpagenr()) |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
2203 2cnfile |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
2204 call assert_equal(4, tabpagenr()) |
9342
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2205 tabfirst | tabonly | enew |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2206 |
18656
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
2207 " Test for 'switchbuf' set to open a new window for every file |
9342
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2208 set switchbuf=split |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2209 cfirst | cnext |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2210 call assert_equal(1, winnr('$')) |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2211 cnext | cnext |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2212 call assert_equal(2, winnr('$')) |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2213 cnext | cnext |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2214 call assert_equal(3, winnr('$')) |
18656
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
2215 |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
2216 " Test for 'switchbuf' set to open a new tabpage for every file |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
2217 set switchbuf=newtab |
9342
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2218 enew | only |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2219 cfirst | cnext |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2220 call assert_equal(1, tabpagenr('$')) |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2221 cnext | cnext |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2222 call assert_equal(2, tabpagenr('$')) |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2223 cnext | cnext |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2224 call assert_equal(3, tabpagenr('$')) |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2225 tabfirst | enew | tabonly | only |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2226 |
18646
394abd397e15
patch 8.1.2315: not always using the right window when jumping to an error
Bram Moolenaar <Bram@vim.org>
parents:
18635
diff
changeset
|
2227 set switchbuf=uselast |
394abd397e15
patch 8.1.2315: not always using the right window when jumping to an error
Bram Moolenaar <Bram@vim.org>
parents:
18635
diff
changeset
|
2228 split |
394abd397e15
patch 8.1.2315: not always using the right window when jumping to an error
Bram Moolenaar <Bram@vim.org>
parents:
18635
diff
changeset
|
2229 let last_winid = win_getid() |
394abd397e15
patch 8.1.2315: not always using the right window when jumping to an error
Bram Moolenaar <Bram@vim.org>
parents:
18635
diff
changeset
|
2230 copen |
394abd397e15
patch 8.1.2315: not always using the right window when jumping to an error
Bram Moolenaar <Bram@vim.org>
parents:
18635
diff
changeset
|
2231 exe "normal 1G\<CR>" |
394abd397e15
patch 8.1.2315: not always using the right window when jumping to an error
Bram Moolenaar <Bram@vim.org>
parents:
18635
diff
changeset
|
2232 call assert_equal(last_winid, win_getid()) |
394abd397e15
patch 8.1.2315: not always using the right window when jumping to an error
Bram Moolenaar <Bram@vim.org>
parents:
18635
diff
changeset
|
2233 enew | only |
394abd397e15
patch 8.1.2315: not always using the right window when jumping to an error
Bram Moolenaar <Bram@vim.org>
parents:
18635
diff
changeset
|
2234 |
18656
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
2235 " With an empty 'switchbuf', jumping to a quickfix entry should open the |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
2236 " file in an existing window (if present) |
9342
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2237 set switchbuf= |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2238 edit Xqftestfile1 |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2239 let file1_winid = win_getid() |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2240 new Xqftestfile2 |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2241 let file2_winid = win_getid() |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2242 copen |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2243 exe "normal 1G\<CR>" |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2244 call assert_equal(file1_winid, win_getid()) |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2245 copen |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2246 exe "normal 3G\<CR>" |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2247 call assert_equal(file2_winid, win_getid()) |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2248 copen | only |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2249 exe "normal 5G\<CR>" |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2250 call assert_equal(2, winnr('$')) |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2251 call assert_equal(1, bufwinnr('Xqftestfile3')) |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2252 |
11030
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
2253 " If only quickfix window is open in the current tabpage, jumping to an |
17918
9606c0adc148
patch 8.1.1955: tests contain typos
Bram Moolenaar <Bram@vim.org>
parents:
17172
diff
changeset
|
2254 " entry with 'switchbuf' set to 'usetab' should search in other tabpages. |
9342
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2255 enew | only |
11030
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
2256 set switchbuf=usetab |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
2257 tabedit Xqftestfile1 |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
2258 tabedit Xqftestfile2 |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
2259 tabedit Xqftestfile3 |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
2260 tabfirst |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
2261 copen | only |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
2262 clast |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
2263 call assert_equal(4, tabpagenr()) |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
2264 tabfirst | tabonly | enew | only |
9342
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2265 |
18656
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
2266 " Jumping to a file that is not present in any of the tabpages and the |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
2267 " current tabpage doesn't have any usable windows, should open it in a new |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
2268 " window in the current tabpage. |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
2269 copen | only |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
2270 cfirst |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
2271 call assert_equal(1, tabpagenr()) |
20978
2c3e7a6bd6c6
patch 8.2.1040: not enough testing for movement commands
Bram Moolenaar <Bram@vim.org>
parents:
20814
diff
changeset
|
2272 call assert_equal('Xqftestfile1', @%) |
18656
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
2273 |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
2274 " If opening a file changes 'switchbuf', then the new value should be |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
2275 " retained. |
20263
a85a3207679f
patch 8.2.0687: some tests do not work on FreeBSD
Bram Moolenaar <Bram@vim.org>
parents:
20178
diff
changeset
|
2276 set modeline&vim |
18656
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
2277 call writefile(["vim: switchbuf=split"], 'Xqftestfile1') |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
2278 enew | only |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
2279 set switchbuf&vim |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
2280 cexpr "Xqftestfile1:1:10" |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
2281 call assert_equal('split', &switchbuf) |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
2282 call writefile(["vim: switchbuf=usetab"], 'Xqftestfile1') |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
2283 enew | only |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
2284 set switchbuf=useopen |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
2285 cexpr "Xqftestfile1:1:10" |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
2286 call assert_equal('usetab', &switchbuf) |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
2287 call writefile(["vim: switchbuf&vim"], 'Xqftestfile1') |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
2288 enew | only |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
2289 set switchbuf=useopen |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
2290 cexpr "Xqftestfile1:1:10" |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
2291 call assert_equal('', &switchbuf) |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
2292 |
9342
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2293 call delete('Xqftestfile1') |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2294 call delete('Xqftestfile2') |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2295 call delete('Xqftestfile3') |
11030
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
2296 set switchbuf&vim |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
2297 |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
2298 enew | only |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
2299 endfunc |
9342
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2300 |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
2301 func Xadjust_qflnum(cchar) |
9342
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2302 call s:setup_commands(a:cchar) |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2303 |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2304 enew | only |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2305 |
9608
fa64afb99dda
commit https://github.com/vim/vim/commit/c1542744e788d96fed24dd421f43009288092504
Christian Brabandt <cb@256bit.org>
parents:
9568
diff
changeset
|
2306 let fname = 'Xqftestfile' . a:cchar |
fa64afb99dda
commit https://github.com/vim/vim/commit/c1542744e788d96fed24dd421f43009288092504
Christian Brabandt <cb@256bit.org>
parents:
9568
diff
changeset
|
2307 call s:create_test_file(fname) |
fa64afb99dda
commit https://github.com/vim/vim/commit/c1542744e788d96fed24dd421f43009288092504
Christian Brabandt <cb@256bit.org>
parents:
9568
diff
changeset
|
2308 exe 'edit ' . fname |
9342
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2309 |
9608
fa64afb99dda
commit https://github.com/vim/vim/commit/c1542744e788d96fed24dd421f43009288092504
Christian Brabandt <cb@256bit.org>
parents:
9568
diff
changeset
|
2310 Xgetexpr [fname . ':5:Line5', |
fa64afb99dda
commit https://github.com/vim/vim/commit/c1542744e788d96fed24dd421f43009288092504
Christian Brabandt <cb@256bit.org>
parents:
9568
diff
changeset
|
2311 \ fname . ':10:Line10', |
fa64afb99dda
commit https://github.com/vim/vim/commit/c1542744e788d96fed24dd421f43009288092504
Christian Brabandt <cb@256bit.org>
parents:
9568
diff
changeset
|
2312 \ fname . ':15:Line15', |
fa64afb99dda
commit https://github.com/vim/vim/commit/c1542744e788d96fed24dd421f43009288092504
Christian Brabandt <cb@256bit.org>
parents:
9568
diff
changeset
|
2313 \ fname . ':20:Line20'] |
9342
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2314 |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2315 6,14delete |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2316 call append(6, ['Buffer', 'Window']) |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2317 |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2318 let l = g:Xgetlist() |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2319 call assert_equal(5, l[0].lnum) |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2320 call assert_equal(6, l[2].lnum) |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2321 call assert_equal(13, l[3].lnum) |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2322 |
18656
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
2323 " If a file doesn't have any quickfix entries, then deleting lines in the |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
2324 " file should not update the quickfix list |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
2325 call g:Xsetlist([], 'f') |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
2326 1,2delete |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
2327 call assert_equal([], g:Xgetlist()) |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
2328 |
9342
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2329 enew! |
9608
fa64afb99dda
commit https://github.com/vim/vim/commit/c1542744e788d96fed24dd421f43009288092504
Christian Brabandt <cb@256bit.org>
parents:
9568
diff
changeset
|
2330 call delete(fname) |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
2331 endfunc |
9342
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2332 |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
2333 func Test_adjust_lnum() |
9608
fa64afb99dda
commit https://github.com/vim/vim/commit/c1542744e788d96fed24dd421f43009288092504
Christian Brabandt <cb@256bit.org>
parents:
9568
diff
changeset
|
2334 call setloclist(0, []) |
9342
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2335 call Xadjust_qflnum('c') |
9608
fa64afb99dda
commit https://github.com/vim/vim/commit/c1542744e788d96fed24dd421f43009288092504
Christian Brabandt <cb@256bit.org>
parents:
9568
diff
changeset
|
2336 call setqflist([]) |
9342
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2337 call Xadjust_qflnum('l') |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
2338 endfunc |
9342
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2339 |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2340 " Tests for the :grep/:lgrep and :grepadd/:lgrepadd commands |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
2341 func s:test_xgrep(cchar) |
9342
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2342 call s:setup_commands(a:cchar) |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2343 |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2344 " The following lines are used for the grep test. Don't remove. |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2345 " Grep_Test_Text: Match 1 |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2346 " Grep_Test_Text: Match 2 |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2347 " GrepAdd_Test_Text: Match 1 |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2348 " GrepAdd_Test_Text: Match 2 |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2349 enew! | only |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2350 set makeef&vim |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2351 silent Xgrep Grep_Test_Text: test_quickfix.vim |
18740
d23bb26ba98f
patch 8.1.2360: quickfix test coverage can still be improved
Bram Moolenaar <Bram@vim.org>
parents:
18736
diff
changeset
|
2352 call assert_true(len(g:Xgetlist()) == 5) |
9342
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2353 Xopen |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2354 call assert_true(w:quickfix_title =~ '^:grep') |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2355 Xclose |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2356 enew |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2357 set makeef=Temp_File_## |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2358 silent Xgrepadd GrepAdd_Test_Text: test_quickfix.vim |
18740
d23bb26ba98f
patch 8.1.2360: quickfix test coverage can still be improved
Bram Moolenaar <Bram@vim.org>
parents:
18736
diff
changeset
|
2359 call assert_true(len(g:Xgetlist()) == 9) |
d23bb26ba98f
patch 8.1.2360: quickfix test coverage can still be improved
Bram Moolenaar <Bram@vim.org>
parents:
18736
diff
changeset
|
2360 |
d23bb26ba98f
patch 8.1.2360: quickfix test coverage can still be improved
Bram Moolenaar <Bram@vim.org>
parents:
18736
diff
changeset
|
2361 " Try with 'grepprg' set to 'internal' |
d23bb26ba98f
patch 8.1.2360: quickfix test coverage can still be improved
Bram Moolenaar <Bram@vim.org>
parents:
18736
diff
changeset
|
2362 set grepprg=internal |
d23bb26ba98f
patch 8.1.2360: quickfix test coverage can still be improved
Bram Moolenaar <Bram@vim.org>
parents:
18736
diff
changeset
|
2363 silent Xgrep Grep_Test_Text: test_quickfix.vim |
d23bb26ba98f
patch 8.1.2360: quickfix test coverage can still be improved
Bram Moolenaar <Bram@vim.org>
parents:
18736
diff
changeset
|
2364 silent Xgrepadd GrepAdd_Test_Text: test_quickfix.vim |
d23bb26ba98f
patch 8.1.2360: quickfix test coverage can still be improved
Bram Moolenaar <Bram@vim.org>
parents:
18736
diff
changeset
|
2365 call assert_true(len(g:Xgetlist()) == 9) |
d23bb26ba98f
patch 8.1.2360: quickfix test coverage can still be improved
Bram Moolenaar <Bram@vim.org>
parents:
18736
diff
changeset
|
2366 set grepprg&vim |
18656
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
2367 |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
2368 call writefile(['Vim'], 'XtestTempFile') |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
2369 set makeef=XtestTempFile |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
2370 silent Xgrep Grep_Test_Text: test_quickfix.vim |
18740
d23bb26ba98f
patch 8.1.2360: quickfix test coverage can still be improved
Bram Moolenaar <Bram@vim.org>
parents:
18736
diff
changeset
|
2371 call assert_equal(5, len(g:Xgetlist())) |
18656
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
2372 call assert_false(filereadable('XtestTempFile')) |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
2373 set makeef&vim |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
2374 endfunc |
9342
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2375 |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
2376 func Test_grep() |
21765
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2377 " The grepprg may not be set on non-Unix systems |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2378 CheckUnix |
9342
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2379 |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2380 call s:test_xgrep('c') |
8ce61744ed94
commit https://github.com/vim/vim/commit/049cba9e9760152b5695399a991dc61cea9ba143
Christian Brabandt <cb@256bit.org>
parents:
9336
diff
changeset
|
2381 call s:test_xgrep('l') |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
2382 endfunc |
9397
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9342
diff
changeset
|
2383 |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
2384 func Test_two_windows() |
9397
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9342
diff
changeset
|
2385 " Use one 'errorformat' for two windows. Add an expression to each of them, |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9342
diff
changeset
|
2386 " make sure they each keep their own state. |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9342
diff
changeset
|
2387 set efm=%DEntering\ dir\ '%f',%f:%l:%m,%XLeaving\ dir\ '%f' |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9342
diff
changeset
|
2388 call mkdir('Xone/a', 'p') |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9342
diff
changeset
|
2389 call mkdir('Xtwo/a', 'p') |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9342
diff
changeset
|
2390 let lines = ['1', '2', 'one one one', '4', 'two two two', '6', '7'] |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9342
diff
changeset
|
2391 call writefile(lines, 'Xone/a/one.txt') |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9342
diff
changeset
|
2392 call writefile(lines, 'Xtwo/a/two.txt') |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9342
diff
changeset
|
2393 |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9342
diff
changeset
|
2394 new one |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9342
diff
changeset
|
2395 let one_id = win_getid() |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9342
diff
changeset
|
2396 lexpr "" |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9342
diff
changeset
|
2397 new two |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9342
diff
changeset
|
2398 let two_id = win_getid() |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9342
diff
changeset
|
2399 lexpr "" |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9342
diff
changeset
|
2400 |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9342
diff
changeset
|
2401 laddexpr "Entering dir 'Xtwo/a'" |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9342
diff
changeset
|
2402 call win_gotoid(one_id) |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9342
diff
changeset
|
2403 laddexpr "Entering dir 'Xone/a'" |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9342
diff
changeset
|
2404 call win_gotoid(two_id) |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9342
diff
changeset
|
2405 laddexpr 'two.txt:5:two two two' |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9342
diff
changeset
|
2406 call win_gotoid(one_id) |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9342
diff
changeset
|
2407 laddexpr 'one.txt:3:one one one' |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9342
diff
changeset
|
2408 |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9342
diff
changeset
|
2409 let loc_one = getloclist(one_id) |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9342
diff
changeset
|
2410 call assert_equal('Xone/a/one.txt', bufname(loc_one[1].bufnr)) |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9342
diff
changeset
|
2411 call assert_equal(3, loc_one[1].lnum) |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9342
diff
changeset
|
2412 |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9342
diff
changeset
|
2413 let loc_two = getloclist(two_id) |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9342
diff
changeset
|
2414 call assert_equal('Xtwo/a/two.txt', bufname(loc_two[1].bufnr)) |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9342
diff
changeset
|
2415 call assert_equal(5, loc_two[1].lnum) |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9342
diff
changeset
|
2416 |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9342
diff
changeset
|
2417 call win_gotoid(one_id) |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9342
diff
changeset
|
2418 bwipe! |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9342
diff
changeset
|
2419 call win_gotoid(two_id) |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9342
diff
changeset
|
2420 bwipe! |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9342
diff
changeset
|
2421 call delete('Xone', 'rf') |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9342
diff
changeset
|
2422 call delete('Xtwo', 'rf') |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9342
diff
changeset
|
2423 endfunc |
9432
abb72f0b9e06
commit https://github.com/vim/vim/commit/dcb170018642ec144cd87d9d9fe076575b8d1263
Christian Brabandt <cb@256bit.org>
parents:
9405
diff
changeset
|
2424 |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
2425 func XbottomTests(cchar) |
9458
374afcf9d11d
commit https://github.com/vim/vim/commit/537ef08408c50e0c4104d57f74993b3b0ed9560d
Christian Brabandt <cb@256bit.org>
parents:
9432
diff
changeset
|
2426 call s:setup_commands(a:cchar) |
374afcf9d11d
commit https://github.com/vim/vim/commit/537ef08408c50e0c4104d57f74993b3b0ed9560d
Christian Brabandt <cb@256bit.org>
parents:
9432
diff
changeset
|
2427 |
11263
ae5f9f26f81c
patch 8.0.0517: there is no way to remove quickfix lists
Christian Brabandt <cb@256bit.org>
parents:
11195
diff
changeset
|
2428 " Calling lbottom without any errors should fail |
ae5f9f26f81c
patch 8.0.0517: there is no way to remove quickfix lists
Christian Brabandt <cb@256bit.org>
parents:
11195
diff
changeset
|
2429 if a:cchar == 'l' |
ae5f9f26f81c
patch 8.0.0517: there is no way to remove quickfix lists
Christian Brabandt <cb@256bit.org>
parents:
11195
diff
changeset
|
2430 call assert_fails('lbottom', 'E776:') |
ae5f9f26f81c
patch 8.0.0517: there is no way to remove quickfix lists
Christian Brabandt <cb@256bit.org>
parents:
11195
diff
changeset
|
2431 endif |
ae5f9f26f81c
patch 8.0.0517: there is no way to remove quickfix lists
Christian Brabandt <cb@256bit.org>
parents:
11195
diff
changeset
|
2432 |
11502
46bbef0ee9a6
patch 8.0.0634: cannot easily get to the last quickfix list
Christian Brabandt <cb@256bit.org>
parents:
11445
diff
changeset
|
2433 call g:Xsetlist([{'filename': 'foo', 'lnum': 42}]) |
9458
374afcf9d11d
commit https://github.com/vim/vim/commit/537ef08408c50e0c4104d57f74993b3b0ed9560d
Christian Brabandt <cb@256bit.org>
parents:
9432
diff
changeset
|
2434 Xopen |
9432
abb72f0b9e06
commit https://github.com/vim/vim/commit/dcb170018642ec144cd87d9d9fe076575b8d1263
Christian Brabandt <cb@256bit.org>
parents:
9405
diff
changeset
|
2435 let wid = win_getid() |
abb72f0b9e06
commit https://github.com/vim/vim/commit/dcb170018642ec144cd87d9d9fe076575b8d1263
Christian Brabandt <cb@256bit.org>
parents:
9405
diff
changeset
|
2436 call assert_equal(1, line('.')) |
abb72f0b9e06
commit https://github.com/vim/vim/commit/dcb170018642ec144cd87d9d9fe076575b8d1263
Christian Brabandt <cb@256bit.org>
parents:
9405
diff
changeset
|
2437 wincmd w |
11502
46bbef0ee9a6
patch 8.0.0634: cannot easily get to the last quickfix list
Christian Brabandt <cb@256bit.org>
parents:
11445
diff
changeset
|
2438 call g:Xsetlist([{'filename': 'var', 'lnum': 24}], 'a') |
9458
374afcf9d11d
commit https://github.com/vim/vim/commit/537ef08408c50e0c4104d57f74993b3b0ed9560d
Christian Brabandt <cb@256bit.org>
parents:
9432
diff
changeset
|
2439 Xbottom |
9432
abb72f0b9e06
commit https://github.com/vim/vim/commit/dcb170018642ec144cd87d9d9fe076575b8d1263
Christian Brabandt <cb@256bit.org>
parents:
9405
diff
changeset
|
2440 call win_gotoid(wid) |
abb72f0b9e06
commit https://github.com/vim/vim/commit/dcb170018642ec144cd87d9d9fe076575b8d1263
Christian Brabandt <cb@256bit.org>
parents:
9405
diff
changeset
|
2441 call assert_equal(2, line('.')) |
9458
374afcf9d11d
commit https://github.com/vim/vim/commit/537ef08408c50e0c4104d57f74993b3b0ed9560d
Christian Brabandt <cb@256bit.org>
parents:
9432
diff
changeset
|
2442 Xclose |
9432
abb72f0b9e06
commit https://github.com/vim/vim/commit/dcb170018642ec144cd87d9d9fe076575b8d1263
Christian Brabandt <cb@256bit.org>
parents:
9405
diff
changeset
|
2443 endfunc |
9458
374afcf9d11d
commit https://github.com/vim/vim/commit/537ef08408c50e0c4104d57f74993b3b0ed9560d
Christian Brabandt <cb@256bit.org>
parents:
9432
diff
changeset
|
2444 |
374afcf9d11d
commit https://github.com/vim/vim/commit/537ef08408c50e0c4104d57f74993b3b0ed9560d
Christian Brabandt <cb@256bit.org>
parents:
9432
diff
changeset
|
2445 " Tests for the :cbottom and :lbottom commands |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
2446 func Test_cbottom() |
9458
374afcf9d11d
commit https://github.com/vim/vim/commit/537ef08408c50e0c4104d57f74993b3b0ed9560d
Christian Brabandt <cb@256bit.org>
parents:
9432
diff
changeset
|
2447 call XbottomTests('c') |
374afcf9d11d
commit https://github.com/vim/vim/commit/537ef08408c50e0c4104d57f74993b3b0ed9560d
Christian Brabandt <cb@256bit.org>
parents:
9432
diff
changeset
|
2448 call XbottomTests('l') |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
2449 endfunc |
9538
26da1efa9e46
commit https://github.com/vim/vim/commit/f6acffbe83e622542d9fdf3066f51933e46e4954
Christian Brabandt <cb@256bit.org>
parents:
9458
diff
changeset
|
2450 |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
2451 func HistoryTest(cchar) |
9538
26da1efa9e46
commit https://github.com/vim/vim/commit/f6acffbe83e622542d9fdf3066f51933e46e4954
Christian Brabandt <cb@256bit.org>
parents:
9458
diff
changeset
|
2452 call s:setup_commands(a:cchar) |
26da1efa9e46
commit https://github.com/vim/vim/commit/f6acffbe83e622542d9fdf3066f51933e46e4954
Christian Brabandt <cb@256bit.org>
parents:
9458
diff
changeset
|
2453 |
26da1efa9e46
commit https://github.com/vim/vim/commit/f6acffbe83e622542d9fdf3066f51933e46e4954
Christian Brabandt <cb@256bit.org>
parents:
9458
diff
changeset
|
2454 " clear all lists after the first one, then replace the first one. |
26da1efa9e46
commit https://github.com/vim/vim/commit/f6acffbe83e622542d9fdf3066f51933e46e4954
Christian Brabandt <cb@256bit.org>
parents:
9458
diff
changeset
|
2455 call g:Xsetlist([]) |
11263
ae5f9f26f81c
patch 8.0.0517: there is no way to remove quickfix lists
Christian Brabandt <cb@256bit.org>
parents:
11195
diff
changeset
|
2456 call assert_fails('Xolder 99', 'E380:') |
9538
26da1efa9e46
commit https://github.com/vim/vim/commit/f6acffbe83e622542d9fdf3066f51933e46e4954
Christian Brabandt <cb@256bit.org>
parents:
9458
diff
changeset
|
2457 let entry = {'filename': 'foo', 'lnum': 42} |
26da1efa9e46
commit https://github.com/vim/vim/commit/f6acffbe83e622542d9fdf3066f51933e46e4954
Christian Brabandt <cb@256bit.org>
parents:
9458
diff
changeset
|
2458 call g:Xsetlist([entry], 'r') |
26da1efa9e46
commit https://github.com/vim/vim/commit/f6acffbe83e622542d9fdf3066f51933e46e4954
Christian Brabandt <cb@256bit.org>
parents:
9458
diff
changeset
|
2459 call g:Xsetlist([entry, entry]) |
26da1efa9e46
commit https://github.com/vim/vim/commit/f6acffbe83e622542d9fdf3066f51933e46e4954
Christian Brabandt <cb@256bit.org>
parents:
9458
diff
changeset
|
2460 call g:Xsetlist([entry, entry, entry]) |
26da1efa9e46
commit https://github.com/vim/vim/commit/f6acffbe83e622542d9fdf3066f51933e46e4954
Christian Brabandt <cb@256bit.org>
parents:
9458
diff
changeset
|
2461 let res = split(execute(a:cchar . 'hist'), "\n") |
26da1efa9e46
commit https://github.com/vim/vim/commit/f6acffbe83e622542d9fdf3066f51933e46e4954
Christian Brabandt <cb@256bit.org>
parents:
9458
diff
changeset
|
2462 call assert_equal(3, len(res)) |
26da1efa9e46
commit https://github.com/vim/vim/commit/f6acffbe83e622542d9fdf3066f51933e46e4954
Christian Brabandt <cb@256bit.org>
parents:
9458
diff
changeset
|
2463 let common = 'errors :set' . (a:cchar == 'c' ? 'qf' : 'loc') . 'list()' |
26da1efa9e46
commit https://github.com/vim/vim/commit/f6acffbe83e622542d9fdf3066f51933e46e4954
Christian Brabandt <cb@256bit.org>
parents:
9458
diff
changeset
|
2464 call assert_equal(' error list 1 of 3; 1 ' . common, res[0]) |
26da1efa9e46
commit https://github.com/vim/vim/commit/f6acffbe83e622542d9fdf3066f51933e46e4954
Christian Brabandt <cb@256bit.org>
parents:
9458
diff
changeset
|
2465 call assert_equal(' error list 2 of 3; 2 ' . common, res[1]) |
26da1efa9e46
commit https://github.com/vim/vim/commit/f6acffbe83e622542d9fdf3066f51933e46e4954
Christian Brabandt <cb@256bit.org>
parents:
9458
diff
changeset
|
2466 call assert_equal('> error list 3 of 3; 3 ' . common, res[2]) |
12427
fc3e2d5614dd
patch 8.0.1093: various small quickfix issues
Christian Brabandt <cb@256bit.org>
parents:
12321
diff
changeset
|
2467 |
16555
1302bc0b80db
patch 8.1.1281: cannot specify a count with :chistory
Bram Moolenaar <Bram@vim.org>
parents:
16543
diff
changeset
|
2468 " Test for changing the quickfix lists |
1302bc0b80db
patch 8.1.1281: cannot specify a count with :chistory
Bram Moolenaar <Bram@vim.org>
parents:
16543
diff
changeset
|
2469 call assert_equal(3, g:Xgetlist({'nr' : 0}).nr) |
1302bc0b80db
patch 8.1.1281: cannot specify a count with :chistory
Bram Moolenaar <Bram@vim.org>
parents:
16543
diff
changeset
|
2470 exe '1' . a:cchar . 'hist' |
1302bc0b80db
patch 8.1.1281: cannot specify a count with :chistory
Bram Moolenaar <Bram@vim.org>
parents:
16543
diff
changeset
|
2471 call assert_equal(1, g:Xgetlist({'nr' : 0}).nr) |
1302bc0b80db
patch 8.1.1281: cannot specify a count with :chistory
Bram Moolenaar <Bram@vim.org>
parents:
16543
diff
changeset
|
2472 exe '3' . a:cchar . 'hist' |
1302bc0b80db
patch 8.1.1281: cannot specify a count with :chistory
Bram Moolenaar <Bram@vim.org>
parents:
16543
diff
changeset
|
2473 call assert_equal(3, g:Xgetlist({'nr' : 0}).nr) |
1302bc0b80db
patch 8.1.1281: cannot specify a count with :chistory
Bram Moolenaar <Bram@vim.org>
parents:
16543
diff
changeset
|
2474 call assert_fails('-2' . a:cchar . 'hist', 'E16:') |
1302bc0b80db
patch 8.1.1281: cannot specify a count with :chistory
Bram Moolenaar <Bram@vim.org>
parents:
16543
diff
changeset
|
2475 call assert_fails('4' . a:cchar . 'hist', 'E16:') |
1302bc0b80db
patch 8.1.1281: cannot specify a count with :chistory
Bram Moolenaar <Bram@vim.org>
parents:
16543
diff
changeset
|
2476 |
12427
fc3e2d5614dd
patch 8.0.1093: various small quickfix issues
Christian Brabandt <cb@256bit.org>
parents:
12321
diff
changeset
|
2477 call g:Xsetlist([], 'f') |
fc3e2d5614dd
patch 8.0.1093: various small quickfix issues
Christian Brabandt <cb@256bit.org>
parents:
12321
diff
changeset
|
2478 let l = split(execute(a:cchar . 'hist'), "\n") |
fc3e2d5614dd
patch 8.0.1093: various small quickfix issues
Christian Brabandt <cb@256bit.org>
parents:
12321
diff
changeset
|
2479 call assert_equal('No entries', l[0]) |
16555
1302bc0b80db
patch 8.1.1281: cannot specify a count with :chistory
Bram Moolenaar <Bram@vim.org>
parents:
16543
diff
changeset
|
2480 if a:cchar == 'c' |
1302bc0b80db
patch 8.1.1281: cannot specify a count with :chistory
Bram Moolenaar <Bram@vim.org>
parents:
16543
diff
changeset
|
2481 call assert_fails('4chist', 'E16:') |
1302bc0b80db
patch 8.1.1281: cannot specify a count with :chistory
Bram Moolenaar <Bram@vim.org>
parents:
16543
diff
changeset
|
2482 else |
1302bc0b80db
patch 8.1.1281: cannot specify a count with :chistory
Bram Moolenaar <Bram@vim.org>
parents:
16543
diff
changeset
|
2483 call assert_fails('4lhist', 'E776:') |
1302bc0b80db
patch 8.1.1281: cannot specify a count with :chistory
Bram Moolenaar <Bram@vim.org>
parents:
16543
diff
changeset
|
2484 endif |
15424
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15225
diff
changeset
|
2485 |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15225
diff
changeset
|
2486 " An empty list should still show the stack history |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15225
diff
changeset
|
2487 call g:Xsetlist([]) |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15225
diff
changeset
|
2488 let res = split(execute(a:cchar . 'hist'), "\n") |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15225
diff
changeset
|
2489 call assert_equal('> error list 1 of 1; 0 ' . common, res[0]) |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15225
diff
changeset
|
2490 |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15225
diff
changeset
|
2491 call g:Xsetlist([], 'f') |
9538
26da1efa9e46
commit https://github.com/vim/vim/commit/f6acffbe83e622542d9fdf3066f51933e46e4954
Christian Brabandt <cb@256bit.org>
parents:
9458
diff
changeset
|
2492 endfunc |
26da1efa9e46
commit https://github.com/vim/vim/commit/f6acffbe83e622542d9fdf3066f51933e46e4954
Christian Brabandt <cb@256bit.org>
parents:
9458
diff
changeset
|
2493 |
26da1efa9e46
commit https://github.com/vim/vim/commit/f6acffbe83e622542d9fdf3066f51933e46e4954
Christian Brabandt <cb@256bit.org>
parents:
9458
diff
changeset
|
2494 func Test_history() |
26da1efa9e46
commit https://github.com/vim/vim/commit/f6acffbe83e622542d9fdf3066f51933e46e4954
Christian Brabandt <cb@256bit.org>
parents:
9458
diff
changeset
|
2495 call HistoryTest('c') |
26da1efa9e46
commit https://github.com/vim/vim/commit/f6acffbe83e622542d9fdf3066f51933e46e4954
Christian Brabandt <cb@256bit.org>
parents:
9458
diff
changeset
|
2496 call HistoryTest('l') |
26da1efa9e46
commit https://github.com/vim/vim/commit/f6acffbe83e622542d9fdf3066f51933e46e4954
Christian Brabandt <cb@256bit.org>
parents:
9458
diff
changeset
|
2497 endfunc |
9540
64a791c53418
commit https://github.com/vim/vim/commit/015102e91e978a0bb42a14461c132a85e8f7e1ea
Christian Brabandt <cb@256bit.org>
parents:
9538
diff
changeset
|
2498 |
64a791c53418
commit https://github.com/vim/vim/commit/015102e91e978a0bb42a14461c132a85e8f7e1ea
Christian Brabandt <cb@256bit.org>
parents:
9538
diff
changeset
|
2499 func Test_duplicate_buf() |
64a791c53418
commit https://github.com/vim/vim/commit/015102e91e978a0bb42a14461c132a85e8f7e1ea
Christian Brabandt <cb@256bit.org>
parents:
9538
diff
changeset
|
2500 " make sure we can get the highest buffer number |
64a791c53418
commit https://github.com/vim/vim/commit/015102e91e978a0bb42a14461c132a85e8f7e1ea
Christian Brabandt <cb@256bit.org>
parents:
9538
diff
changeset
|
2501 edit DoesNotExist |
64a791c53418
commit https://github.com/vim/vim/commit/015102e91e978a0bb42a14461c132a85e8f7e1ea
Christian Brabandt <cb@256bit.org>
parents:
9538
diff
changeset
|
2502 edit DoesNotExist2 |
64a791c53418
commit https://github.com/vim/vim/commit/015102e91e978a0bb42a14461c132a85e8f7e1ea
Christian Brabandt <cb@256bit.org>
parents:
9538
diff
changeset
|
2503 let last_buffer = bufnr("$") |
64a791c53418
commit https://github.com/vim/vim/commit/015102e91e978a0bb42a14461c132a85e8f7e1ea
Christian Brabandt <cb@256bit.org>
parents:
9538
diff
changeset
|
2504 |
64a791c53418
commit https://github.com/vim/vim/commit/015102e91e978a0bb42a14461c132a85e8f7e1ea
Christian Brabandt <cb@256bit.org>
parents:
9538
diff
changeset
|
2505 " make sure only one buffer is created |
64a791c53418
commit https://github.com/vim/vim/commit/015102e91e978a0bb42a14461c132a85e8f7e1ea
Christian Brabandt <cb@256bit.org>
parents:
9538
diff
changeset
|
2506 call writefile(['this one', 'that one'], 'Xgrepthis') |
64a791c53418
commit https://github.com/vim/vim/commit/015102e91e978a0bb42a14461c132a85e8f7e1ea
Christian Brabandt <cb@256bit.org>
parents:
9538
diff
changeset
|
2507 vimgrep one Xgrepthis |
64a791c53418
commit https://github.com/vim/vim/commit/015102e91e978a0bb42a14461c132a85e8f7e1ea
Christian Brabandt <cb@256bit.org>
parents:
9538
diff
changeset
|
2508 vimgrep one Xgrepthis |
64a791c53418
commit https://github.com/vim/vim/commit/015102e91e978a0bb42a14461c132a85e8f7e1ea
Christian Brabandt <cb@256bit.org>
parents:
9538
diff
changeset
|
2509 call assert_equal(last_buffer + 1, bufnr("$")) |
64a791c53418
commit https://github.com/vim/vim/commit/015102e91e978a0bb42a14461c132a85e8f7e1ea
Christian Brabandt <cb@256bit.org>
parents:
9538
diff
changeset
|
2510 |
64a791c53418
commit https://github.com/vim/vim/commit/015102e91e978a0bb42a14461c132a85e8f7e1ea
Christian Brabandt <cb@256bit.org>
parents:
9538
diff
changeset
|
2511 call delete('Xgrepthis') |
64a791c53418
commit https://github.com/vim/vim/commit/015102e91e978a0bb42a14461c132a85e8f7e1ea
Christian Brabandt <cb@256bit.org>
parents:
9538
diff
changeset
|
2512 endfunc |
9850
67781bb0a61a
commit https://github.com/vim/vim/commit/d823fa910cca43fec3c31c030ee908a14c272640
Christian Brabandt <cb@256bit.org>
parents:
9752
diff
changeset
|
2513 |
67781bb0a61a
commit https://github.com/vim/vim/commit/d823fa910cca43fec3c31c030ee908a14c272640
Christian Brabandt <cb@256bit.org>
parents:
9752
diff
changeset
|
2514 " Quickfix/Location list set/get properties tests |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
2515 func Xproperty_tests(cchar) |
21765
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2516 call s:setup_commands(a:cchar) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2517 |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2518 " Error cases |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2519 call assert_fails('call g:Xgetlist(99)', 'E715:') |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2520 call assert_fails('call g:Xsetlist(99)', 'E714:') |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2521 call assert_fails('call g:Xsetlist([], "a", [])', 'E715:') |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2522 |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2523 " Set and get the title |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2524 call g:Xsetlist([]) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2525 Xopen |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2526 wincmd p |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2527 call g:Xsetlist([{'filename':'foo', 'lnum':27}]) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2528 let s = g:Xsetlist([], 'a', {'title' : 'Sample'}) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2529 call assert_equal(0, s) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2530 let d = g:Xgetlist({"title":1}) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2531 call assert_equal('Sample', d.title) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2532 " Try setting title to a non-string value |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2533 call assert_equal(-1, g:Xsetlist([], 'a', {'title' : ['Test']})) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2534 call assert_equal('Sample', g:Xgetlist({"title":1}).title) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2535 |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2536 Xopen |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2537 call assert_equal('Sample', w:quickfix_title) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2538 Xclose |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2539 |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2540 " Tests for action argument |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2541 silent! Xolder 999 |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2542 let qfnr = g:Xgetlist({'all':1}).nr |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2543 call g:Xsetlist([], 'r', {'title' : 'N1'}) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2544 call assert_equal('N1', g:Xgetlist({'all':1}).title) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2545 call g:Xsetlist([], ' ', {'title' : 'N2'}) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2546 call assert_equal(qfnr + 1, g:Xgetlist({'all':1}).nr) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2547 |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2548 let res = g:Xgetlist({'nr': 0}) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2549 call assert_equal(qfnr + 1, res.nr) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2550 call assert_equal(['nr'], keys(res)) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2551 |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2552 call g:Xsetlist([], ' ', {'title' : 'N3'}) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2553 call assert_equal('N2', g:Xgetlist({'nr':2, 'title':1}).title) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2554 |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2555 " Changing the title of an earlier quickfix list |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2556 call g:Xsetlist([], 'r', {'title' : 'NewTitle', 'nr' : 2}) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2557 call assert_equal('NewTitle', g:Xgetlist({'nr':2, 'title':1}).title) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2558 |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2559 " Changing the title of an invalid quickfix list |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2560 call assert_equal(-1, g:Xsetlist([], ' ', |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2561 \ {'title' : 'SomeTitle', 'nr' : 99})) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2562 call assert_equal(-1, g:Xsetlist([], ' ', |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2563 \ {'title' : 'SomeTitle', 'nr' : 'abc'})) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2564 |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2565 if a:cchar == 'c' |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2566 copen |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2567 call assert_equal({'winid':win_getid()}, getqflist({'winid':1})) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2568 cclose |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2569 endif |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2570 |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2571 " Invalid arguments |
22087
ff21e2962490
patch 8.2.1593: tests do not check the error number properly
Bram Moolenaar <Bram@vim.org>
parents:
22083
diff
changeset
|
2572 call assert_fails('call g:Xgetlist([])', 'E715:') |
ff21e2962490
patch 8.2.1593: tests do not check the error number properly
Bram Moolenaar <Bram@vim.org>
parents:
22083
diff
changeset
|
2573 call assert_fails('call g:Xsetlist([], "a", [])', 'E715:') |
21765
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2574 let s = g:Xsetlist([], 'a', {'abc':1}) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2575 call assert_equal(-1, s) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2576 |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2577 call assert_equal({}, g:Xgetlist({'abc':1})) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2578 call assert_equal('', g:Xgetlist({'nr':99, 'title':1}).title) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2579 call assert_equal('', g:Xgetlist({'nr':[], 'title':1}).title) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2580 |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2581 if a:cchar == 'l' |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2582 call assert_equal({}, getloclist(99, {'title': 1})) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2583 endif |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2584 |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2585 " Context related tests |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2586 let s = g:Xsetlist([], 'a', {'context':[1,2,3]}) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2587 call assert_equal(0, s) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2588 call test_garbagecollect_now() |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2589 let d = g:Xgetlist({'context':1}) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2590 call assert_equal([1,2,3], d.context) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2591 call g:Xsetlist([], 'a', {'context':{'color':'green'}}) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2592 let d = g:Xgetlist({'context':1}) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2593 call assert_equal({'color':'green'}, d.context) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2594 call g:Xsetlist([], 'a', {'context':"Context info"}) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2595 let d = g:Xgetlist({'context':1}) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2596 call assert_equal("Context info", d.context) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2597 call g:Xsetlist([], 'a', {'context':246}) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2598 let d = g:Xgetlist({'context':1}) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2599 call assert_equal(246, d.context) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2600 " set other Vim data types as context |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2601 call g:Xsetlist([], 'a', {'context' : test_null_blob()}) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2602 if has('channel') |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2603 call g:Xsetlist([], 'a', {'context' : test_null_channel()}) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2604 endif |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2605 if has('job') |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2606 call g:Xsetlist([], 'a', {'context' : test_null_job()}) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2607 endif |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2608 call g:Xsetlist([], 'a', {'context' : test_null_function()}) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2609 call g:Xsetlist([], 'a', {'context' : test_null_partial()}) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2610 call g:Xsetlist([], 'a', {'context' : ''}) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2611 call test_garbagecollect_now() |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2612 if a:cchar == 'l' |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2613 " Test for copying context across two different location lists |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2614 new | only |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2615 let w1_id = win_getid() |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2616 let l = [1] |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2617 call setloclist(0, [], 'a', {'context':l}) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2618 new |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2619 let w2_id = win_getid() |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2620 call add(l, 2) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2621 call assert_equal([1, 2], getloclist(w1_id, {'context':1}).context) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2622 call assert_equal([1, 2], getloclist(w2_id, {'context':1}).context) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2623 unlet! l |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2624 call assert_equal([1, 2], getloclist(w2_id, {'context':1}).context) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2625 only |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2626 call setloclist(0, [], 'f') |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2627 call assert_equal('', getloclist(0, {'context':1}).context) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2628 endif |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2629 |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2630 " Test for changing the context of previous quickfix lists |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2631 call g:Xsetlist([], 'f') |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2632 Xexpr "One" |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2633 Xexpr "Two" |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2634 Xexpr "Three" |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2635 call g:Xsetlist([], 'r', {'context' : [1], 'nr' : 1}) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2636 call g:Xsetlist([], 'a', {'context' : [2], 'nr' : 2}) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2637 " Also, check for setting the context using quickfix list number zero. |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2638 call g:Xsetlist([], 'r', {'context' : [3], 'nr' : 0}) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2639 call test_garbagecollect_now() |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2640 let l = g:Xgetlist({'nr' : 1, 'context' : 1}) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2641 call assert_equal([1], l.context) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2642 let l = g:Xgetlist({'nr' : 2, 'context' : 1}) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2643 call assert_equal([2], l.context) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2644 let l = g:Xgetlist({'nr' : 3, 'context' : 1}) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2645 call assert_equal([3], l.context) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2646 |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2647 " Test for changing the context through reference and for garbage |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2648 " collection of quickfix context |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2649 let l = ["red"] |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2650 call g:Xsetlist([], ' ', {'context' : l}) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2651 call add(l, "blue") |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2652 let x = g:Xgetlist({'context' : 1}) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2653 call add(x.context, "green") |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2654 call assert_equal(["red", "blue", "green"], l) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2655 call assert_equal(["red", "blue", "green"], x.context) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2656 unlet l |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2657 call test_garbagecollect_now() |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2658 let m = g:Xgetlist({'context' : 1}) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2659 call assert_equal(["red", "blue", "green"], m.context) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2660 |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2661 " Test for setting/getting items |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2662 Xexpr "" |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2663 let qfprev = g:Xgetlist({'nr':0}) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2664 let s = g:Xsetlist([], ' ', {'title':'Green', |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2665 \ 'items' : [{'filename':'F1', 'lnum':10}]}) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2666 call assert_equal(0, s) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2667 let qfcur = g:Xgetlist({'nr':0}) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2668 call assert_true(qfcur.nr == qfprev.nr + 1) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2669 let l = g:Xgetlist({'items':1}) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2670 call assert_equal('F1', bufname(l.items[0].bufnr)) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2671 call assert_equal(10, l.items[0].lnum) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2672 call g:Xsetlist([], 'a', {'items' : [{'filename':'F2', 'lnum':20}, |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2673 \ {'filename':'F2', 'lnum':30}]}) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2674 let l = g:Xgetlist({'items':1}) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2675 call assert_equal('F2', bufname(l.items[2].bufnr)) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2676 call assert_equal(30, l.items[2].lnum) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2677 call g:Xsetlist([], 'r', {'items' : [{'filename':'F3', 'lnum':40}]}) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2678 let l = g:Xgetlist({'items':1}) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2679 call assert_equal('F3', bufname(l.items[0].bufnr)) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2680 call assert_equal(40, l.items[0].lnum) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2681 call g:Xsetlist([], 'r', {'items' : []}) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2682 let l = g:Xgetlist({'items':1}) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2683 call assert_equal(0, len(l.items)) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2684 |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2685 call g:Xsetlist([], 'r', {'title' : 'TestTitle'}) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2686 call g:Xsetlist([], 'r', {'items' : [{'filename' : 'F1', 'lnum' : 10, 'text' : 'L10'}]}) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2687 call g:Xsetlist([], 'r', {'items' : [{'filename' : 'F1', 'lnum' : 10, 'text' : 'L10'}]}) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2688 call assert_equal('TestTitle', g:Xgetlist({'title' : 1}).title) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2689 |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2690 " Test for getting id of window associated with a location list window |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2691 if a:cchar == 'l' |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2692 only |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2693 call assert_equal(0, g:Xgetlist({'all' : 1}).filewinid) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2694 let wid = win_getid() |
9850
67781bb0a61a
commit https://github.com/vim/vim/commit/d823fa910cca43fec3c31c030ee908a14c272640
Christian Brabandt <cb@256bit.org>
parents:
9752
diff
changeset
|
2695 Xopen |
21765
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2696 call assert_equal(wid, g:Xgetlist({'filewinid' : 1}).filewinid) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2697 wincmd w |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2698 call assert_equal(0, g:Xgetlist({'filewinid' : 1}).filewinid) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2699 only |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2700 endif |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2701 |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2702 " The following used to crash Vim with address sanitizer |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2703 call g:Xsetlist([], 'f') |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2704 call g:Xsetlist([], 'a', {'items' : [{'filename':'F1', 'lnum':10}]}) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2705 call assert_equal(10, g:Xgetlist({'items':1}).items[0].lnum) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2706 |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2707 " Try setting the items using a string |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2708 call assert_equal(-1, g:Xsetlist([], ' ', {'items' : 'Test'})) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2709 |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2710 " Save and restore the quickfix stack |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2711 call g:Xsetlist([], 'f') |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2712 call assert_equal(0, g:Xgetlist({'nr':'$'}).nr) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2713 Xexpr "File1:10:Line1" |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2714 Xexpr "File2:20:Line2" |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2715 Xexpr "File3:30:Line3" |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2716 let last_qf = g:Xgetlist({'nr':'$'}).nr |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2717 call assert_equal(3, last_qf) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2718 let qstack = [] |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2719 for i in range(1, last_qf) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2720 let qstack = add(qstack, g:Xgetlist({'nr':i, 'all':1})) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2721 endfor |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2722 call g:Xsetlist([], 'f') |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2723 for i in range(len(qstack)) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2724 call g:Xsetlist([], ' ', qstack[i]) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2725 endfor |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2726 call assert_equal(3, g:Xgetlist({'nr':'$'}).nr) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2727 call assert_equal(10, g:Xgetlist({'nr':1, 'items':1}).items[0].lnum) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2728 call assert_equal(20, g:Xgetlist({'nr':2, 'items':1}).items[0].lnum) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2729 call assert_equal(30, g:Xgetlist({'nr':3, 'items':1}).items[0].lnum) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2730 call g:Xsetlist([], 'f') |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2731 |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2732 " Swap two quickfix lists |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2733 Xexpr "File1:10:Line10" |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2734 Xexpr "File2:20:Line20" |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2735 Xexpr "File3:30:Line30" |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2736 call g:Xsetlist([], 'r', {'nr':1,'title':'Colors','context':['Colors']}) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2737 call g:Xsetlist([], 'r', {'nr':2,'title':'Fruits','context':['Fruits']}) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2738 let l1=g:Xgetlist({'nr':1,'all':1}) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2739 let l2=g:Xgetlist({'nr':2,'all':1}) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2740 let save_id = l1.id |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2741 let l1.id=l2.id |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2742 let l2.id=save_id |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2743 call g:Xsetlist([], 'r', l1) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2744 call g:Xsetlist([], 'r', l2) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2745 let newl1=g:Xgetlist({'nr':1,'all':1}) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2746 let newl2=g:Xgetlist({'nr':2,'all':1}) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2747 call assert_equal('Fruits', newl1.title) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2748 call assert_equal(['Fruits'], newl1.context) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2749 call assert_equal('Line20', newl1.items[0].text) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2750 call assert_equal('Colors', newl2.title) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2751 call assert_equal(['Colors'], newl2.context) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2752 call assert_equal('Line10', newl2.items[0].text) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2753 call g:Xsetlist([], 'f') |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2754 |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2755 " Cannot specify both a non-empty list argument and a dict argument |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2756 call assert_fails("call g:Xsetlist([{}], ' ', {})", 'E475:') |
11195
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
2757 endfunc |
9850
67781bb0a61a
commit https://github.com/vim/vim/commit/d823fa910cca43fec3c31c030ee908a14c272640
Christian Brabandt <cb@256bit.org>
parents:
9752
diff
changeset
|
2758 |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
2759 func Test_qf_property() |
21765
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2760 call Xproperty_tests('c') |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
2761 call Xproperty_tests('l') |
11195
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
2762 endfunc |
10056
21f685af3fc1
commit https://github.com/vim/vim/commit/04c4ce650f9e533cd35b2aa6803f4d354d3ec7aa
Christian Brabandt <cb@256bit.org>
parents:
9982
diff
changeset
|
2763 |
15424
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15225
diff
changeset
|
2764 " Test for setting the current index in the location/quickfix list |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15225
diff
changeset
|
2765 func Xtest_setqfidx(cchar) |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15225
diff
changeset
|
2766 call s:setup_commands(a:cchar) |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15225
diff
changeset
|
2767 |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15225
diff
changeset
|
2768 Xgetexpr "F1:10:1:Line1\nF2:20:2:Line2\nF3:30:3:Line3" |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15225
diff
changeset
|
2769 Xgetexpr "F4:10:1:Line1\nF5:20:2:Line2\nF6:30:3:Line3" |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15225
diff
changeset
|
2770 Xgetexpr "F7:10:1:Line1\nF8:20:2:Line2\nF9:30:3:Line3" |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15225
diff
changeset
|
2771 |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15225
diff
changeset
|
2772 call g:Xsetlist([], 'a', {'nr' : 3, 'idx' : 2}) |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15225
diff
changeset
|
2773 call g:Xsetlist([], 'a', {'nr' : 2, 'idx' : 2}) |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15225
diff
changeset
|
2774 call g:Xsetlist([], 'a', {'nr' : 1, 'idx' : 3}) |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15225
diff
changeset
|
2775 Xolder 2 |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15225
diff
changeset
|
2776 Xopen |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15225
diff
changeset
|
2777 call assert_equal(3, line('.')) |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15225
diff
changeset
|
2778 Xnewer |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15225
diff
changeset
|
2779 call assert_equal(2, line('.')) |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15225
diff
changeset
|
2780 Xnewer |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15225
diff
changeset
|
2781 call assert_equal(2, line('.')) |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15225
diff
changeset
|
2782 " Update the current index with the quickfix window open |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15225
diff
changeset
|
2783 wincmd w |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15225
diff
changeset
|
2784 call g:Xsetlist([], 'a', {'nr' : 3, 'idx' : 3}) |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15225
diff
changeset
|
2785 Xopen |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15225
diff
changeset
|
2786 call assert_equal(3, line('.')) |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15225
diff
changeset
|
2787 Xclose |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15225
diff
changeset
|
2788 |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15225
diff
changeset
|
2789 " Set the current index to the last entry |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15225
diff
changeset
|
2790 call g:Xsetlist([], 'a', {'nr' : 1, 'idx' : '$'}) |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15225
diff
changeset
|
2791 call assert_equal(3, g:Xgetlist({'nr' : 1, 'idx' : 0}).idx) |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15225
diff
changeset
|
2792 " A large value should set the index to the last index |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15225
diff
changeset
|
2793 call g:Xsetlist([], 'a', {'nr' : 1, 'idx' : 1}) |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15225
diff
changeset
|
2794 call g:Xsetlist([], 'a', {'nr' : 1, 'idx' : 999}) |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15225
diff
changeset
|
2795 call assert_equal(3, g:Xgetlist({'nr' : 1, 'idx' : 0}).idx) |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15225
diff
changeset
|
2796 " Invalid index values |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15225
diff
changeset
|
2797 call g:Xsetlist([], 'a', {'nr' : 1, 'idx' : -1}) |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15225
diff
changeset
|
2798 call assert_equal(3, g:Xgetlist({'nr' : 1, 'idx' : 0}).idx) |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15225
diff
changeset
|
2799 call g:Xsetlist([], 'a', {'nr' : 1, 'idx' : 0}) |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15225
diff
changeset
|
2800 call assert_equal(3, g:Xgetlist({'nr' : 1, 'idx' : 0}).idx) |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15225
diff
changeset
|
2801 call g:Xsetlist([], 'a', {'nr' : 1, 'idx' : 'xx'}) |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15225
diff
changeset
|
2802 call assert_equal(3, g:Xgetlist({'nr' : 1, 'idx' : 0}).idx) |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15225
diff
changeset
|
2803 call assert_fails("call g:Xsetlist([], 'a', {'nr':1, 'idx':[]})", 'E745:') |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15225
diff
changeset
|
2804 |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15225
diff
changeset
|
2805 call g:Xsetlist([], 'f') |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15225
diff
changeset
|
2806 new | only |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15225
diff
changeset
|
2807 endfunc |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15225
diff
changeset
|
2808 |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15225
diff
changeset
|
2809 func Test_setqfidx() |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15225
diff
changeset
|
2810 call Xtest_setqfidx('c') |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15225
diff
changeset
|
2811 call Xtest_setqfidx('l') |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15225
diff
changeset
|
2812 endfunc |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15225
diff
changeset
|
2813 |
10056
21f685af3fc1
commit https://github.com/vim/vim/commit/04c4ce650f9e533cd35b2aa6803f4d354d3ec7aa
Christian Brabandt <cb@256bit.org>
parents:
9982
diff
changeset
|
2814 " Tests for the QuickFixCmdPre/QuickFixCmdPost autocommands |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
2815 func QfAutoCmdHandler(loc, cmd) |
10056
21f685af3fc1
commit https://github.com/vim/vim/commit/04c4ce650f9e533cd35b2aa6803f4d354d3ec7aa
Christian Brabandt <cb@256bit.org>
parents:
9982
diff
changeset
|
2816 call add(g:acmds, a:loc . a:cmd) |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
2817 endfunc |
10056
21f685af3fc1
commit https://github.com/vim/vim/commit/04c4ce650f9e533cd35b2aa6803f4d354d3ec7aa
Christian Brabandt <cb@256bit.org>
parents:
9982
diff
changeset
|
2818 |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
2819 func Test_Autocmd() |
10056
21f685af3fc1
commit https://github.com/vim/vim/commit/04c4ce650f9e533cd35b2aa6803f4d354d3ec7aa
Christian Brabandt <cb@256bit.org>
parents:
9982
diff
changeset
|
2820 autocmd QuickFixCmdPre * call QfAutoCmdHandler('pre', expand('<amatch>')) |
21f685af3fc1
commit https://github.com/vim/vim/commit/04c4ce650f9e533cd35b2aa6803f4d354d3ec7aa
Christian Brabandt <cb@256bit.org>
parents:
9982
diff
changeset
|
2821 autocmd QuickFixCmdPost * call QfAutoCmdHandler('post', expand('<amatch>')) |
21f685af3fc1
commit https://github.com/vim/vim/commit/04c4ce650f9e533cd35b2aa6803f4d354d3ec7aa
Christian Brabandt <cb@256bit.org>
parents:
9982
diff
changeset
|
2822 |
21f685af3fc1
commit https://github.com/vim/vim/commit/04c4ce650f9e533cd35b2aa6803f4d354d3ec7aa
Christian Brabandt <cb@256bit.org>
parents:
9982
diff
changeset
|
2823 let g:acmds = [] |
21f685af3fc1
commit https://github.com/vim/vim/commit/04c4ce650f9e533cd35b2aa6803f4d354d3ec7aa
Christian Brabandt <cb@256bit.org>
parents:
9982
diff
changeset
|
2824 cexpr "F1:10:Line 10" |
21f685af3fc1
commit https://github.com/vim/vim/commit/04c4ce650f9e533cd35b2aa6803f4d354d3ec7aa
Christian Brabandt <cb@256bit.org>
parents:
9982
diff
changeset
|
2825 caddexpr "F1:20:Line 20" |
21f685af3fc1
commit https://github.com/vim/vim/commit/04c4ce650f9e533cd35b2aa6803f4d354d3ec7aa
Christian Brabandt <cb@256bit.org>
parents:
9982
diff
changeset
|
2826 cgetexpr "F1:30:Line 30" |
12954
49e136457c66
patch 8.0.1353: QuickFixCmdPost is not used consistently
Christian Brabandt <cb@256bit.org>
parents:
12692
diff
changeset
|
2827 cexpr "" |
49e136457c66
patch 8.0.1353: QuickFixCmdPost is not used consistently
Christian Brabandt <cb@256bit.org>
parents:
12692
diff
changeset
|
2828 caddexpr "" |
49e136457c66
patch 8.0.1353: QuickFixCmdPost is not used consistently
Christian Brabandt <cb@256bit.org>
parents:
12692
diff
changeset
|
2829 cgetexpr "" |
49e136457c66
patch 8.0.1353: QuickFixCmdPost is not used consistently
Christian Brabandt <cb@256bit.org>
parents:
12692
diff
changeset
|
2830 silent! cexpr non_existing_func() |
49e136457c66
patch 8.0.1353: QuickFixCmdPost is not used consistently
Christian Brabandt <cb@256bit.org>
parents:
12692
diff
changeset
|
2831 silent! caddexpr non_existing_func() |
49e136457c66
patch 8.0.1353: QuickFixCmdPost is not used consistently
Christian Brabandt <cb@256bit.org>
parents:
12692
diff
changeset
|
2832 silent! cgetexpr non_existing_func() |
28421
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2833 let l =<< trim END |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2834 precexpr |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2835 postcexpr |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2836 precaddexpr |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2837 postcaddexpr |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2838 precgetexpr |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2839 postcgetexpr |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2840 precexpr |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2841 postcexpr |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2842 precaddexpr |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2843 postcaddexpr |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2844 precgetexpr |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2845 postcgetexpr |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2846 precexpr |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2847 precaddexpr |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2848 precgetexpr |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2849 END |
12954
49e136457c66
patch 8.0.1353: QuickFixCmdPost is not used consistently
Christian Brabandt <cb@256bit.org>
parents:
12692
diff
changeset
|
2850 call assert_equal(l, g:acmds) |
49e136457c66
patch 8.0.1353: QuickFixCmdPost is not used consistently
Christian Brabandt <cb@256bit.org>
parents:
12692
diff
changeset
|
2851 |
49e136457c66
patch 8.0.1353: QuickFixCmdPost is not used consistently
Christian Brabandt <cb@256bit.org>
parents:
12692
diff
changeset
|
2852 let g:acmds = [] |
10056
21f685af3fc1
commit https://github.com/vim/vim/commit/04c4ce650f9e533cd35b2aa6803f4d354d3ec7aa
Christian Brabandt <cb@256bit.org>
parents:
9982
diff
changeset
|
2853 enew! | call append(0, "F2:10:Line 10") |
21f685af3fc1
commit https://github.com/vim/vim/commit/04c4ce650f9e533cd35b2aa6803f4d354d3ec7aa
Christian Brabandt <cb@256bit.org>
parents:
9982
diff
changeset
|
2854 cbuffer! |
21f685af3fc1
commit https://github.com/vim/vim/commit/04c4ce650f9e533cd35b2aa6803f4d354d3ec7aa
Christian Brabandt <cb@256bit.org>
parents:
9982
diff
changeset
|
2855 enew! | call append(0, "F2:20:Line 20") |
21f685af3fc1
commit https://github.com/vim/vim/commit/04c4ce650f9e533cd35b2aa6803f4d354d3ec7aa
Christian Brabandt <cb@256bit.org>
parents:
9982
diff
changeset
|
2856 cgetbuffer |
21f685af3fc1
commit https://github.com/vim/vim/commit/04c4ce650f9e533cd35b2aa6803f4d354d3ec7aa
Christian Brabandt <cb@256bit.org>
parents:
9982
diff
changeset
|
2857 enew! | call append(0, "F2:30:Line 30") |
21f685af3fc1
commit https://github.com/vim/vim/commit/04c4ce650f9e533cd35b2aa6803f4d354d3ec7aa
Christian Brabandt <cb@256bit.org>
parents:
9982
diff
changeset
|
2858 caddbuffer |
12954
49e136457c66
patch 8.0.1353: QuickFixCmdPost is not used consistently
Christian Brabandt <cb@256bit.org>
parents:
12692
diff
changeset
|
2859 new |
49e136457c66
patch 8.0.1353: QuickFixCmdPost is not used consistently
Christian Brabandt <cb@256bit.org>
parents:
12692
diff
changeset
|
2860 let bnum = bufnr('%') |
49e136457c66
patch 8.0.1353: QuickFixCmdPost is not used consistently
Christian Brabandt <cb@256bit.org>
parents:
12692
diff
changeset
|
2861 bunload |
49e136457c66
patch 8.0.1353: QuickFixCmdPost is not used consistently
Christian Brabandt <cb@256bit.org>
parents:
12692
diff
changeset
|
2862 exe 'silent! cbuffer! ' . bnum |
49e136457c66
patch 8.0.1353: QuickFixCmdPost is not used consistently
Christian Brabandt <cb@256bit.org>
parents:
12692
diff
changeset
|
2863 exe 'silent! cgetbuffer ' . bnum |
49e136457c66
patch 8.0.1353: QuickFixCmdPost is not used consistently
Christian Brabandt <cb@256bit.org>
parents:
12692
diff
changeset
|
2864 exe 'silent! caddbuffer ' . bnum |
49e136457c66
patch 8.0.1353: QuickFixCmdPost is not used consistently
Christian Brabandt <cb@256bit.org>
parents:
12692
diff
changeset
|
2865 enew! |
28421
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2866 let l =<< trim END |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2867 precbuffer |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2868 postcbuffer |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2869 precgetbuffer |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2870 postcgetbuffer |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2871 precaddbuffer |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2872 postcaddbuffer |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2873 precbuffer |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2874 precgetbuffer |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2875 precaddbuffer |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2876 END |
12954
49e136457c66
patch 8.0.1353: QuickFixCmdPost is not used consistently
Christian Brabandt <cb@256bit.org>
parents:
12692
diff
changeset
|
2877 call assert_equal(l, g:acmds) |
49e136457c66
patch 8.0.1353: QuickFixCmdPost is not used consistently
Christian Brabandt <cb@256bit.org>
parents:
12692
diff
changeset
|
2878 |
49e136457c66
patch 8.0.1353: QuickFixCmdPost is not used consistently
Christian Brabandt <cb@256bit.org>
parents:
12692
diff
changeset
|
2879 call writefile(['Xtest:1:Line1'], 'Xtest') |
49e136457c66
patch 8.0.1353: QuickFixCmdPost is not used consistently
Christian Brabandt <cb@256bit.org>
parents:
12692
diff
changeset
|
2880 call writefile([], 'Xempty') |
49e136457c66
patch 8.0.1353: QuickFixCmdPost is not used consistently
Christian Brabandt <cb@256bit.org>
parents:
12692
diff
changeset
|
2881 let g:acmds = [] |
49e136457c66
patch 8.0.1353: QuickFixCmdPost is not used consistently
Christian Brabandt <cb@256bit.org>
parents:
12692
diff
changeset
|
2882 cfile Xtest |
49e136457c66
patch 8.0.1353: QuickFixCmdPost is not used consistently
Christian Brabandt <cb@256bit.org>
parents:
12692
diff
changeset
|
2883 caddfile Xtest |
49e136457c66
patch 8.0.1353: QuickFixCmdPost is not used consistently
Christian Brabandt <cb@256bit.org>
parents:
12692
diff
changeset
|
2884 cgetfile Xtest |
49e136457c66
patch 8.0.1353: QuickFixCmdPost is not used consistently
Christian Brabandt <cb@256bit.org>
parents:
12692
diff
changeset
|
2885 cfile Xempty |
49e136457c66
patch 8.0.1353: QuickFixCmdPost is not used consistently
Christian Brabandt <cb@256bit.org>
parents:
12692
diff
changeset
|
2886 caddfile Xempty |
49e136457c66
patch 8.0.1353: QuickFixCmdPost is not used consistently
Christian Brabandt <cb@256bit.org>
parents:
12692
diff
changeset
|
2887 cgetfile Xempty |
49e136457c66
patch 8.0.1353: QuickFixCmdPost is not used consistently
Christian Brabandt <cb@256bit.org>
parents:
12692
diff
changeset
|
2888 silent! cfile do_not_exist |
49e136457c66
patch 8.0.1353: QuickFixCmdPost is not used consistently
Christian Brabandt <cb@256bit.org>
parents:
12692
diff
changeset
|
2889 silent! caddfile do_not_exist |
49e136457c66
patch 8.0.1353: QuickFixCmdPost is not used consistently
Christian Brabandt <cb@256bit.org>
parents:
12692
diff
changeset
|
2890 silent! cgetfile do_not_exist |
28421
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2891 let l =<< trim END |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2892 precfile |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2893 postcfile |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2894 precaddfile |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2895 postcaddfile |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2896 precgetfile |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2897 postcgetfile |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2898 precfile |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2899 postcfile |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2900 precaddfile |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2901 postcaddfile |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2902 precgetfile |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2903 postcgetfile |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2904 precfile |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2905 postcfile |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2906 precaddfile |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2907 postcaddfile |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2908 precgetfile |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2909 postcgetfile |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2910 END |
10056
21f685af3fc1
commit https://github.com/vim/vim/commit/04c4ce650f9e533cd35b2aa6803f4d354d3ec7aa
Christian Brabandt <cb@256bit.org>
parents:
9982
diff
changeset
|
2911 call assert_equal(l, g:acmds) |
12954
49e136457c66
patch 8.0.1353: QuickFixCmdPost is not used consistently
Christian Brabandt <cb@256bit.org>
parents:
12692
diff
changeset
|
2912 |
49e136457c66
patch 8.0.1353: QuickFixCmdPost is not used consistently
Christian Brabandt <cb@256bit.org>
parents:
12692
diff
changeset
|
2913 let g:acmds = [] |
49e136457c66
patch 8.0.1353: QuickFixCmdPost is not used consistently
Christian Brabandt <cb@256bit.org>
parents:
12692
diff
changeset
|
2914 helpgrep quickfix |
49e136457c66
patch 8.0.1353: QuickFixCmdPost is not used consistently
Christian Brabandt <cb@256bit.org>
parents:
12692
diff
changeset
|
2915 silent! helpgrep non_existing_help_topic |
49e136457c66
patch 8.0.1353: QuickFixCmdPost is not used consistently
Christian Brabandt <cb@256bit.org>
parents:
12692
diff
changeset
|
2916 vimgrep test Xtest |
49e136457c66
patch 8.0.1353: QuickFixCmdPost is not used consistently
Christian Brabandt <cb@256bit.org>
parents:
12692
diff
changeset
|
2917 vimgrepadd test Xtest |
49e136457c66
patch 8.0.1353: QuickFixCmdPost is not used consistently
Christian Brabandt <cb@256bit.org>
parents:
12692
diff
changeset
|
2918 silent! vimgrep non_existing_test Xtest |
49e136457c66
patch 8.0.1353: QuickFixCmdPost is not used consistently
Christian Brabandt <cb@256bit.org>
parents:
12692
diff
changeset
|
2919 silent! vimgrepadd non_existing_test Xtest |
49e136457c66
patch 8.0.1353: QuickFixCmdPost is not used consistently
Christian Brabandt <cb@256bit.org>
parents:
12692
diff
changeset
|
2920 set makeprg= |
49e136457c66
patch 8.0.1353: QuickFixCmdPost is not used consistently
Christian Brabandt <cb@256bit.org>
parents:
12692
diff
changeset
|
2921 silent! make |
49e136457c66
patch 8.0.1353: QuickFixCmdPost is not used consistently
Christian Brabandt <cb@256bit.org>
parents:
12692
diff
changeset
|
2922 set makeprg& |
28421
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2923 let l =<< trim END |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2924 prehelpgrep |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2925 posthelpgrep |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2926 prehelpgrep |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2927 posthelpgrep |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2928 previmgrep |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2929 postvimgrep |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2930 previmgrepadd |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2931 postvimgrepadd |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2932 previmgrep |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2933 postvimgrep |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2934 previmgrepadd |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2935 postvimgrepadd |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2936 premake |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2937 postmake |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2938 END |
12954
49e136457c66
patch 8.0.1353: QuickFixCmdPost is not used consistently
Christian Brabandt <cb@256bit.org>
parents:
12692
diff
changeset
|
2939 call assert_equal(l, g:acmds) |
49e136457c66
patch 8.0.1353: QuickFixCmdPost is not used consistently
Christian Brabandt <cb@256bit.org>
parents:
12692
diff
changeset
|
2940 |
49e136457c66
patch 8.0.1353: QuickFixCmdPost is not used consistently
Christian Brabandt <cb@256bit.org>
parents:
12692
diff
changeset
|
2941 if has('unix') |
49e136457c66
patch 8.0.1353: QuickFixCmdPost is not used consistently
Christian Brabandt <cb@256bit.org>
parents:
12692
diff
changeset
|
2942 " Run this test only on Unix-like systems. The grepprg may not be set on |
49e136457c66
patch 8.0.1353: QuickFixCmdPost is not used consistently
Christian Brabandt <cb@256bit.org>
parents:
12692
diff
changeset
|
2943 " non-Unix systems. |
49e136457c66
patch 8.0.1353: QuickFixCmdPost is not used consistently
Christian Brabandt <cb@256bit.org>
parents:
12692
diff
changeset
|
2944 " The following lines are used for the grep test. Don't remove. |
49e136457c66
patch 8.0.1353: QuickFixCmdPost is not used consistently
Christian Brabandt <cb@256bit.org>
parents:
12692
diff
changeset
|
2945 " Grep_Autocmd_Text: Match 1 |
49e136457c66
patch 8.0.1353: QuickFixCmdPost is not used consistently
Christian Brabandt <cb@256bit.org>
parents:
12692
diff
changeset
|
2946 " GrepAdd_Autocmd_Text: Match 2 |
49e136457c66
patch 8.0.1353: QuickFixCmdPost is not used consistently
Christian Brabandt <cb@256bit.org>
parents:
12692
diff
changeset
|
2947 let g:acmds = [] |
49e136457c66
patch 8.0.1353: QuickFixCmdPost is not used consistently
Christian Brabandt <cb@256bit.org>
parents:
12692
diff
changeset
|
2948 silent grep Grep_Autocmd_Text test_quickfix.vim |
49e136457c66
patch 8.0.1353: QuickFixCmdPost is not used consistently
Christian Brabandt <cb@256bit.org>
parents:
12692
diff
changeset
|
2949 silent grepadd GrepAdd_Autocmd_Text test_quickfix.vim |
49e136457c66
patch 8.0.1353: QuickFixCmdPost is not used consistently
Christian Brabandt <cb@256bit.org>
parents:
12692
diff
changeset
|
2950 silent grep abc123def Xtest |
49e136457c66
patch 8.0.1353: QuickFixCmdPost is not used consistently
Christian Brabandt <cb@256bit.org>
parents:
12692
diff
changeset
|
2951 silent grepadd abc123def Xtest |
18740
d23bb26ba98f
patch 8.1.2360: quickfix test coverage can still be improved
Bram Moolenaar <Bram@vim.org>
parents:
18736
diff
changeset
|
2952 set grepprg=internal |
d23bb26ba98f
patch 8.1.2360: quickfix test coverage can still be improved
Bram Moolenaar <Bram@vim.org>
parents:
18736
diff
changeset
|
2953 silent grep Grep_Autocmd_Text test_quickfix.vim |
d23bb26ba98f
patch 8.1.2360: quickfix test coverage can still be improved
Bram Moolenaar <Bram@vim.org>
parents:
18736
diff
changeset
|
2954 silent grepadd GrepAdd_Autocmd_Text test_quickfix.vim |
d23bb26ba98f
patch 8.1.2360: quickfix test coverage can still be improved
Bram Moolenaar <Bram@vim.org>
parents:
18736
diff
changeset
|
2955 silent lgrep Grep_Autocmd_Text test_quickfix.vim |
d23bb26ba98f
patch 8.1.2360: quickfix test coverage can still be improved
Bram Moolenaar <Bram@vim.org>
parents:
18736
diff
changeset
|
2956 silent lgrepadd GrepAdd_Autocmd_Text test_quickfix.vim |
d23bb26ba98f
patch 8.1.2360: quickfix test coverage can still be improved
Bram Moolenaar <Bram@vim.org>
parents:
18736
diff
changeset
|
2957 set grepprg&vim |
28421
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2958 let l =<< trim END |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2959 pregrep |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2960 postgrep |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2961 pregrepadd |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2962 postgrepadd |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2963 pregrep |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2964 postgrep |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2965 pregrepadd |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2966 postgrepadd |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2967 pregrep |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2968 postgrep |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2969 pregrepadd |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2970 postgrepadd |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2971 prelgrep |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2972 postlgrep |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2973 prelgrepadd |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2974 postlgrepadd |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
2975 END |
12954
49e136457c66
patch 8.0.1353: QuickFixCmdPost is not used consistently
Christian Brabandt <cb@256bit.org>
parents:
12692
diff
changeset
|
2976 call assert_equal(l, g:acmds) |
49e136457c66
patch 8.0.1353: QuickFixCmdPost is not used consistently
Christian Brabandt <cb@256bit.org>
parents:
12692
diff
changeset
|
2977 endif |
49e136457c66
patch 8.0.1353: QuickFixCmdPost is not used consistently
Christian Brabandt <cb@256bit.org>
parents:
12692
diff
changeset
|
2978 |
49e136457c66
patch 8.0.1353: QuickFixCmdPost is not used consistently
Christian Brabandt <cb@256bit.org>
parents:
12692
diff
changeset
|
2979 call delete('Xtest') |
49e136457c66
patch 8.0.1353: QuickFixCmdPost is not used consistently
Christian Brabandt <cb@256bit.org>
parents:
12692
diff
changeset
|
2980 call delete('Xempty') |
13062
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13026
diff
changeset
|
2981 au! QuickFixCmdPre |
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13026
diff
changeset
|
2982 au! QuickFixCmdPost |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
2983 endfunc |
10346
d52d97bf675e
commit https://github.com/vim/vim/commit/21662be2211675824df1771c7f169948ede40c41
Christian Brabandt <cb@256bit.org>
parents:
10281
diff
changeset
|
2984 |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
2985 func Test_Autocmd_Exception() |
10346
d52d97bf675e
commit https://github.com/vim/vim/commit/21662be2211675824df1771c7f169948ede40c41
Christian Brabandt <cb@256bit.org>
parents:
10281
diff
changeset
|
2986 set efm=%m |
d52d97bf675e
commit https://github.com/vim/vim/commit/21662be2211675824df1771c7f169948ede40c41
Christian Brabandt <cb@256bit.org>
parents:
10281
diff
changeset
|
2987 lgetexpr '?' |
d52d97bf675e
commit https://github.com/vim/vim/commit/21662be2211675824df1771c7f169948ede40c41
Christian Brabandt <cb@256bit.org>
parents:
10281
diff
changeset
|
2988 |
d52d97bf675e
commit https://github.com/vim/vim/commit/21662be2211675824df1771c7f169948ede40c41
Christian Brabandt <cb@256bit.org>
parents:
10281
diff
changeset
|
2989 try |
d52d97bf675e
commit https://github.com/vim/vim/commit/21662be2211675824df1771c7f169948ede40c41
Christian Brabandt <cb@256bit.org>
parents:
10281
diff
changeset
|
2990 call DoesNotExit() |
d52d97bf675e
commit https://github.com/vim/vim/commit/21662be2211675824df1771c7f169948ede40c41
Christian Brabandt <cb@256bit.org>
parents:
10281
diff
changeset
|
2991 catch |
d52d97bf675e
commit https://github.com/vim/vim/commit/21662be2211675824df1771c7f169948ede40c41
Christian Brabandt <cb@256bit.org>
parents:
10281
diff
changeset
|
2992 lgetexpr '1' |
d52d97bf675e
commit https://github.com/vim/vim/commit/21662be2211675824df1771c7f169948ede40c41
Christian Brabandt <cb@256bit.org>
parents:
10281
diff
changeset
|
2993 finally |
d52d97bf675e
commit https://github.com/vim/vim/commit/21662be2211675824df1771c7f169948ede40c41
Christian Brabandt <cb@256bit.org>
parents:
10281
diff
changeset
|
2994 lgetexpr '1' |
d52d97bf675e
commit https://github.com/vim/vim/commit/21662be2211675824df1771c7f169948ede40c41
Christian Brabandt <cb@256bit.org>
parents:
10281
diff
changeset
|
2995 endtry |
d52d97bf675e
commit https://github.com/vim/vim/commit/21662be2211675824df1771c7f169948ede40c41
Christian Brabandt <cb@256bit.org>
parents:
10281
diff
changeset
|
2996 |
d52d97bf675e
commit https://github.com/vim/vim/commit/21662be2211675824df1771c7f169948ede40c41
Christian Brabandt <cb@256bit.org>
parents:
10281
diff
changeset
|
2997 call assert_equal('1', getloclist(0)[0].text) |
d52d97bf675e
commit https://github.com/vim/vim/commit/21662be2211675824df1771c7f169948ede40c41
Christian Brabandt <cb@256bit.org>
parents:
10281
diff
changeset
|
2998 |
d52d97bf675e
commit https://github.com/vim/vim/commit/21662be2211675824df1771c7f169948ede40c41
Christian Brabandt <cb@256bit.org>
parents:
10281
diff
changeset
|
2999 set efm&vim |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
3000 endfunc |
10367
4e4e116e3689
commit https://github.com/vim/vim/commit/63bed3d319b5d90765dbdae93a3579b6322d79fb
Christian Brabandt <cb@256bit.org>
parents:
10346
diff
changeset
|
3001 |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
3002 func Test_caddbuffer_wrong() |
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
3003 " This used to cause a memory access in freed memory. |
10367
4e4e116e3689
commit https://github.com/vim/vim/commit/63bed3d319b5d90765dbdae93a3579b6322d79fb
Christian Brabandt <cb@256bit.org>
parents:
10346
diff
changeset
|
3004 let save_efm = &efm |
4e4e116e3689
commit https://github.com/vim/vim/commit/63bed3d319b5d90765dbdae93a3579b6322d79fb
Christian Brabandt <cb@256bit.org>
parents:
10346
diff
changeset
|
3005 set efm=%EEEE%m,%WWWW,%+CCCC%>%#,%GGGG%.# |
4e4e116e3689
commit https://github.com/vim/vim/commit/63bed3d319b5d90765dbdae93a3579b6322d79fb
Christian Brabandt <cb@256bit.org>
parents:
10346
diff
changeset
|
3006 cgetexpr ['WWWW', 'EEEE', 'CCCC'] |
4e4e116e3689
commit https://github.com/vim/vim/commit/63bed3d319b5d90765dbdae93a3579b6322d79fb
Christian Brabandt <cb@256bit.org>
parents:
10346
diff
changeset
|
3007 let &efm = save_efm |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
3008 caddbuffer |
10367
4e4e116e3689
commit https://github.com/vim/vim/commit/63bed3d319b5d90765dbdae93a3579b6322d79fb
Christian Brabandt <cb@256bit.org>
parents:
10346
diff
changeset
|
3009 bwipe! |
4e4e116e3689
commit https://github.com/vim/vim/commit/63bed3d319b5d90765dbdae93a3579b6322d79fb
Christian Brabandt <cb@256bit.org>
parents:
10346
diff
changeset
|
3010 endfunc |
10369
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
3011 |
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
3012 func Test_caddexpr_wrong() |
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
3013 " This used to cause a memory access in freed memory. |
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
3014 cbuffer |
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
3015 cbuffer |
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
3016 copen |
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
3017 let save_efm = &efm |
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
3018 set efm=% |
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
3019 call assert_fails('caddexpr ""', 'E376:') |
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
3020 let &efm = save_efm |
4e5b307638cb
commit https://github.com/vim/vim/commit/2b946c9f9b0e0fd805fb8f3e4c16e0a68ae13129
Christian Brabandt <cb@256bit.org>
parents:
10367
diff
changeset
|
3021 endfunc |
10379
73e2a7abe2a3
commit https://github.com/vim/vim/commit/7618e00d3b8bfe064cfc524640d754607361f9df
Christian Brabandt <cb@256bit.org>
parents:
10369
diff
changeset
|
3022 |
73e2a7abe2a3
commit https://github.com/vim/vim/commit/7618e00d3b8bfe064cfc524640d754607361f9df
Christian Brabandt <cb@256bit.org>
parents:
10369
diff
changeset
|
3023 func Test_dirstack_cleanup() |
73e2a7abe2a3
commit https://github.com/vim/vim/commit/7618e00d3b8bfe064cfc524640d754607361f9df
Christian Brabandt <cb@256bit.org>
parents:
10369
diff
changeset
|
3024 " This used to cause a memory access in freed memory. |
73e2a7abe2a3
commit https://github.com/vim/vim/commit/7618e00d3b8bfe064cfc524640d754607361f9df
Christian Brabandt <cb@256bit.org>
parents:
10369
diff
changeset
|
3025 let save_efm = &efm |
73e2a7abe2a3
commit https://github.com/vim/vim/commit/7618e00d3b8bfe064cfc524640d754607361f9df
Christian Brabandt <cb@256bit.org>
parents:
10369
diff
changeset
|
3026 lexpr '0' |
73e2a7abe2a3
commit https://github.com/vim/vim/commit/7618e00d3b8bfe064cfc524640d754607361f9df
Christian Brabandt <cb@256bit.org>
parents:
10369
diff
changeset
|
3027 lopen |
73e2a7abe2a3
commit https://github.com/vim/vim/commit/7618e00d3b8bfe064cfc524640d754607361f9df
Christian Brabandt <cb@256bit.org>
parents:
10369
diff
changeset
|
3028 fun X(c) |
73e2a7abe2a3
commit https://github.com/vim/vim/commit/7618e00d3b8bfe064cfc524640d754607361f9df
Christian Brabandt <cb@256bit.org>
parents:
10369
diff
changeset
|
3029 let save_efm=&efm |
73e2a7abe2a3
commit https://github.com/vim/vim/commit/7618e00d3b8bfe064cfc524640d754607361f9df
Christian Brabandt <cb@256bit.org>
parents:
10369
diff
changeset
|
3030 set efm=%D%f |
73e2a7abe2a3
commit https://github.com/vim/vim/commit/7618e00d3b8bfe064cfc524640d754607361f9df
Christian Brabandt <cb@256bit.org>
parents:
10369
diff
changeset
|
3031 if a:c == 'c' |
73e2a7abe2a3
commit https://github.com/vim/vim/commit/7618e00d3b8bfe064cfc524640d754607361f9df
Christian Brabandt <cb@256bit.org>
parents:
10369
diff
changeset
|
3032 caddexpr '::' |
73e2a7abe2a3
commit https://github.com/vim/vim/commit/7618e00d3b8bfe064cfc524640d754607361f9df
Christian Brabandt <cb@256bit.org>
parents:
10369
diff
changeset
|
3033 else |
73e2a7abe2a3
commit https://github.com/vim/vim/commit/7618e00d3b8bfe064cfc524640d754607361f9df
Christian Brabandt <cb@256bit.org>
parents:
10369
diff
changeset
|
3034 laddexpr ':0:0' |
73e2a7abe2a3
commit https://github.com/vim/vim/commit/7618e00d3b8bfe064cfc524640d754607361f9df
Christian Brabandt <cb@256bit.org>
parents:
10369
diff
changeset
|
3035 endif |
73e2a7abe2a3
commit https://github.com/vim/vim/commit/7618e00d3b8bfe064cfc524640d754607361f9df
Christian Brabandt <cb@256bit.org>
parents:
10369
diff
changeset
|
3036 let &efm=save_efm |
73e2a7abe2a3
commit https://github.com/vim/vim/commit/7618e00d3b8bfe064cfc524640d754607361f9df
Christian Brabandt <cb@256bit.org>
parents:
10369
diff
changeset
|
3037 endfun |
73e2a7abe2a3
commit https://github.com/vim/vim/commit/7618e00d3b8bfe064cfc524640d754607361f9df
Christian Brabandt <cb@256bit.org>
parents:
10369
diff
changeset
|
3038 call X('c') |
73e2a7abe2a3
commit https://github.com/vim/vim/commit/7618e00d3b8bfe064cfc524640d754607361f9df
Christian Brabandt <cb@256bit.org>
parents:
10369
diff
changeset
|
3039 call X('l') |
73e2a7abe2a3
commit https://github.com/vim/vim/commit/7618e00d3b8bfe064cfc524640d754607361f9df
Christian Brabandt <cb@256bit.org>
parents:
10369
diff
changeset
|
3040 call setqflist([], 'r') |
73e2a7abe2a3
commit https://github.com/vim/vim/commit/7618e00d3b8bfe064cfc524640d754607361f9df
Christian Brabandt <cb@256bit.org>
parents:
10369
diff
changeset
|
3041 caddbuffer |
73e2a7abe2a3
commit https://github.com/vim/vim/commit/7618e00d3b8bfe064cfc524640d754607361f9df
Christian Brabandt <cb@256bit.org>
parents:
10369
diff
changeset
|
3042 let &efm = save_efm |
73e2a7abe2a3
commit https://github.com/vim/vim/commit/7618e00d3b8bfe064cfc524640d754607361f9df
Christian Brabandt <cb@256bit.org>
parents:
10369
diff
changeset
|
3043 endfunc |
11030
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
3044 |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
3045 " Tests for jumping to entries from the location list window and quickfix |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
3046 " window |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
3047 func Test_cwindow_jump() |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
3048 set efm=%f%%%l%%%m |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
3049 lgetexpr ["F1%10%Line 10", "F2%20%Line 20", "F3%30%Line 30"] |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
3050 lopen | only |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
3051 lfirst |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
3052 call assert_true(winnr('$') == 2) |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
3053 call assert_true(winnr() == 1) |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
3054 " Location list for the new window should be set |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
3055 call assert_true(getloclist(0)[2].text == 'Line 30') |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
3056 |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
3057 " Open a scratch buffer |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
3058 " Open a new window and create a location list |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
3059 " Open the location list window and close the other window |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
3060 " Jump to an entry. |
15770
77e97f159554
patch 8.1.0892: failure when closing a window when location list is in use
Bram Moolenaar <Bram@vim.org>
parents:
15740
diff
changeset
|
3061 " Should create a new window and jump to the entry. The scratch buffer |
11030
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
3062 " should not be used. |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
3063 enew | only |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
3064 set buftype=nofile |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
3065 below new |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
3066 lgetexpr ["F1%10%Line 10", "F2%20%Line 20", "F3%30%Line 30"] |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
3067 lopen |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
3068 2wincmd c |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
3069 lnext |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
3070 call assert_true(winnr('$') == 3) |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
3071 call assert_true(winnr() == 2) |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
3072 |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
3073 " Open two windows with two different location lists |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
3074 " Open the location list window and close the previous window |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
3075 " Jump to an entry in the location list window |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
3076 " Should open the file in the first window and not set the location list. |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
3077 enew | only |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
3078 lgetexpr ["F1%5%Line 5"] |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
3079 below new |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
3080 lgetexpr ["F1%10%Line 10", "F2%20%Line 20", "F3%30%Line 30"] |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
3081 lopen |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
3082 2wincmd c |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
3083 lnext |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
3084 call assert_true(winnr() == 1) |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
3085 call assert_true(getloclist(0)[0].text == 'Line 5') |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
3086 |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
3087 enew | only |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
3088 cgetexpr ["F1%10%Line 10", "F2%20%Line 20", "F3%30%Line 30"] |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
3089 copen |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
3090 cnext |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
3091 call assert_true(winnr('$') == 2) |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
3092 call assert_true(winnr() == 1) |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
3093 |
18656
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
3094 " open the quickfix buffer in two windows and jump to an entry. Should open |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
3095 " the file in the first quickfix window. |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
3096 enew | only |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
3097 copen |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
3098 let bnum = bufnr('') |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
3099 exe 'sbuffer ' . bnum |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
3100 wincmd b |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
3101 cfirst |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
3102 call assert_equal(2, winnr()) |
20978
2c3e7a6bd6c6
patch 8.2.1040: not enough testing for movement commands
Bram Moolenaar <Bram@vim.org>
parents:
20814
diff
changeset
|
3103 call assert_equal('F1', @%) |
18656
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
3104 enew | only |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
3105 exe 'sb' bnum |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
3106 exe 'botright sb' bnum |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
3107 wincmd t |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
3108 clast |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
3109 call assert_equal(2, winnr()) |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
3110 call assert_equal('quickfix', getwinvar(1, '&buftype')) |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
3111 call assert_equal('quickfix', getwinvar(3, '&buftype')) |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
3112 |
19195
2ef19eed524a
patch 8.2.0156: various typos in source files and tests
Bram Moolenaar <Bram@vim.org>
parents:
19069
diff
changeset
|
3113 " Jumping to a file from the location list window should find a usable |
18740
d23bb26ba98f
patch 8.1.2360: quickfix test coverage can still be improved
Bram Moolenaar <Bram@vim.org>
parents:
18736
diff
changeset
|
3114 " window by wrapping around the window list. |
d23bb26ba98f
patch 8.1.2360: quickfix test coverage can still be improved
Bram Moolenaar <Bram@vim.org>
parents:
18736
diff
changeset
|
3115 enew | only |
d23bb26ba98f
patch 8.1.2360: quickfix test coverage can still be improved
Bram Moolenaar <Bram@vim.org>
parents:
18736
diff
changeset
|
3116 call setloclist(0, [], 'f') |
d23bb26ba98f
patch 8.1.2360: quickfix test coverage can still be improved
Bram Moolenaar <Bram@vim.org>
parents:
18736
diff
changeset
|
3117 new | new |
d23bb26ba98f
patch 8.1.2360: quickfix test coverage can still be improved
Bram Moolenaar <Bram@vim.org>
parents:
18736
diff
changeset
|
3118 lgetexpr ["F1%10%Line 10", "F2%20%Line 20", "F3%30%Line 30"] |
d23bb26ba98f
patch 8.1.2360: quickfix test coverage can still be improved
Bram Moolenaar <Bram@vim.org>
parents:
18736
diff
changeset
|
3119 lopen |
d23bb26ba98f
patch 8.1.2360: quickfix test coverage can still be improved
Bram Moolenaar <Bram@vim.org>
parents:
18736
diff
changeset
|
3120 1close |
d23bb26ba98f
patch 8.1.2360: quickfix test coverage can still be improved
Bram Moolenaar <Bram@vim.org>
parents:
18736
diff
changeset
|
3121 call assert_equal(0, getloclist(3, {'id' : 0}).id) |
d23bb26ba98f
patch 8.1.2360: quickfix test coverage can still be improved
Bram Moolenaar <Bram@vim.org>
parents:
18736
diff
changeset
|
3122 lnext |
d23bb26ba98f
patch 8.1.2360: quickfix test coverage can still be improved
Bram Moolenaar <Bram@vim.org>
parents:
18736
diff
changeset
|
3123 call assert_equal(3, winnr()) |
d23bb26ba98f
patch 8.1.2360: quickfix test coverage can still be improved
Bram Moolenaar <Bram@vim.org>
parents:
18736
diff
changeset
|
3124 call assert_equal(getloclist(1, {'id' : 0}).id, getloclist(3, {'id' : 0}).id) |
d23bb26ba98f
patch 8.1.2360: quickfix test coverage can still be improved
Bram Moolenaar <Bram@vim.org>
parents:
18736
diff
changeset
|
3125 |
11030
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
3126 enew | only |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
3127 set efm&vim |
9d40a98f0834
patch 8.0.0404: not enough testing for quickfix
Christian Brabandt <cb@256bit.org>
parents:
10379
diff
changeset
|
3128 endfunc |
11195
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
3129 |
18090
a6c74689fb97
patch 8.1.2040: no highlighting of current line in quickfix window
Bram Moolenaar <Bram@vim.org>
parents:
18031
diff
changeset
|
3130 func Test_cwindow_highlight() |
a6c74689fb97
patch 8.1.2040: no highlighting of current line in quickfix window
Bram Moolenaar <Bram@vim.org>
parents:
18031
diff
changeset
|
3131 CheckScreendump |
a6c74689fb97
patch 8.1.2040: no highlighting of current line in quickfix window
Bram Moolenaar <Bram@vim.org>
parents:
18031
diff
changeset
|
3132 |
a6c74689fb97
patch 8.1.2040: no highlighting of current line in quickfix window
Bram Moolenaar <Bram@vim.org>
parents:
18031
diff
changeset
|
3133 let lines =<< trim END |
28421
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
3134 call setline(1, ['some', 'text', 'with', 'matches']) |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
3135 write XCwindow |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
3136 vimgrep e XCwindow |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
3137 redraw |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
3138 cwindow 4 |
18090
a6c74689fb97
patch 8.1.2040: no highlighting of current line in quickfix window
Bram Moolenaar <Bram@vim.org>
parents:
18031
diff
changeset
|
3139 END |
a6c74689fb97
patch 8.1.2040: no highlighting of current line in quickfix window
Bram Moolenaar <Bram@vim.org>
parents:
18031
diff
changeset
|
3140 call writefile(lines, 'XtestCwindow') |
a6c74689fb97
patch 8.1.2040: no highlighting of current line in quickfix window
Bram Moolenaar <Bram@vim.org>
parents:
18031
diff
changeset
|
3141 let buf = RunVimInTerminal('-S XtestCwindow', #{rows: 12}) |
a6c74689fb97
patch 8.1.2040: no highlighting of current line in quickfix window
Bram Moolenaar <Bram@vim.org>
parents:
18031
diff
changeset
|
3142 call VerifyScreenDump(buf, 'Test_quickfix_cwindow_1', {}) |
a6c74689fb97
patch 8.1.2040: no highlighting of current line in quickfix window
Bram Moolenaar <Bram@vim.org>
parents:
18031
diff
changeset
|
3143 |
a6c74689fb97
patch 8.1.2040: no highlighting of current line in quickfix window
Bram Moolenaar <Bram@vim.org>
parents:
18031
diff
changeset
|
3144 call term_sendkeys(buf, ":cnext\<CR>") |
a6c74689fb97
patch 8.1.2040: no highlighting of current line in quickfix window
Bram Moolenaar <Bram@vim.org>
parents:
18031
diff
changeset
|
3145 call VerifyScreenDump(buf, 'Test_quickfix_cwindow_2', {}) |
a6c74689fb97
patch 8.1.2040: no highlighting of current line in quickfix window
Bram Moolenaar <Bram@vim.org>
parents:
18031
diff
changeset
|
3146 |
29379
4ad168b282bd
patch 9.0.0032: in the quickfix window 'cursorline' overrules QuickFixLine
Bram Moolenaar <Bram@vim.org>
parents:
29320
diff
changeset
|
3147 call term_sendkeys(buf, "\<C-W>j:set cursorline\<CR>") |
4ad168b282bd
patch 9.0.0032: in the quickfix window 'cursorline' overrules QuickFixLine
Bram Moolenaar <Bram@vim.org>
parents:
29320
diff
changeset
|
3148 call VerifyScreenDump(buf, 'Test_quickfix_cwindow_3', {}) |
4ad168b282bd
patch 9.0.0032: in the quickfix window 'cursorline' overrules QuickFixLine
Bram Moolenaar <Bram@vim.org>
parents:
29320
diff
changeset
|
3149 |
4ad168b282bd
patch 9.0.0032: in the quickfix window 'cursorline' overrules QuickFixLine
Bram Moolenaar <Bram@vim.org>
parents:
29320
diff
changeset
|
3150 call term_sendkeys(buf, "j") |
4ad168b282bd
patch 9.0.0032: in the quickfix window 'cursorline' overrules QuickFixLine
Bram Moolenaar <Bram@vim.org>
parents:
29320
diff
changeset
|
3151 call VerifyScreenDump(buf, 'Test_quickfix_cwindow_4', {}) |
4ad168b282bd
patch 9.0.0032: in the quickfix window 'cursorline' overrules QuickFixLine
Bram Moolenaar <Bram@vim.org>
parents:
29320
diff
changeset
|
3152 |
18090
a6c74689fb97
patch 8.1.2040: no highlighting of current line in quickfix window
Bram Moolenaar <Bram@vim.org>
parents:
18031
diff
changeset
|
3153 " clean up |
a6c74689fb97
patch 8.1.2040: no highlighting of current line in quickfix window
Bram Moolenaar <Bram@vim.org>
parents:
18031
diff
changeset
|
3154 call StopVimInTerminal(buf) |
a6c74689fb97
patch 8.1.2040: no highlighting of current line in quickfix window
Bram Moolenaar <Bram@vim.org>
parents:
18031
diff
changeset
|
3155 call delete('XtestCwindow') |
a6c74689fb97
patch 8.1.2040: no highlighting of current line in quickfix window
Bram Moolenaar <Bram@vim.org>
parents:
18031
diff
changeset
|
3156 call delete('XCwindow') |
a6c74689fb97
patch 8.1.2040: no highlighting of current line in quickfix window
Bram Moolenaar <Bram@vim.org>
parents:
18031
diff
changeset
|
3157 endfunc |
a6c74689fb97
patch 8.1.2040: no highlighting of current line in quickfix window
Bram Moolenaar <Bram@vim.org>
parents:
18031
diff
changeset
|
3158 |
11195
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
3159 func XvimgrepTests(cchar) |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
3160 call s:setup_commands(a:cchar) |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
3161 |
28421
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
3162 let lines =<< trim END |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
3163 Editor:VIM vim |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
3164 Editor:Emacs EmAcS |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
3165 Editor:Notepad NOTEPAD |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
3166 END |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
3167 call writefile(lines, 'Xtestfile1') |
26211
485c7c4afeb7
patch 8.2.3637: typos in test files
Bram Moolenaar <Bram@vim.org>
parents:
26026
diff
changeset
|
3168 call writefile(['Linux', 'macOS', 'MS-Windows'], 'Xtestfile2') |
11195
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
3169 |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
3170 " Error cases |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
3171 call assert_fails('Xvimgrep /abc *', 'E682:') |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
3172 |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
3173 let @/='' |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
3174 call assert_fails('Xvimgrep // *', 'E35:') |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
3175 |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
3176 call assert_fails('Xvimgrep abc', 'E683:') |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
3177 call assert_fails('Xvimgrep a1b2c3 Xtestfile1', 'E480:') |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
3178 call assert_fails('Xvimgrep pat Xa1b2c3', 'E480:') |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
3179 |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
3180 Xexpr "" |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
3181 Xvimgrepadd Notepad Xtestfile1 |
26211
485c7c4afeb7
patch 8.2.3637: typos in test files
Bram Moolenaar <Bram@vim.org>
parents:
26026
diff
changeset
|
3182 Xvimgrepadd macOS Xtestfile2 |
11195
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
3183 let l = g:Xgetlist() |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
3184 call assert_equal(2, len(l)) |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
3185 call assert_equal('Editor:Notepad NOTEPAD', l[0].text) |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
3186 |
18656
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
3187 10Xvimgrep #\cvim#g Xtestfile? |
11195
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
3188 let l = g:Xgetlist() |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
3189 call assert_equal(2, len(l)) |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
3190 call assert_equal(8, l[0].col) |
24964
f4aa891a5ab8
patch 8.2.3019: location list only has the start position.
Bram Moolenaar <Bram@vim.org>
parents:
24962
diff
changeset
|
3191 call assert_equal(11, l[0].end_col) |
11195
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
3192 call assert_equal(12, l[1].col) |
24964
f4aa891a5ab8
patch 8.2.3019: location list only has the start position.
Bram Moolenaar <Bram@vim.org>
parents:
24962
diff
changeset
|
3193 call assert_equal(15, l[1].end_col) |
11195
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
3194 |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
3195 1Xvimgrep ?Editor? Xtestfile* |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
3196 let l = g:Xgetlist() |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
3197 call assert_equal(1, len(l)) |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
3198 call assert_equal('Editor:VIM vim', l[0].text) |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
3199 |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
3200 edit +3 Xtestfile2 |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
3201 Xvimgrep +\cemacs+j Xtestfile1 |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
3202 let l = g:Xgetlist() |
20978
2c3e7a6bd6c6
patch 8.2.1040: not enough testing for movement commands
Bram Moolenaar <Bram@vim.org>
parents:
20814
diff
changeset
|
3203 call assert_equal('Xtestfile2', @%) |
11195
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
3204 call assert_equal('Editor:Emacs EmAcS', l[0].text) |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
3205 |
13764
7bba231fdddc
patch 8.0.1754: ex_helpgrep() is too long
Christian Brabandt <cb@256bit.org>
parents:
13760
diff
changeset
|
3206 " Test for unloading a buffer after vimgrep searched the buffer |
7bba231fdddc
patch 8.0.1754: ex_helpgrep() is too long
Christian Brabandt <cb@256bit.org>
parents:
13760
diff
changeset
|
3207 %bwipe |
7bba231fdddc
patch 8.0.1754: ex_helpgrep() is too long
Christian Brabandt <cb@256bit.org>
parents:
13760
diff
changeset
|
3208 Xvimgrep /Editor/j Xtestfile* |
7bba231fdddc
patch 8.0.1754: ex_helpgrep() is too long
Christian Brabandt <cb@256bit.org>
parents:
13760
diff
changeset
|
3209 call assert_equal(0, getbufinfo('Xtestfile1')[0].loaded) |
7bba231fdddc
patch 8.0.1754: ex_helpgrep() is too long
Christian Brabandt <cb@256bit.org>
parents:
13760
diff
changeset
|
3210 call assert_equal([], getbufinfo('Xtestfile2')) |
7bba231fdddc
patch 8.0.1754: ex_helpgrep() is too long
Christian Brabandt <cb@256bit.org>
parents:
13760
diff
changeset
|
3211 |
27873
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
3212 " Test for opening the dummy buffer used by vimgrep in a window. The new |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
3213 " window should be closed |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
3214 %bw! |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
3215 augroup QF_Test |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
3216 au! |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
3217 autocmd BufReadPre * exe "sb " .. expand("<abuf>") |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
3218 augroup END |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
3219 call assert_fails("Xvimgrep /sublime/ Xtestfile1", 'E480:') |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
3220 call assert_equal(1, winnr('$')) |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
3221 augroup QF_Test |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
3222 au! |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
3223 augroup END |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
3224 |
11195
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
3225 call delete('Xtestfile1') |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
3226 call delete('Xtestfile2') |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
3227 endfunc |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
3228 |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
3229 " Tests for the :vimgrep command |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
3230 func Test_vimgrep() |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
3231 call XvimgrepTests('c') |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
3232 call XvimgrepTests('l') |
13c660bd07b2
patch 8.0.0484: :lhelpgrep does not fail after a successful one
Christian Brabandt <cb@256bit.org>
parents:
11030
diff
changeset
|
3233 endfunc |
11301
cc8ece2aa389
patch 8.0.0536: quickfix window not updated when freeing quickfix stack
Christian Brabandt <cb@256bit.org>
parents:
11263
diff
changeset
|
3234 |
23778
8b682f6f3709
patch 8.2.2430: :vimgrep expands wildcards twice
Bram Moolenaar <Bram@vim.org>
parents:
23758
diff
changeset
|
3235 func Test_vimgrep_wildcards_expanded_once() |
8b682f6f3709
patch 8.2.2430: :vimgrep expands wildcards twice
Bram Moolenaar <Bram@vim.org>
parents:
23758
diff
changeset
|
3236 new X[id-01] file.txt |
8b682f6f3709
patch 8.2.2430: :vimgrep expands wildcards twice
Bram Moolenaar <Bram@vim.org>
parents:
23758
diff
changeset
|
3237 call setline(1, 'some text to search for') |
8b682f6f3709
patch 8.2.2430: :vimgrep expands wildcards twice
Bram Moolenaar <Bram@vim.org>
parents:
23758
diff
changeset
|
3238 vimgrep text % |
8b682f6f3709
patch 8.2.2430: :vimgrep expands wildcards twice
Bram Moolenaar <Bram@vim.org>
parents:
23758
diff
changeset
|
3239 bwipe! |
8b682f6f3709
patch 8.2.2430: :vimgrep expands wildcards twice
Bram Moolenaar <Bram@vim.org>
parents:
23758
diff
changeset
|
3240 endfunc |
8b682f6f3709
patch 8.2.2430: :vimgrep expands wildcards twice
Bram Moolenaar <Bram@vim.org>
parents:
23758
diff
changeset
|
3241 |
14976
676db1b7fc35
patch 8.1.0499: :2vimgrep causes an ml_get error
Bram Moolenaar <Bram@vim.org>
parents:
14956
diff
changeset
|
3242 " Test for incsearch highlighting of the :vimgrep pattern |
676db1b7fc35
patch 8.1.0499: :2vimgrep causes an ml_get error
Bram Moolenaar <Bram@vim.org>
parents:
14956
diff
changeset
|
3243 " This test used to cause "E315: ml_get: invalid lnum" errors. |
676db1b7fc35
patch 8.1.0499: :2vimgrep causes an ml_get error
Bram Moolenaar <Bram@vim.org>
parents:
14956
diff
changeset
|
3244 func Test_vimgrep_incsearch() |
676db1b7fc35
patch 8.1.0499: :2vimgrep causes an ml_get error
Bram Moolenaar <Bram@vim.org>
parents:
14956
diff
changeset
|
3245 enew |
676db1b7fc35
patch 8.1.0499: :2vimgrep causes an ml_get error
Bram Moolenaar <Bram@vim.org>
parents:
14956
diff
changeset
|
3246 set incsearch |
676db1b7fc35
patch 8.1.0499: :2vimgrep causes an ml_get error
Bram Moolenaar <Bram@vim.org>
parents:
14956
diff
changeset
|
3247 call test_override("char_avail", 1) |
676db1b7fc35
patch 8.1.0499: :2vimgrep causes an ml_get error
Bram Moolenaar <Bram@vim.org>
parents:
14956
diff
changeset
|
3248 |
676db1b7fc35
patch 8.1.0499: :2vimgrep causes an ml_get error
Bram Moolenaar <Bram@vim.org>
parents:
14956
diff
changeset
|
3249 call feedkeys(":2vimgrep assert test_quickfix.vim test_cdo.vim\<CR>", "ntx") |
676db1b7fc35
patch 8.1.0499: :2vimgrep causes an ml_get error
Bram Moolenaar <Bram@vim.org>
parents:
14956
diff
changeset
|
3250 let l = getqflist() |
676db1b7fc35
patch 8.1.0499: :2vimgrep causes an ml_get error
Bram Moolenaar <Bram@vim.org>
parents:
14956
diff
changeset
|
3251 call assert_equal(2, len(l)) |
676db1b7fc35
patch 8.1.0499: :2vimgrep causes an ml_get error
Bram Moolenaar <Bram@vim.org>
parents:
14956
diff
changeset
|
3252 |
676db1b7fc35
patch 8.1.0499: :2vimgrep causes an ml_get error
Bram Moolenaar <Bram@vim.org>
parents:
14956
diff
changeset
|
3253 call test_override("ALL", 0) |
676db1b7fc35
patch 8.1.0499: :2vimgrep causes an ml_get error
Bram Moolenaar <Bram@vim.org>
parents:
14956
diff
changeset
|
3254 set noincsearch |
676db1b7fc35
patch 8.1.0499: :2vimgrep causes an ml_get error
Bram Moolenaar <Bram@vim.org>
parents:
14956
diff
changeset
|
3255 endfunc |
676db1b7fc35
patch 8.1.0499: :2vimgrep causes an ml_get error
Bram Moolenaar <Bram@vim.org>
parents:
14956
diff
changeset
|
3256 |
19370
02111977dd05
patch 8.2.0243: insufficient code coverage for ex_docmd.c functions
Bram Moolenaar <Bram@vim.org>
parents:
19366
diff
changeset
|
3257 " Test vimgrep with the last search pattern not set |
02111977dd05
patch 8.2.0243: insufficient code coverage for ex_docmd.c functions
Bram Moolenaar <Bram@vim.org>
parents:
19366
diff
changeset
|
3258 func Test_vimgrep_with_no_last_search_pat() |
02111977dd05
patch 8.2.0243: insufficient code coverage for ex_docmd.c functions
Bram Moolenaar <Bram@vim.org>
parents:
19366
diff
changeset
|
3259 let lines =<< trim [SCRIPT] |
02111977dd05
patch 8.2.0243: insufficient code coverage for ex_docmd.c functions
Bram Moolenaar <Bram@vim.org>
parents:
19366
diff
changeset
|
3260 call assert_fails('vimgrep // *', 'E35:') |
02111977dd05
patch 8.2.0243: insufficient code coverage for ex_docmd.c functions
Bram Moolenaar <Bram@vim.org>
parents:
19366
diff
changeset
|
3261 call writefile(v:errors, 'Xresult') |
02111977dd05
patch 8.2.0243: insufficient code coverage for ex_docmd.c functions
Bram Moolenaar <Bram@vim.org>
parents:
19366
diff
changeset
|
3262 qall! |
02111977dd05
patch 8.2.0243: insufficient code coverage for ex_docmd.c functions
Bram Moolenaar <Bram@vim.org>
parents:
19366
diff
changeset
|
3263 [SCRIPT] |
02111977dd05
patch 8.2.0243: insufficient code coverage for ex_docmd.c functions
Bram Moolenaar <Bram@vim.org>
parents:
19366
diff
changeset
|
3264 call writefile(lines, 'Xscript') |
02111977dd05
patch 8.2.0243: insufficient code coverage for ex_docmd.c functions
Bram Moolenaar <Bram@vim.org>
parents:
19366
diff
changeset
|
3265 if RunVim([], [], '--clean -S Xscript') |
02111977dd05
patch 8.2.0243: insufficient code coverage for ex_docmd.c functions
Bram Moolenaar <Bram@vim.org>
parents:
19366
diff
changeset
|
3266 call assert_equal([], readfile('Xresult')) |
02111977dd05
patch 8.2.0243: insufficient code coverage for ex_docmd.c functions
Bram Moolenaar <Bram@vim.org>
parents:
19366
diff
changeset
|
3267 endif |
02111977dd05
patch 8.2.0243: insufficient code coverage for ex_docmd.c functions
Bram Moolenaar <Bram@vim.org>
parents:
19366
diff
changeset
|
3268 call delete('Xscript') |
02111977dd05
patch 8.2.0243: insufficient code coverage for ex_docmd.c functions
Bram Moolenaar <Bram@vim.org>
parents:
19366
diff
changeset
|
3269 call delete('Xresult') |
02111977dd05
patch 8.2.0243: insufficient code coverage for ex_docmd.c functions
Bram Moolenaar <Bram@vim.org>
parents:
19366
diff
changeset
|
3270 endfunc |
02111977dd05
patch 8.2.0243: insufficient code coverage for ex_docmd.c functions
Bram Moolenaar <Bram@vim.org>
parents:
19366
diff
changeset
|
3271 |
22015
d8065205ea82
patch 8.2.1557: crash in :vimgrep when started as "vim -n"
Bram Moolenaar <Bram@vim.org>
parents:
21765
diff
changeset
|
3272 " Test vimgrep without swap file |
d8065205ea82
patch 8.2.1557: crash in :vimgrep when started as "vim -n"
Bram Moolenaar <Bram@vim.org>
parents:
21765
diff
changeset
|
3273 func Test_vimgrep_without_swap_file() |
d8065205ea82
patch 8.2.1557: crash in :vimgrep when started as "vim -n"
Bram Moolenaar <Bram@vim.org>
parents:
21765
diff
changeset
|
3274 let lines =<< trim [SCRIPT] |
d8065205ea82
patch 8.2.1557: crash in :vimgrep when started as "vim -n"
Bram Moolenaar <Bram@vim.org>
parents:
21765
diff
changeset
|
3275 vimgrep grep test_c* |
d8065205ea82
patch 8.2.1557: crash in :vimgrep when started as "vim -n"
Bram Moolenaar <Bram@vim.org>
parents:
21765
diff
changeset
|
3276 call writefile(['done'], 'Xresult') |
d8065205ea82
patch 8.2.1557: crash in :vimgrep when started as "vim -n"
Bram Moolenaar <Bram@vim.org>
parents:
21765
diff
changeset
|
3277 qall! |
d8065205ea82
patch 8.2.1557: crash in :vimgrep when started as "vim -n"
Bram Moolenaar <Bram@vim.org>
parents:
21765
diff
changeset
|
3278 [SCRIPT] |
d8065205ea82
patch 8.2.1557: crash in :vimgrep when started as "vim -n"
Bram Moolenaar <Bram@vim.org>
parents:
21765
diff
changeset
|
3279 call writefile(lines, 'Xscript') |
d8065205ea82
patch 8.2.1557: crash in :vimgrep when started as "vim -n"
Bram Moolenaar <Bram@vim.org>
parents:
21765
diff
changeset
|
3280 if RunVim([], [], '--clean -n -S Xscript Xscript') |
d8065205ea82
patch 8.2.1557: crash in :vimgrep when started as "vim -n"
Bram Moolenaar <Bram@vim.org>
parents:
21765
diff
changeset
|
3281 call assert_equal(['done'], readfile('Xresult')) |
d8065205ea82
patch 8.2.1557: crash in :vimgrep when started as "vim -n"
Bram Moolenaar <Bram@vim.org>
parents:
21765
diff
changeset
|
3282 endif |
d8065205ea82
patch 8.2.1557: crash in :vimgrep when started as "vim -n"
Bram Moolenaar <Bram@vim.org>
parents:
21765
diff
changeset
|
3283 call delete('Xscript') |
d8065205ea82
patch 8.2.1557: crash in :vimgrep when started as "vim -n"
Bram Moolenaar <Bram@vim.org>
parents:
21765
diff
changeset
|
3284 call delete('Xresult') |
d8065205ea82
patch 8.2.1557: crash in :vimgrep when started as "vim -n"
Bram Moolenaar <Bram@vim.org>
parents:
21765
diff
changeset
|
3285 endfunc |
d8065205ea82
patch 8.2.1557: crash in :vimgrep when started as "vim -n"
Bram Moolenaar <Bram@vim.org>
parents:
21765
diff
changeset
|
3286 |
21668
0843f244e547
patch 8.2.1384: no ATTENTION prompt for :vimgrep first match file
Bram Moolenaar <Bram@vim.org>
parents:
21409
diff
changeset
|
3287 func Test_vimgrep_existing_swapfile() |
0843f244e547
patch 8.2.1384: no ATTENTION prompt for :vimgrep first match file
Bram Moolenaar <Bram@vim.org>
parents:
21409
diff
changeset
|
3288 call writefile(['match apple with apple'], 'Xapple') |
0843f244e547
patch 8.2.1384: no ATTENTION prompt for :vimgrep first match file
Bram Moolenaar <Bram@vim.org>
parents:
21409
diff
changeset
|
3289 call writefile(['swapfile'], '.Xapple.swp') |
0843f244e547
patch 8.2.1384: no ATTENTION prompt for :vimgrep first match file
Bram Moolenaar <Bram@vim.org>
parents:
21409
diff
changeset
|
3290 let g:foundSwap = 0 |
0843f244e547
patch 8.2.1384: no ATTENTION prompt for :vimgrep first match file
Bram Moolenaar <Bram@vim.org>
parents:
21409
diff
changeset
|
3291 let g:ignoreSwapExists = 1 |
0843f244e547
patch 8.2.1384: no ATTENTION prompt for :vimgrep first match file
Bram Moolenaar <Bram@vim.org>
parents:
21409
diff
changeset
|
3292 augroup grep |
0843f244e547
patch 8.2.1384: no ATTENTION prompt for :vimgrep first match file
Bram Moolenaar <Bram@vim.org>
parents:
21409
diff
changeset
|
3293 au SwapExists * let foundSwap = 1 | let v:swapchoice = 'e' |
0843f244e547
patch 8.2.1384: no ATTENTION prompt for :vimgrep first match file
Bram Moolenaar <Bram@vim.org>
parents:
21409
diff
changeset
|
3294 augroup END |
0843f244e547
patch 8.2.1384: no ATTENTION prompt for :vimgrep first match file
Bram Moolenaar <Bram@vim.org>
parents:
21409
diff
changeset
|
3295 vimgrep apple Xapple |
0843f244e547
patch 8.2.1384: no ATTENTION prompt for :vimgrep first match file
Bram Moolenaar <Bram@vim.org>
parents:
21409
diff
changeset
|
3296 call assert_equal(1, g:foundSwap) |
0843f244e547
patch 8.2.1384: no ATTENTION prompt for :vimgrep first match file
Bram Moolenaar <Bram@vim.org>
parents:
21409
diff
changeset
|
3297 call assert_match('.Xapple.swo', swapname('')) |
0843f244e547
patch 8.2.1384: no ATTENTION prompt for :vimgrep first match file
Bram Moolenaar <Bram@vim.org>
parents:
21409
diff
changeset
|
3298 |
0843f244e547
patch 8.2.1384: no ATTENTION prompt for :vimgrep first match file
Bram Moolenaar <Bram@vim.org>
parents:
21409
diff
changeset
|
3299 call delete('Xapple') |
21765
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
3300 call delete('.Xapple.swp') |
21668
0843f244e547
patch 8.2.1384: no ATTENTION prompt for :vimgrep first match file
Bram Moolenaar <Bram@vim.org>
parents:
21409
diff
changeset
|
3301 augroup grep |
0843f244e547
patch 8.2.1384: no ATTENTION prompt for :vimgrep first match file
Bram Moolenaar <Bram@vim.org>
parents:
21409
diff
changeset
|
3302 au! SwapExists |
0843f244e547
patch 8.2.1384: no ATTENTION prompt for :vimgrep first match file
Bram Moolenaar <Bram@vim.org>
parents:
21409
diff
changeset
|
3303 augroup END |
0843f244e547
patch 8.2.1384: no ATTENTION prompt for :vimgrep first match file
Bram Moolenaar <Bram@vim.org>
parents:
21409
diff
changeset
|
3304 unlet g:ignoreSwapExists |
0843f244e547
patch 8.2.1384: no ATTENTION prompt for :vimgrep first match file
Bram Moolenaar <Bram@vim.org>
parents:
21409
diff
changeset
|
3305 endfunc |
0843f244e547
patch 8.2.1384: no ATTENTION prompt for :vimgrep first match file
Bram Moolenaar <Bram@vim.org>
parents:
21409
diff
changeset
|
3306 |
11301
cc8ece2aa389
patch 8.0.0536: quickfix window not updated when freeing quickfix stack
Christian Brabandt <cb@256bit.org>
parents:
11263
diff
changeset
|
3307 func XfreeTests(cchar) |
cc8ece2aa389
patch 8.0.0536: quickfix window not updated when freeing quickfix stack
Christian Brabandt <cb@256bit.org>
parents:
11263
diff
changeset
|
3308 call s:setup_commands(a:cchar) |
cc8ece2aa389
patch 8.0.0536: quickfix window not updated when freeing quickfix stack
Christian Brabandt <cb@256bit.org>
parents:
11263
diff
changeset
|
3309 |
cc8ece2aa389
patch 8.0.0536: quickfix window not updated when freeing quickfix stack
Christian Brabandt <cb@256bit.org>
parents:
11263
diff
changeset
|
3310 enew | only |
cc8ece2aa389
patch 8.0.0536: quickfix window not updated when freeing quickfix stack
Christian Brabandt <cb@256bit.org>
parents:
11263
diff
changeset
|
3311 |
cc8ece2aa389
patch 8.0.0536: quickfix window not updated when freeing quickfix stack
Christian Brabandt <cb@256bit.org>
parents:
11263
diff
changeset
|
3312 " Deleting the quickfix stack should work even When the current list is |
cc8ece2aa389
patch 8.0.0536: quickfix window not updated when freeing quickfix stack
Christian Brabandt <cb@256bit.org>
parents:
11263
diff
changeset
|
3313 " somewhere in the middle of the stack |
cc8ece2aa389
patch 8.0.0536: quickfix window not updated when freeing quickfix stack
Christian Brabandt <cb@256bit.org>
parents:
11263
diff
changeset
|
3314 Xexpr ['Xfile1:10:10:Line 10', 'Xfile1:15:15:Line 15'] |
cc8ece2aa389
patch 8.0.0536: quickfix window not updated when freeing quickfix stack
Christian Brabandt <cb@256bit.org>
parents:
11263
diff
changeset
|
3315 Xexpr ['Xfile2:20:20:Line 20', 'Xfile2:25:25:Line 25'] |
cc8ece2aa389
patch 8.0.0536: quickfix window not updated when freeing quickfix stack
Christian Brabandt <cb@256bit.org>
parents:
11263
diff
changeset
|
3316 Xexpr ['Xfile3:30:30:Line 30', 'Xfile3:35:35:Line 35'] |
cc8ece2aa389
patch 8.0.0536: quickfix window not updated when freeing quickfix stack
Christian Brabandt <cb@256bit.org>
parents:
11263
diff
changeset
|
3317 Xolder |
cc8ece2aa389
patch 8.0.0536: quickfix window not updated when freeing quickfix stack
Christian Brabandt <cb@256bit.org>
parents:
11263
diff
changeset
|
3318 call g:Xsetlist([], 'f') |
cc8ece2aa389
patch 8.0.0536: quickfix window not updated when freeing quickfix stack
Christian Brabandt <cb@256bit.org>
parents:
11263
diff
changeset
|
3319 call assert_equal(0, len(g:Xgetlist())) |
cc8ece2aa389
patch 8.0.0536: quickfix window not updated when freeing quickfix stack
Christian Brabandt <cb@256bit.org>
parents:
11263
diff
changeset
|
3320 |
cc8ece2aa389
patch 8.0.0536: quickfix window not updated when freeing quickfix stack
Christian Brabandt <cb@256bit.org>
parents:
11263
diff
changeset
|
3321 " After deleting the stack, adding a new list should create a stack with a |
cc8ece2aa389
patch 8.0.0536: quickfix window not updated when freeing quickfix stack
Christian Brabandt <cb@256bit.org>
parents:
11263
diff
changeset
|
3322 " single list. |
cc8ece2aa389
patch 8.0.0536: quickfix window not updated when freeing quickfix stack
Christian Brabandt <cb@256bit.org>
parents:
11263
diff
changeset
|
3323 Xexpr ['Xfile1:10:10:Line 10', 'Xfile1:15:15:Line 15'] |
cc8ece2aa389
patch 8.0.0536: quickfix window not updated when freeing quickfix stack
Christian Brabandt <cb@256bit.org>
parents:
11263
diff
changeset
|
3324 call assert_equal(1, g:Xgetlist({'all':1}).nr) |
cc8ece2aa389
patch 8.0.0536: quickfix window not updated when freeing quickfix stack
Christian Brabandt <cb@256bit.org>
parents:
11263
diff
changeset
|
3325 |
cc8ece2aa389
patch 8.0.0536: quickfix window not updated when freeing quickfix stack
Christian Brabandt <cb@256bit.org>
parents:
11263
diff
changeset
|
3326 " Deleting the stack from a quickfix window should update/clear the |
cc8ece2aa389
patch 8.0.0536: quickfix window not updated when freeing quickfix stack
Christian Brabandt <cb@256bit.org>
parents:
11263
diff
changeset
|
3327 " quickfix/location list window. |
cc8ece2aa389
patch 8.0.0536: quickfix window not updated when freeing quickfix stack
Christian Brabandt <cb@256bit.org>
parents:
11263
diff
changeset
|
3328 Xexpr ['Xfile1:10:10:Line 10', 'Xfile1:15:15:Line 15'] |
cc8ece2aa389
patch 8.0.0536: quickfix window not updated when freeing quickfix stack
Christian Brabandt <cb@256bit.org>
parents:
11263
diff
changeset
|
3329 Xexpr ['Xfile2:20:20:Line 20', 'Xfile2:25:25:Line 25'] |
cc8ece2aa389
patch 8.0.0536: quickfix window not updated when freeing quickfix stack
Christian Brabandt <cb@256bit.org>
parents:
11263
diff
changeset
|
3330 Xexpr ['Xfile3:30:30:Line 30', 'Xfile3:35:35:Line 35'] |
cc8ece2aa389
patch 8.0.0536: quickfix window not updated when freeing quickfix stack
Christian Brabandt <cb@256bit.org>
parents:
11263
diff
changeset
|
3331 Xolder |
cc8ece2aa389
patch 8.0.0536: quickfix window not updated when freeing quickfix stack
Christian Brabandt <cb@256bit.org>
parents:
11263
diff
changeset
|
3332 Xwindow |
cc8ece2aa389
patch 8.0.0536: quickfix window not updated when freeing quickfix stack
Christian Brabandt <cb@256bit.org>
parents:
11263
diff
changeset
|
3333 call g:Xsetlist([], 'f') |
cc8ece2aa389
patch 8.0.0536: quickfix window not updated when freeing quickfix stack
Christian Brabandt <cb@256bit.org>
parents:
11263
diff
changeset
|
3334 call assert_equal(2, winnr('$')) |
cc8ece2aa389
patch 8.0.0536: quickfix window not updated when freeing quickfix stack
Christian Brabandt <cb@256bit.org>
parents:
11263
diff
changeset
|
3335 call assert_equal(1, line('$')) |
cc8ece2aa389
patch 8.0.0536: quickfix window not updated when freeing quickfix stack
Christian Brabandt <cb@256bit.org>
parents:
11263
diff
changeset
|
3336 Xclose |
cc8ece2aa389
patch 8.0.0536: quickfix window not updated when freeing quickfix stack
Christian Brabandt <cb@256bit.org>
parents:
11263
diff
changeset
|
3337 |
cc8ece2aa389
patch 8.0.0536: quickfix window not updated when freeing quickfix stack
Christian Brabandt <cb@256bit.org>
parents:
11263
diff
changeset
|
3338 " Deleting the stack from a non-quickfix window should update/clear the |
cc8ece2aa389
patch 8.0.0536: quickfix window not updated when freeing quickfix stack
Christian Brabandt <cb@256bit.org>
parents:
11263
diff
changeset
|
3339 " quickfix/location list window. |
cc8ece2aa389
patch 8.0.0536: quickfix window not updated when freeing quickfix stack
Christian Brabandt <cb@256bit.org>
parents:
11263
diff
changeset
|
3340 Xexpr ['Xfile1:10:10:Line 10', 'Xfile1:15:15:Line 15'] |
cc8ece2aa389
patch 8.0.0536: quickfix window not updated when freeing quickfix stack
Christian Brabandt <cb@256bit.org>
parents:
11263
diff
changeset
|
3341 Xexpr ['Xfile2:20:20:Line 20', 'Xfile2:25:25:Line 25'] |
cc8ece2aa389
patch 8.0.0536: quickfix window not updated when freeing quickfix stack
Christian Brabandt <cb@256bit.org>
parents:
11263
diff
changeset
|
3342 Xexpr ['Xfile3:30:30:Line 30', 'Xfile3:35:35:Line 35'] |
cc8ece2aa389
patch 8.0.0536: quickfix window not updated when freeing quickfix stack
Christian Brabandt <cb@256bit.org>
parents:
11263
diff
changeset
|
3343 Xolder |
cc8ece2aa389
patch 8.0.0536: quickfix window not updated when freeing quickfix stack
Christian Brabandt <cb@256bit.org>
parents:
11263
diff
changeset
|
3344 Xwindow |
cc8ece2aa389
patch 8.0.0536: quickfix window not updated when freeing quickfix stack
Christian Brabandt <cb@256bit.org>
parents:
11263
diff
changeset
|
3345 wincmd p |
cc8ece2aa389
patch 8.0.0536: quickfix window not updated when freeing quickfix stack
Christian Brabandt <cb@256bit.org>
parents:
11263
diff
changeset
|
3346 call g:Xsetlist([], 'f') |
cc8ece2aa389
patch 8.0.0536: quickfix window not updated when freeing quickfix stack
Christian Brabandt <cb@256bit.org>
parents:
11263
diff
changeset
|
3347 call assert_equal(0, len(g:Xgetlist())) |
cc8ece2aa389
patch 8.0.0536: quickfix window not updated when freeing quickfix stack
Christian Brabandt <cb@256bit.org>
parents:
11263
diff
changeset
|
3348 wincmd p |
cc8ece2aa389
patch 8.0.0536: quickfix window not updated when freeing quickfix stack
Christian Brabandt <cb@256bit.org>
parents:
11263
diff
changeset
|
3349 call assert_equal(2, winnr('$')) |
cc8ece2aa389
patch 8.0.0536: quickfix window not updated when freeing quickfix stack
Christian Brabandt <cb@256bit.org>
parents:
11263
diff
changeset
|
3350 call assert_equal(1, line('$')) |
cc8ece2aa389
patch 8.0.0536: quickfix window not updated when freeing quickfix stack
Christian Brabandt <cb@256bit.org>
parents:
11263
diff
changeset
|
3351 |
cc8ece2aa389
patch 8.0.0536: quickfix window not updated when freeing quickfix stack
Christian Brabandt <cb@256bit.org>
parents:
11263
diff
changeset
|
3352 " After deleting the location list stack, if the location list window is |
cc8ece2aa389
patch 8.0.0536: quickfix window not updated when freeing quickfix stack
Christian Brabandt <cb@256bit.org>
parents:
11263
diff
changeset
|
3353 " opened, then a new location list should be created. So opening the |
cc8ece2aa389
patch 8.0.0536: quickfix window not updated when freeing quickfix stack
Christian Brabandt <cb@256bit.org>
parents:
11263
diff
changeset
|
3354 " location list window again should not create a new window. |
cc8ece2aa389
patch 8.0.0536: quickfix window not updated when freeing quickfix stack
Christian Brabandt <cb@256bit.org>
parents:
11263
diff
changeset
|
3355 if a:cchar == 'l' |
cc8ece2aa389
patch 8.0.0536: quickfix window not updated when freeing quickfix stack
Christian Brabandt <cb@256bit.org>
parents:
11263
diff
changeset
|
3356 lexpr ['Xfile1:10:10:Line 10', 'Xfile1:15:15:Line 15'] |
cc8ece2aa389
patch 8.0.0536: quickfix window not updated when freeing quickfix stack
Christian Brabandt <cb@256bit.org>
parents:
11263
diff
changeset
|
3357 wincmd p |
cc8ece2aa389
patch 8.0.0536: quickfix window not updated when freeing quickfix stack
Christian Brabandt <cb@256bit.org>
parents:
11263
diff
changeset
|
3358 lopen |
cc8ece2aa389
patch 8.0.0536: quickfix window not updated when freeing quickfix stack
Christian Brabandt <cb@256bit.org>
parents:
11263
diff
changeset
|
3359 call assert_equal(2, winnr('$')) |
cc8ece2aa389
patch 8.0.0536: quickfix window not updated when freeing quickfix stack
Christian Brabandt <cb@256bit.org>
parents:
11263
diff
changeset
|
3360 endif |
cc8ece2aa389
patch 8.0.0536: quickfix window not updated when freeing quickfix stack
Christian Brabandt <cb@256bit.org>
parents:
11263
diff
changeset
|
3361 Xclose |
cc8ece2aa389
patch 8.0.0536: quickfix window not updated when freeing quickfix stack
Christian Brabandt <cb@256bit.org>
parents:
11263
diff
changeset
|
3362 endfunc |
cc8ece2aa389
patch 8.0.0536: quickfix window not updated when freeing quickfix stack
Christian Brabandt <cb@256bit.org>
parents:
11263
diff
changeset
|
3363 |
13016
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3364 " Tests for the quickfix free functionality |
11301
cc8ece2aa389
patch 8.0.0536: quickfix window not updated when freeing quickfix stack
Christian Brabandt <cb@256bit.org>
parents:
11263
diff
changeset
|
3365 func Test_qf_free() |
cc8ece2aa389
patch 8.0.0536: quickfix window not updated when freeing quickfix stack
Christian Brabandt <cb@256bit.org>
parents:
11263
diff
changeset
|
3366 call XfreeTests('c') |
cc8ece2aa389
patch 8.0.0536: quickfix window not updated when freeing quickfix stack
Christian Brabandt <cb@256bit.org>
parents:
11263
diff
changeset
|
3367 call XfreeTests('l') |
cc8ece2aa389
patch 8.0.0536: quickfix window not updated when freeing quickfix stack
Christian Brabandt <cb@256bit.org>
parents:
11263
diff
changeset
|
3368 endfunc |
11445
461ac47c3793
patch 8.0.0606: cannot set the context for a specified quickfix list
Christian Brabandt <cb@256bit.org>
parents:
11412
diff
changeset
|
3369 |
461ac47c3793
patch 8.0.0606: cannot set the context for a specified quickfix list
Christian Brabandt <cb@256bit.org>
parents:
11412
diff
changeset
|
3370 " Test for buffer overflow when parsing lines and adding new entries to |
461ac47c3793
patch 8.0.0606: cannot set the context for a specified quickfix list
Christian Brabandt <cb@256bit.org>
parents:
11412
diff
changeset
|
3371 " the quickfix list. |
461ac47c3793
patch 8.0.0606: cannot set the context for a specified quickfix list
Christian Brabandt <cb@256bit.org>
parents:
11412
diff
changeset
|
3372 func Test_bufoverflow() |
461ac47c3793
patch 8.0.0606: cannot set the context for a specified quickfix list
Christian Brabandt <cb@256bit.org>
parents:
11412
diff
changeset
|
3373 set efm=%f:%l:%m |
461ac47c3793
patch 8.0.0606: cannot set the context for a specified quickfix list
Christian Brabandt <cb@256bit.org>
parents:
11412
diff
changeset
|
3374 cgetexpr ['File1:100:' . repeat('x', 1025)] |
461ac47c3793
patch 8.0.0606: cannot set the context for a specified quickfix list
Christian Brabandt <cb@256bit.org>
parents:
11412
diff
changeset
|
3375 |
461ac47c3793
patch 8.0.0606: cannot set the context for a specified quickfix list
Christian Brabandt <cb@256bit.org>
parents:
11412
diff
changeset
|
3376 set efm=%+GCompiler:\ %.%#,%f:%l:%m |
461ac47c3793
patch 8.0.0606: cannot set the context for a specified quickfix list
Christian Brabandt <cb@256bit.org>
parents:
11412
diff
changeset
|
3377 cgetexpr ['Compiler: ' . repeat('a', 1015), 'File1:10:Hello World'] |
461ac47c3793
patch 8.0.0606: cannot set the context for a specified quickfix list
Christian Brabandt <cb@256bit.org>
parents:
11412
diff
changeset
|
3378 |
461ac47c3793
patch 8.0.0606: cannot set the context for a specified quickfix list
Christian Brabandt <cb@256bit.org>
parents:
11412
diff
changeset
|
3379 set efm=%DEntering\ directory\ %f,%f:%l:%m |
29320
a74398c432a4
patch 9.0.0003: functions are global while they could be local
Bram Moolenaar <Bram@vim.org>
parents:
29014
diff
changeset
|
3380 let lines =<< trim eval END |
a74398c432a4
patch 9.0.0003: functions are global while they could be local
Bram Moolenaar <Bram@vim.org>
parents:
29014
diff
changeset
|
3381 Entering directory $"{repeat('a', 1006)}" |
a74398c432a4
patch 9.0.0003: functions are global while they could be local
Bram Moolenaar <Bram@vim.org>
parents:
29014
diff
changeset
|
3382 File1:10:Hello World |
a74398c432a4
patch 9.0.0003: functions are global while they could be local
Bram Moolenaar <Bram@vim.org>
parents:
29014
diff
changeset
|
3383 END |
a74398c432a4
patch 9.0.0003: functions are global while they could be local
Bram Moolenaar <Bram@vim.org>
parents:
29014
diff
changeset
|
3384 cgetexpr lines |
11445
461ac47c3793
patch 8.0.0606: cannot set the context for a specified quickfix list
Christian Brabandt <cb@256bit.org>
parents:
11412
diff
changeset
|
3385 set efm&vim |
461ac47c3793
patch 8.0.0606: cannot set the context for a specified quickfix list
Christian Brabandt <cb@256bit.org>
parents:
11412
diff
changeset
|
3386 endfunc |
461ac47c3793
patch 8.0.0606: cannot set the context for a specified quickfix list
Christian Brabandt <cb@256bit.org>
parents:
11412
diff
changeset
|
3387 |
11502
46bbef0ee9a6
patch 8.0.0634: cannot easily get to the last quickfix list
Christian Brabandt <cb@256bit.org>
parents:
11445
diff
changeset
|
3388 " Tests for getting the quickfix stack size |
46bbef0ee9a6
patch 8.0.0634: cannot easily get to the last quickfix list
Christian Brabandt <cb@256bit.org>
parents:
11445
diff
changeset
|
3389 func XsizeTests(cchar) |
46bbef0ee9a6
patch 8.0.0634: cannot easily get to the last quickfix list
Christian Brabandt <cb@256bit.org>
parents:
11445
diff
changeset
|
3390 call s:setup_commands(a:cchar) |
46bbef0ee9a6
patch 8.0.0634: cannot easily get to the last quickfix list
Christian Brabandt <cb@256bit.org>
parents:
11445
diff
changeset
|
3391 |
46bbef0ee9a6
patch 8.0.0634: cannot easily get to the last quickfix list
Christian Brabandt <cb@256bit.org>
parents:
11445
diff
changeset
|
3392 call g:Xsetlist([], 'f') |
46bbef0ee9a6
patch 8.0.0634: cannot easily get to the last quickfix list
Christian Brabandt <cb@256bit.org>
parents:
11445
diff
changeset
|
3393 call assert_equal(0, g:Xgetlist({'nr':'$'}).nr) |
13026
7c0e0e923537
patch 8.0.1389: getqflist() items are missing if not set
Christian Brabandt <cb@256bit.org>
parents:
13016
diff
changeset
|
3394 call assert_equal('', g:Xgetlist({'nr':'$', 'all':1}).title) |
7c0e0e923537
patch 8.0.1389: getqflist() items are missing if not set
Christian Brabandt <cb@256bit.org>
parents:
13016
diff
changeset
|
3395 call assert_equal(0, g:Xgetlist({'nr':0}).nr) |
11502
46bbef0ee9a6
patch 8.0.0634: cannot easily get to the last quickfix list
Christian Brabandt <cb@256bit.org>
parents:
11445
diff
changeset
|
3396 |
46bbef0ee9a6
patch 8.0.0634: cannot easily get to the last quickfix list
Christian Brabandt <cb@256bit.org>
parents:
11445
diff
changeset
|
3397 Xexpr "File1:10:Line1" |
46bbef0ee9a6
patch 8.0.0634: cannot easily get to the last quickfix list
Christian Brabandt <cb@256bit.org>
parents:
11445
diff
changeset
|
3398 Xexpr "File2:20:Line2" |
46bbef0ee9a6
patch 8.0.0634: cannot easily get to the last quickfix list
Christian Brabandt <cb@256bit.org>
parents:
11445
diff
changeset
|
3399 Xexpr "File3:30:Line3" |
46bbef0ee9a6
patch 8.0.0634: cannot easily get to the last quickfix list
Christian Brabandt <cb@256bit.org>
parents:
11445
diff
changeset
|
3400 Xolder | Xolder |
46bbef0ee9a6
patch 8.0.0634: cannot easily get to the last quickfix list
Christian Brabandt <cb@256bit.org>
parents:
11445
diff
changeset
|
3401 call assert_equal(3, g:Xgetlist({'nr':'$'}).nr) |
46bbef0ee9a6
patch 8.0.0634: cannot easily get to the last quickfix list
Christian Brabandt <cb@256bit.org>
parents:
11445
diff
changeset
|
3402 call g:Xsetlist([], 'f') |
46bbef0ee9a6
patch 8.0.0634: cannot easily get to the last quickfix list
Christian Brabandt <cb@256bit.org>
parents:
11445
diff
changeset
|
3403 |
46bbef0ee9a6
patch 8.0.0634: cannot easily get to the last quickfix list
Christian Brabandt <cb@256bit.org>
parents:
11445
diff
changeset
|
3404 Xexpr "File1:10:Line1" |
46bbef0ee9a6
patch 8.0.0634: cannot easily get to the last quickfix list
Christian Brabandt <cb@256bit.org>
parents:
11445
diff
changeset
|
3405 Xexpr "File2:20:Line2" |
46bbef0ee9a6
patch 8.0.0634: cannot easily get to the last quickfix list
Christian Brabandt <cb@256bit.org>
parents:
11445
diff
changeset
|
3406 Xexpr "File3:30:Line3" |
46bbef0ee9a6
patch 8.0.0634: cannot easily get to the last quickfix list
Christian Brabandt <cb@256bit.org>
parents:
11445
diff
changeset
|
3407 Xolder | Xolder |
46bbef0ee9a6
patch 8.0.0634: cannot easily get to the last quickfix list
Christian Brabandt <cb@256bit.org>
parents:
11445
diff
changeset
|
3408 call g:Xsetlist([], 'a', {'nr':'$', 'title':'Compiler'}) |
46bbef0ee9a6
patch 8.0.0634: cannot easily get to the last quickfix list
Christian Brabandt <cb@256bit.org>
parents:
11445
diff
changeset
|
3409 call assert_equal('Compiler', g:Xgetlist({'nr':3, 'all':1}).title) |
46bbef0ee9a6
patch 8.0.0634: cannot easily get to the last quickfix list
Christian Brabandt <cb@256bit.org>
parents:
11445
diff
changeset
|
3410 endfunc |
46bbef0ee9a6
patch 8.0.0634: cannot easily get to the last quickfix list
Christian Brabandt <cb@256bit.org>
parents:
11445
diff
changeset
|
3411 |
46bbef0ee9a6
patch 8.0.0634: cannot easily get to the last quickfix list
Christian Brabandt <cb@256bit.org>
parents:
11445
diff
changeset
|
3412 func Test_Qf_Size() |
46bbef0ee9a6
patch 8.0.0634: cannot easily get to the last quickfix list
Christian Brabandt <cb@256bit.org>
parents:
11445
diff
changeset
|
3413 call XsizeTests('c') |
46bbef0ee9a6
patch 8.0.0634: cannot easily get to the last quickfix list
Christian Brabandt <cb@256bit.org>
parents:
11445
diff
changeset
|
3414 call XsizeTests('l') |
46bbef0ee9a6
patch 8.0.0634: cannot easily get to the last quickfix list
Christian Brabandt <cb@256bit.org>
parents:
11445
diff
changeset
|
3415 endfunc |
11589
39787def24bb
patch 8.0.0677: setting 'filetype' may switch buffers
Christian Brabandt <cb@256bit.org>
parents:
11549
diff
changeset
|
3416 |
11611
9dc041e1c8c9
patch 8.0.0688: cannot resize the window in a FileType autocommand
Christian Brabandt <cb@256bit.org>
parents:
11609
diff
changeset
|
3417 func Test_cclose_from_copen() |
9dc041e1c8c9
patch 8.0.0688: cannot resize the window in a FileType autocommand
Christian Brabandt <cb@256bit.org>
parents:
11609
diff
changeset
|
3418 augroup QF_Test |
9dc041e1c8c9
patch 8.0.0688: cannot resize the window in a FileType autocommand
Christian Brabandt <cb@256bit.org>
parents:
11609
diff
changeset
|
3419 au! |
22087
ff21e2962490
patch 8.2.1593: tests do not check the error number properly
Bram Moolenaar <Bram@vim.org>
parents:
22083
diff
changeset
|
3420 au FileType qf :call assert_fails(':cclose', 'E788:') |
11611
9dc041e1c8c9
patch 8.0.0688: cannot resize the window in a FileType autocommand
Christian Brabandt <cb@256bit.org>
parents:
11609
diff
changeset
|
3421 augroup END |
9dc041e1c8c9
patch 8.0.0688: cannot resize the window in a FileType autocommand
Christian Brabandt <cb@256bit.org>
parents:
11609
diff
changeset
|
3422 copen |
9dc041e1c8c9
patch 8.0.0688: cannot resize the window in a FileType autocommand
Christian Brabandt <cb@256bit.org>
parents:
11609
diff
changeset
|
3423 augroup QF_Test |
9dc041e1c8c9
patch 8.0.0688: cannot resize the window in a FileType autocommand
Christian Brabandt <cb@256bit.org>
parents:
11609
diff
changeset
|
3424 au! |
9dc041e1c8c9
patch 8.0.0688: cannot resize the window in a FileType autocommand
Christian Brabandt <cb@256bit.org>
parents:
11609
diff
changeset
|
3425 augroup END |
9dc041e1c8c9
patch 8.0.0688: cannot resize the window in a FileType autocommand
Christian Brabandt <cb@256bit.org>
parents:
11609
diff
changeset
|
3426 augroup! QF_Test |
9dc041e1c8c9
patch 8.0.0688: cannot resize the window in a FileType autocommand
Christian Brabandt <cb@256bit.org>
parents:
11609
diff
changeset
|
3427 endfunc |
9dc041e1c8c9
patch 8.0.0688: cannot resize the window in a FileType autocommand
Christian Brabandt <cb@256bit.org>
parents:
11609
diff
changeset
|
3428 |
11589
39787def24bb
patch 8.0.0677: setting 'filetype' may switch buffers
Christian Brabandt <cb@256bit.org>
parents:
11549
diff
changeset
|
3429 func Test_cclose_in_autocmd() |
39787def24bb
patch 8.0.0677: setting 'filetype' may switch buffers
Christian Brabandt <cb@256bit.org>
parents:
11549
diff
changeset
|
3430 " Problem is only triggered if "starting" is zero, so that the OptionsSet |
39787def24bb
patch 8.0.0677: setting 'filetype' may switch buffers
Christian Brabandt <cb@256bit.org>
parents:
11549
diff
changeset
|
3431 " event will be triggered. |
39787def24bb
patch 8.0.0677: setting 'filetype' may switch buffers
Christian Brabandt <cb@256bit.org>
parents:
11549
diff
changeset
|
3432 call test_override('starting', 1) |
39787def24bb
patch 8.0.0677: setting 'filetype' may switch buffers
Christian Brabandt <cb@256bit.org>
parents:
11549
diff
changeset
|
3433 augroup QF_Test |
39787def24bb
patch 8.0.0677: setting 'filetype' may switch buffers
Christian Brabandt <cb@256bit.org>
parents:
11549
diff
changeset
|
3434 au! |
22087
ff21e2962490
patch 8.2.1593: tests do not check the error number properly
Bram Moolenaar <Bram@vim.org>
parents:
22083
diff
changeset
|
3435 au FileType qf :call assert_fails(':cclose', 'E788:') |
11589
39787def24bb
patch 8.0.0677: setting 'filetype' may switch buffers
Christian Brabandt <cb@256bit.org>
parents:
11549
diff
changeset
|
3436 augroup END |
39787def24bb
patch 8.0.0677: setting 'filetype' may switch buffers
Christian Brabandt <cb@256bit.org>
parents:
11549
diff
changeset
|
3437 copen |
39787def24bb
patch 8.0.0677: setting 'filetype' may switch buffers
Christian Brabandt <cb@256bit.org>
parents:
11549
diff
changeset
|
3438 augroup QF_Test |
39787def24bb
patch 8.0.0677: setting 'filetype' may switch buffers
Christian Brabandt <cb@256bit.org>
parents:
11549
diff
changeset
|
3439 au! |
39787def24bb
patch 8.0.0677: setting 'filetype' may switch buffers
Christian Brabandt <cb@256bit.org>
parents:
11549
diff
changeset
|
3440 augroup END |
39787def24bb
patch 8.0.0677: setting 'filetype' may switch buffers
Christian Brabandt <cb@256bit.org>
parents:
11549
diff
changeset
|
3441 augroup! QF_Test |
39787def24bb
patch 8.0.0677: setting 'filetype' may switch buffers
Christian Brabandt <cb@256bit.org>
parents:
11549
diff
changeset
|
3442 call test_override('starting', 0) |
39787def24bb
patch 8.0.0677: setting 'filetype' may switch buffers
Christian Brabandt <cb@256bit.org>
parents:
11549
diff
changeset
|
3443 endfunc |
11611
9dc041e1c8c9
patch 8.0.0688: cannot resize the window in a FileType autocommand
Christian Brabandt <cb@256bit.org>
parents:
11609
diff
changeset
|
3444 |
14648
c3222a7342ab
patch 8.1.0337: :file fails in quickfix command
Christian Brabandt <cb@256bit.org>
parents:
14603
diff
changeset
|
3445 " Check that ":file" without an argument is possible even when "curbuf_lock" |
c3222a7342ab
patch 8.1.0337: :file fails in quickfix command
Christian Brabandt <cb@256bit.org>
parents:
14603
diff
changeset
|
3446 " is set. |
c3222a7342ab
patch 8.1.0337: :file fails in quickfix command
Christian Brabandt <cb@256bit.org>
parents:
14603
diff
changeset
|
3447 func Test_file_from_copen() |
c3222a7342ab
patch 8.1.0337: :file fails in quickfix command
Christian Brabandt <cb@256bit.org>
parents:
14603
diff
changeset
|
3448 " Works without argument. |
c3222a7342ab
patch 8.1.0337: :file fails in quickfix command
Christian Brabandt <cb@256bit.org>
parents:
14603
diff
changeset
|
3449 augroup QF_Test |
c3222a7342ab
patch 8.1.0337: :file fails in quickfix command
Christian Brabandt <cb@256bit.org>
parents:
14603
diff
changeset
|
3450 au! |
c3222a7342ab
patch 8.1.0337: :file fails in quickfix command
Christian Brabandt <cb@256bit.org>
parents:
14603
diff
changeset
|
3451 au FileType qf file |
c3222a7342ab
patch 8.1.0337: :file fails in quickfix command
Christian Brabandt <cb@256bit.org>
parents:
14603
diff
changeset
|
3452 augroup END |
c3222a7342ab
patch 8.1.0337: :file fails in quickfix command
Christian Brabandt <cb@256bit.org>
parents:
14603
diff
changeset
|
3453 copen |
c3222a7342ab
patch 8.1.0337: :file fails in quickfix command
Christian Brabandt <cb@256bit.org>
parents:
14603
diff
changeset
|
3454 |
c3222a7342ab
patch 8.1.0337: :file fails in quickfix command
Christian Brabandt <cb@256bit.org>
parents:
14603
diff
changeset
|
3455 augroup QF_Test |
c3222a7342ab
patch 8.1.0337: :file fails in quickfix command
Christian Brabandt <cb@256bit.org>
parents:
14603
diff
changeset
|
3456 au! |
c3222a7342ab
patch 8.1.0337: :file fails in quickfix command
Christian Brabandt <cb@256bit.org>
parents:
14603
diff
changeset
|
3457 augroup END |
c3222a7342ab
patch 8.1.0337: :file fails in quickfix command
Christian Brabandt <cb@256bit.org>
parents:
14603
diff
changeset
|
3458 cclose |
c3222a7342ab
patch 8.1.0337: :file fails in quickfix command
Christian Brabandt <cb@256bit.org>
parents:
14603
diff
changeset
|
3459 |
c3222a7342ab
patch 8.1.0337: :file fails in quickfix command
Christian Brabandt <cb@256bit.org>
parents:
14603
diff
changeset
|
3460 " Fails with argument. |
c3222a7342ab
patch 8.1.0337: :file fails in quickfix command
Christian Brabandt <cb@256bit.org>
parents:
14603
diff
changeset
|
3461 augroup QF_Test |
c3222a7342ab
patch 8.1.0337: :file fails in quickfix command
Christian Brabandt <cb@256bit.org>
parents:
14603
diff
changeset
|
3462 au! |
22087
ff21e2962490
patch 8.2.1593: tests do not check the error number properly
Bram Moolenaar <Bram@vim.org>
parents:
22083
diff
changeset
|
3463 au FileType qf call assert_fails(':file foo', 'E788:') |
14648
c3222a7342ab
patch 8.1.0337: :file fails in quickfix command
Christian Brabandt <cb@256bit.org>
parents:
14603
diff
changeset
|
3464 augroup END |
c3222a7342ab
patch 8.1.0337: :file fails in quickfix command
Christian Brabandt <cb@256bit.org>
parents:
14603
diff
changeset
|
3465 copen |
c3222a7342ab
patch 8.1.0337: :file fails in quickfix command
Christian Brabandt <cb@256bit.org>
parents:
14603
diff
changeset
|
3466 augroup QF_Test |
c3222a7342ab
patch 8.1.0337: :file fails in quickfix command
Christian Brabandt <cb@256bit.org>
parents:
14603
diff
changeset
|
3467 au! |
c3222a7342ab
patch 8.1.0337: :file fails in quickfix command
Christian Brabandt <cb@256bit.org>
parents:
14603
diff
changeset
|
3468 augroup END |
c3222a7342ab
patch 8.1.0337: :file fails in quickfix command
Christian Brabandt <cb@256bit.org>
parents:
14603
diff
changeset
|
3469 cclose |
c3222a7342ab
patch 8.1.0337: :file fails in quickfix command
Christian Brabandt <cb@256bit.org>
parents:
14603
diff
changeset
|
3470 |
c3222a7342ab
patch 8.1.0337: :file fails in quickfix command
Christian Brabandt <cb@256bit.org>
parents:
14603
diff
changeset
|
3471 augroup! QF_Test |
18452
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
3472 endfunc |
14648
c3222a7342ab
patch 8.1.0337: :file fails in quickfix command
Christian Brabandt <cb@256bit.org>
parents:
14603
diff
changeset
|
3473 |
11611
9dc041e1c8c9
patch 8.0.0688: cannot resize the window in a FileType autocommand
Christian Brabandt <cb@256bit.org>
parents:
11609
diff
changeset
|
3474 func Test_resize_from_copen() |
21765
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
3475 augroup QF_Test |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
3476 au! |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
3477 au FileType qf resize 5 |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
3478 augroup END |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
3479 try |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
3480 " This should succeed without any exception. No other buffers are |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
3481 " involved in the autocmd. |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
3482 copen |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
3483 finally |
11611
9dc041e1c8c9
patch 8.0.0688: cannot resize the window in a FileType autocommand
Christian Brabandt <cb@256bit.org>
parents:
11609
diff
changeset
|
3484 augroup QF_Test |
21765
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
3485 au! |
11611
9dc041e1c8c9
patch 8.0.0688: cannot resize the window in a FileType autocommand
Christian Brabandt <cb@256bit.org>
parents:
11609
diff
changeset
|
3486 augroup END |
21765
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
3487 augroup! QF_Test |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
3488 endtry |
11611
9dc041e1c8c9
patch 8.0.0688: cannot resize the window in a FileType autocommand
Christian Brabandt <cb@256bit.org>
parents:
11609
diff
changeset
|
3489 endfunc |
11705
c43118ecb0a3
patch 8.0.0735: no indication that the quickfix window/buffer changed
Christian Brabandt <cb@256bit.org>
parents:
11611
diff
changeset
|
3490 |
22874
db1bc1ab5ec8
patch 8.2.1984: cannot use :vimgrep in omni completion
Bram Moolenaar <Bram@vim.org>
parents:
22870
diff
changeset
|
3491 func Test_vimgrep_with_textlock() |
db1bc1ab5ec8
patch 8.2.1984: cannot use :vimgrep in omni completion
Bram Moolenaar <Bram@vim.org>
parents:
22870
diff
changeset
|
3492 new |
db1bc1ab5ec8
patch 8.2.1984: cannot use :vimgrep in omni completion
Bram Moolenaar <Bram@vim.org>
parents:
22870
diff
changeset
|
3493 |
29014
45c182c4f7e9
patch 8.2.5029: "textlock" is always zero
Bram Moolenaar <Bram@vim.org>
parents:
28421
diff
changeset
|
3494 " Simple way to execute something with "textlock" set. |
22874
db1bc1ab5ec8
patch 8.2.1984: cannot use :vimgrep in omni completion
Bram Moolenaar <Bram@vim.org>
parents:
22870
diff
changeset
|
3495 " Check that vimgrep without jumping can be executed. |
db1bc1ab5ec8
patch 8.2.1984: cannot use :vimgrep in omni completion
Bram Moolenaar <Bram@vim.org>
parents:
22870
diff
changeset
|
3496 au InsertCharPre * vimgrep /RunTheTest/j runtest.vim |
db1bc1ab5ec8
patch 8.2.1984: cannot use :vimgrep in omni completion
Bram Moolenaar <Bram@vim.org>
parents:
22870
diff
changeset
|
3497 normal ax |
db1bc1ab5ec8
patch 8.2.1984: cannot use :vimgrep in omni completion
Bram Moolenaar <Bram@vim.org>
parents:
22870
diff
changeset
|
3498 let qflist = getqflist() |
db1bc1ab5ec8
patch 8.2.1984: cannot use :vimgrep in omni completion
Bram Moolenaar <Bram@vim.org>
parents:
22870
diff
changeset
|
3499 call assert_true(len(qflist) > 0) |
db1bc1ab5ec8
patch 8.2.1984: cannot use :vimgrep in omni completion
Bram Moolenaar <Bram@vim.org>
parents:
22870
diff
changeset
|
3500 call assert_match('RunTheTest', qflist[0].text) |
db1bc1ab5ec8
patch 8.2.1984: cannot use :vimgrep in omni completion
Bram Moolenaar <Bram@vim.org>
parents:
22870
diff
changeset
|
3501 call setqflist([], 'r') |
db1bc1ab5ec8
patch 8.2.1984: cannot use :vimgrep in omni completion
Bram Moolenaar <Bram@vim.org>
parents:
22870
diff
changeset
|
3502 au! InsertCharPre |
db1bc1ab5ec8
patch 8.2.1984: cannot use :vimgrep in omni completion
Bram Moolenaar <Bram@vim.org>
parents:
22870
diff
changeset
|
3503 |
db1bc1ab5ec8
patch 8.2.1984: cannot use :vimgrep in omni completion
Bram Moolenaar <Bram@vim.org>
parents:
22870
diff
changeset
|
3504 " Check that vimgrepadd without jumping can be executed. |
db1bc1ab5ec8
patch 8.2.1984: cannot use :vimgrep in omni completion
Bram Moolenaar <Bram@vim.org>
parents:
22870
diff
changeset
|
3505 au InsertCharPre * vimgrepadd /RunTheTest/j runtest.vim |
db1bc1ab5ec8
patch 8.2.1984: cannot use :vimgrep in omni completion
Bram Moolenaar <Bram@vim.org>
parents:
22870
diff
changeset
|
3506 normal ax |
db1bc1ab5ec8
patch 8.2.1984: cannot use :vimgrep in omni completion
Bram Moolenaar <Bram@vim.org>
parents:
22870
diff
changeset
|
3507 let qflist = getqflist() |
db1bc1ab5ec8
patch 8.2.1984: cannot use :vimgrep in omni completion
Bram Moolenaar <Bram@vim.org>
parents:
22870
diff
changeset
|
3508 call assert_true(len(qflist) > 0) |
db1bc1ab5ec8
patch 8.2.1984: cannot use :vimgrep in omni completion
Bram Moolenaar <Bram@vim.org>
parents:
22870
diff
changeset
|
3509 call assert_match('RunTheTest', qflist[0].text) |
db1bc1ab5ec8
patch 8.2.1984: cannot use :vimgrep in omni completion
Bram Moolenaar <Bram@vim.org>
parents:
22870
diff
changeset
|
3510 call setqflist([], 'r') |
db1bc1ab5ec8
patch 8.2.1984: cannot use :vimgrep in omni completion
Bram Moolenaar <Bram@vim.org>
parents:
22870
diff
changeset
|
3511 au! InsertCharPre |
db1bc1ab5ec8
patch 8.2.1984: cannot use :vimgrep in omni completion
Bram Moolenaar <Bram@vim.org>
parents:
22870
diff
changeset
|
3512 |
db1bc1ab5ec8
patch 8.2.1984: cannot use :vimgrep in omni completion
Bram Moolenaar <Bram@vim.org>
parents:
22870
diff
changeset
|
3513 " Check that lvimgrep without jumping can be executed. |
db1bc1ab5ec8
patch 8.2.1984: cannot use :vimgrep in omni completion
Bram Moolenaar <Bram@vim.org>
parents:
22870
diff
changeset
|
3514 au InsertCharPre * lvimgrep /RunTheTest/j runtest.vim |
db1bc1ab5ec8
patch 8.2.1984: cannot use :vimgrep in omni completion
Bram Moolenaar <Bram@vim.org>
parents:
22870
diff
changeset
|
3515 normal ax |
db1bc1ab5ec8
patch 8.2.1984: cannot use :vimgrep in omni completion
Bram Moolenaar <Bram@vim.org>
parents:
22870
diff
changeset
|
3516 let qflist = getloclist(0) |
db1bc1ab5ec8
patch 8.2.1984: cannot use :vimgrep in omni completion
Bram Moolenaar <Bram@vim.org>
parents:
22870
diff
changeset
|
3517 call assert_true(len(qflist) > 0) |
db1bc1ab5ec8
patch 8.2.1984: cannot use :vimgrep in omni completion
Bram Moolenaar <Bram@vim.org>
parents:
22870
diff
changeset
|
3518 call assert_match('RunTheTest', qflist[0].text) |
db1bc1ab5ec8
patch 8.2.1984: cannot use :vimgrep in omni completion
Bram Moolenaar <Bram@vim.org>
parents:
22870
diff
changeset
|
3519 call setloclist(0, [], 'r') |
db1bc1ab5ec8
patch 8.2.1984: cannot use :vimgrep in omni completion
Bram Moolenaar <Bram@vim.org>
parents:
22870
diff
changeset
|
3520 au! InsertCharPre |
db1bc1ab5ec8
patch 8.2.1984: cannot use :vimgrep in omni completion
Bram Moolenaar <Bram@vim.org>
parents:
22870
diff
changeset
|
3521 |
db1bc1ab5ec8
patch 8.2.1984: cannot use :vimgrep in omni completion
Bram Moolenaar <Bram@vim.org>
parents:
22870
diff
changeset
|
3522 " Check that lvimgrepadd without jumping can be executed. |
db1bc1ab5ec8
patch 8.2.1984: cannot use :vimgrep in omni completion
Bram Moolenaar <Bram@vim.org>
parents:
22870
diff
changeset
|
3523 au InsertCharPre * lvimgrepadd /RunTheTest/j runtest.vim |
db1bc1ab5ec8
patch 8.2.1984: cannot use :vimgrep in omni completion
Bram Moolenaar <Bram@vim.org>
parents:
22870
diff
changeset
|
3524 normal ax |
db1bc1ab5ec8
patch 8.2.1984: cannot use :vimgrep in omni completion
Bram Moolenaar <Bram@vim.org>
parents:
22870
diff
changeset
|
3525 let qflist = getloclist(0) |
db1bc1ab5ec8
patch 8.2.1984: cannot use :vimgrep in omni completion
Bram Moolenaar <Bram@vim.org>
parents:
22870
diff
changeset
|
3526 call assert_true(len(qflist) > 0) |
db1bc1ab5ec8
patch 8.2.1984: cannot use :vimgrep in omni completion
Bram Moolenaar <Bram@vim.org>
parents:
22870
diff
changeset
|
3527 call assert_match('RunTheTest', qflist[0].text) |
db1bc1ab5ec8
patch 8.2.1984: cannot use :vimgrep in omni completion
Bram Moolenaar <Bram@vim.org>
parents:
22870
diff
changeset
|
3528 call setloclist(0, [], 'r') |
db1bc1ab5ec8
patch 8.2.1984: cannot use :vimgrep in omni completion
Bram Moolenaar <Bram@vim.org>
parents:
22870
diff
changeset
|
3529 au! InsertCharPre |
db1bc1ab5ec8
patch 8.2.1984: cannot use :vimgrep in omni completion
Bram Moolenaar <Bram@vim.org>
parents:
22870
diff
changeset
|
3530 |
db1bc1ab5ec8
patch 8.2.1984: cannot use :vimgrep in omni completion
Bram Moolenaar <Bram@vim.org>
parents:
22870
diff
changeset
|
3531 " trying to jump will give an error |
db1bc1ab5ec8
patch 8.2.1984: cannot use :vimgrep in omni completion
Bram Moolenaar <Bram@vim.org>
parents:
22870
diff
changeset
|
3532 au InsertCharPre * vimgrep /RunTheTest/ runtest.vim |
db1bc1ab5ec8
patch 8.2.1984: cannot use :vimgrep in omni completion
Bram Moolenaar <Bram@vim.org>
parents:
22870
diff
changeset
|
3533 call assert_fails('normal ax', 'E565:') |
db1bc1ab5ec8
patch 8.2.1984: cannot use :vimgrep in omni completion
Bram Moolenaar <Bram@vim.org>
parents:
22870
diff
changeset
|
3534 au! InsertCharPre |
db1bc1ab5ec8
patch 8.2.1984: cannot use :vimgrep in omni completion
Bram Moolenaar <Bram@vim.org>
parents:
22870
diff
changeset
|
3535 |
db1bc1ab5ec8
patch 8.2.1984: cannot use :vimgrep in omni completion
Bram Moolenaar <Bram@vim.org>
parents:
22870
diff
changeset
|
3536 au InsertCharPre * vimgrepadd /RunTheTest/ runtest.vim |
db1bc1ab5ec8
patch 8.2.1984: cannot use :vimgrep in omni completion
Bram Moolenaar <Bram@vim.org>
parents:
22870
diff
changeset
|
3537 call assert_fails('normal ax', 'E565:') |
db1bc1ab5ec8
patch 8.2.1984: cannot use :vimgrep in omni completion
Bram Moolenaar <Bram@vim.org>
parents:
22870
diff
changeset
|
3538 au! InsertCharPre |
db1bc1ab5ec8
patch 8.2.1984: cannot use :vimgrep in omni completion
Bram Moolenaar <Bram@vim.org>
parents:
22870
diff
changeset
|
3539 |
db1bc1ab5ec8
patch 8.2.1984: cannot use :vimgrep in omni completion
Bram Moolenaar <Bram@vim.org>
parents:
22870
diff
changeset
|
3540 au InsertCharPre * lvimgrep /RunTheTest/ runtest.vim |
db1bc1ab5ec8
patch 8.2.1984: cannot use :vimgrep in omni completion
Bram Moolenaar <Bram@vim.org>
parents:
22870
diff
changeset
|
3541 call assert_fails('normal ax', 'E565:') |
db1bc1ab5ec8
patch 8.2.1984: cannot use :vimgrep in omni completion
Bram Moolenaar <Bram@vim.org>
parents:
22870
diff
changeset
|
3542 au! InsertCharPre |
db1bc1ab5ec8
patch 8.2.1984: cannot use :vimgrep in omni completion
Bram Moolenaar <Bram@vim.org>
parents:
22870
diff
changeset
|
3543 |
db1bc1ab5ec8
patch 8.2.1984: cannot use :vimgrep in omni completion
Bram Moolenaar <Bram@vim.org>
parents:
22870
diff
changeset
|
3544 au InsertCharPre * lvimgrepadd /RunTheTest/ runtest.vim |
db1bc1ab5ec8
patch 8.2.1984: cannot use :vimgrep in omni completion
Bram Moolenaar <Bram@vim.org>
parents:
22870
diff
changeset
|
3545 call assert_fails('normal ax', 'E565:') |
db1bc1ab5ec8
patch 8.2.1984: cannot use :vimgrep in omni completion
Bram Moolenaar <Bram@vim.org>
parents:
22870
diff
changeset
|
3546 au! InsertCharPre |
db1bc1ab5ec8
patch 8.2.1984: cannot use :vimgrep in omni completion
Bram Moolenaar <Bram@vim.org>
parents:
22870
diff
changeset
|
3547 |
db1bc1ab5ec8
patch 8.2.1984: cannot use :vimgrep in omni completion
Bram Moolenaar <Bram@vim.org>
parents:
22870
diff
changeset
|
3548 bwipe! |
db1bc1ab5ec8
patch 8.2.1984: cannot use :vimgrep in omni completion
Bram Moolenaar <Bram@vim.org>
parents:
22870
diff
changeset
|
3549 endfunc |
db1bc1ab5ec8
patch 8.2.1984: cannot use :vimgrep in omni completion
Bram Moolenaar <Bram@vim.org>
parents:
22870
diff
changeset
|
3550 |
11705
c43118ecb0a3
patch 8.0.0735: no indication that the quickfix window/buffer changed
Christian Brabandt <cb@256bit.org>
parents:
11611
diff
changeset
|
3551 " Tests for the quickfix buffer b:changedtick variable |
c43118ecb0a3
patch 8.0.0735: no indication that the quickfix window/buffer changed
Christian Brabandt <cb@256bit.org>
parents:
11611
diff
changeset
|
3552 func Xchangedtick_tests(cchar) |
c43118ecb0a3
patch 8.0.0735: no indication that the quickfix window/buffer changed
Christian Brabandt <cb@256bit.org>
parents:
11611
diff
changeset
|
3553 call s:setup_commands(a:cchar) |
c43118ecb0a3
patch 8.0.0735: no indication that the quickfix window/buffer changed
Christian Brabandt <cb@256bit.org>
parents:
11611
diff
changeset
|
3554 |
c43118ecb0a3
patch 8.0.0735: no indication that the quickfix window/buffer changed
Christian Brabandt <cb@256bit.org>
parents:
11611
diff
changeset
|
3555 new | only |
c43118ecb0a3
patch 8.0.0735: no indication that the quickfix window/buffer changed
Christian Brabandt <cb@256bit.org>
parents:
11611
diff
changeset
|
3556 |
c43118ecb0a3
patch 8.0.0735: no indication that the quickfix window/buffer changed
Christian Brabandt <cb@256bit.org>
parents:
11611
diff
changeset
|
3557 Xexpr "" | Xexpr "" | Xexpr "" |
c43118ecb0a3
patch 8.0.0735: no indication that the quickfix window/buffer changed
Christian Brabandt <cb@256bit.org>
parents:
11611
diff
changeset
|
3558 |
c43118ecb0a3
patch 8.0.0735: no indication that the quickfix window/buffer changed
Christian Brabandt <cb@256bit.org>
parents:
11611
diff
changeset
|
3559 Xopen |
c43118ecb0a3
patch 8.0.0735: no indication that the quickfix window/buffer changed
Christian Brabandt <cb@256bit.org>
parents:
11611
diff
changeset
|
3560 Xolder |
c43118ecb0a3
patch 8.0.0735: no indication that the quickfix window/buffer changed
Christian Brabandt <cb@256bit.org>
parents:
11611
diff
changeset
|
3561 Xolder |
c43118ecb0a3
patch 8.0.0735: no indication that the quickfix window/buffer changed
Christian Brabandt <cb@256bit.org>
parents:
11611
diff
changeset
|
3562 Xaddexpr "F1:10:Line10" |
c43118ecb0a3
patch 8.0.0735: no indication that the quickfix window/buffer changed
Christian Brabandt <cb@256bit.org>
parents:
11611
diff
changeset
|
3563 Xaddexpr "F2:20:Line20" |
c43118ecb0a3
patch 8.0.0735: no indication that the quickfix window/buffer changed
Christian Brabandt <cb@256bit.org>
parents:
11611
diff
changeset
|
3564 call g:Xsetlist([{"filename":"F3", "lnum":30, "text":"Line30"}], 'a') |
c43118ecb0a3
patch 8.0.0735: no indication that the quickfix window/buffer changed
Christian Brabandt <cb@256bit.org>
parents:
11611
diff
changeset
|
3565 call g:Xsetlist([], 'f') |
c43118ecb0a3
patch 8.0.0735: no indication that the quickfix window/buffer changed
Christian Brabandt <cb@256bit.org>
parents:
11611
diff
changeset
|
3566 call assert_equal(8, getbufvar('%', 'changedtick')) |
c43118ecb0a3
patch 8.0.0735: no indication that the quickfix window/buffer changed
Christian Brabandt <cb@256bit.org>
parents:
11611
diff
changeset
|
3567 Xclose |
c43118ecb0a3
patch 8.0.0735: no indication that the quickfix window/buffer changed
Christian Brabandt <cb@256bit.org>
parents:
11611
diff
changeset
|
3568 endfunc |
c43118ecb0a3
patch 8.0.0735: no indication that the quickfix window/buffer changed
Christian Brabandt <cb@256bit.org>
parents:
11611
diff
changeset
|
3569 |
c43118ecb0a3
patch 8.0.0735: no indication that the quickfix window/buffer changed
Christian Brabandt <cb@256bit.org>
parents:
11611
diff
changeset
|
3570 func Test_changedtick() |
12048
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3571 call Xchangedtick_tests('c') |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3572 call Xchangedtick_tests('l') |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3573 endfunc |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3574 |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3575 " Tests for parsing an expression using setqflist() |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3576 func Xsetexpr_tests(cchar) |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3577 call s:setup_commands(a:cchar) |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3578 |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3579 let t = ["File1:10:Line10", "File1:20:Line20"] |
12303
ec7a4fd21dd5
patch 8.0.1031: "text" argument for getqflist() is confusing
Christian Brabandt <cb@256bit.org>
parents:
12299
diff
changeset
|
3580 call g:Xsetlist([], ' ', {'lines' : t}) |
ec7a4fd21dd5
patch 8.0.1031: "text" argument for getqflist() is confusing
Christian Brabandt <cb@256bit.org>
parents:
12299
diff
changeset
|
3581 call g:Xsetlist([], 'a', {'lines' : ["File1:30:Line30"]}) |
12048
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3582 |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3583 let l = g:Xgetlist() |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3584 call assert_equal(3, len(l)) |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3585 call assert_equal(20, l[1].lnum) |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3586 call assert_equal('Line30', l[2].text) |
12303
ec7a4fd21dd5
patch 8.0.1031: "text" argument for getqflist() is confusing
Christian Brabandt <cb@256bit.org>
parents:
12299
diff
changeset
|
3587 call g:Xsetlist([], 'r', {'lines' : ["File2:5:Line5"]}) |
12048
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3588 let l = g:Xgetlist() |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3589 call assert_equal(1, len(l)) |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3590 call assert_equal('Line5', l[0].text) |
12303
ec7a4fd21dd5
patch 8.0.1031: "text" argument for getqflist() is confusing
Christian Brabandt <cb@256bit.org>
parents:
12299
diff
changeset
|
3591 call assert_equal(-1, g:Xsetlist([], 'a', {'lines' : 10})) |
ec7a4fd21dd5
patch 8.0.1031: "text" argument for getqflist() is confusing
Christian Brabandt <cb@256bit.org>
parents:
12299
diff
changeset
|
3592 call assert_equal(-1, g:Xsetlist([], 'a', {'lines' : "F1:10:L10"})) |
12048
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3593 |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3594 call g:Xsetlist([], 'f') |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3595 " Add entries to multiple lists |
12303
ec7a4fd21dd5
patch 8.0.1031: "text" argument for getqflist() is confusing
Christian Brabandt <cb@256bit.org>
parents:
12299
diff
changeset
|
3596 call g:Xsetlist([], 'a', {'nr' : 1, 'lines' : ["File1:10:Line10"]}) |
ec7a4fd21dd5
patch 8.0.1031: "text" argument for getqflist() is confusing
Christian Brabandt <cb@256bit.org>
parents:
12299
diff
changeset
|
3597 call g:Xsetlist([], 'a', {'nr' : 2, 'lines' : ["File2:20:Line20"]}) |
ec7a4fd21dd5
patch 8.0.1031: "text" argument for getqflist() is confusing
Christian Brabandt <cb@256bit.org>
parents:
12299
diff
changeset
|
3598 call g:Xsetlist([], 'a', {'nr' : 1, 'lines' : ["File1:15:Line15"]}) |
ec7a4fd21dd5
patch 8.0.1031: "text" argument for getqflist() is confusing
Christian Brabandt <cb@256bit.org>
parents:
12299
diff
changeset
|
3599 call g:Xsetlist([], 'a', {'nr' : 2, 'lines' : ["File2:25:Line25"]}) |
12048
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3600 call assert_equal('Line15', g:Xgetlist({'nr':1, 'items':1}).items[1].text) |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3601 call assert_equal('Line25', g:Xgetlist({'nr':2, 'items':1}).items[1].text) |
12321
2779d593a706
patch 8.0.1040: cannot use another error format in getqflist()
Christian Brabandt <cb@256bit.org>
parents:
12303
diff
changeset
|
3602 |
2779d593a706
patch 8.0.1040: cannot use another error format in getqflist()
Christian Brabandt <cb@256bit.org>
parents:
12303
diff
changeset
|
3603 " Adding entries using a custom efm |
2779d593a706
patch 8.0.1040: cannot use another error format in getqflist()
Christian Brabandt <cb@256bit.org>
parents:
12303
diff
changeset
|
3604 set efm& |
2779d593a706
patch 8.0.1040: cannot use another error format in getqflist()
Christian Brabandt <cb@256bit.org>
parents:
12303
diff
changeset
|
3605 call g:Xsetlist([], ' ', {'efm' : '%f#%l#%m', |
2779d593a706
patch 8.0.1040: cannot use another error format in getqflist()
Christian Brabandt <cb@256bit.org>
parents:
12303
diff
changeset
|
3606 \ 'lines' : ["F1#10#L10", "F2#20#L20"]}) |
2779d593a706
patch 8.0.1040: cannot use another error format in getqflist()
Christian Brabandt <cb@256bit.org>
parents:
12303
diff
changeset
|
3607 call assert_equal(20, g:Xgetlist({'items':1}).items[1].lnum) |
2779d593a706
patch 8.0.1040: cannot use another error format in getqflist()
Christian Brabandt <cb@256bit.org>
parents:
12303
diff
changeset
|
3608 call g:Xsetlist([], 'a', {'efm' : '%f#%l#%m', 'lines' : ["F3:30:L30"]}) |
2779d593a706
patch 8.0.1040: cannot use another error format in getqflist()
Christian Brabandt <cb@256bit.org>
parents:
12303
diff
changeset
|
3609 call assert_equal('F3:30:L30', g:Xgetlist({'items':1}).items[2].text) |
2779d593a706
patch 8.0.1040: cannot use another error format in getqflist()
Christian Brabandt <cb@256bit.org>
parents:
12303
diff
changeset
|
3610 call assert_equal(20, g:Xgetlist({'items':1}).items[1].lnum) |
2779d593a706
patch 8.0.1040: cannot use another error format in getqflist()
Christian Brabandt <cb@256bit.org>
parents:
12303
diff
changeset
|
3611 call assert_equal(-1, g:Xsetlist([], 'a', {'efm' : [], |
2779d593a706
patch 8.0.1040: cannot use another error format in getqflist()
Christian Brabandt <cb@256bit.org>
parents:
12303
diff
changeset
|
3612 \ 'lines' : ['F1:10:L10']})) |
12048
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3613 endfunc |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3614 |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3615 func Test_setexpr() |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3616 call Xsetexpr_tests('c') |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3617 call Xsetexpr_tests('l') |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3618 endfunc |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3619 |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3620 " Tests for per quickfix/location list directory stack |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3621 func Xmultidirstack_tests(cchar) |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3622 call s:setup_commands(a:cchar) |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3623 |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3624 call g:Xsetlist([], 'f') |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3625 Xexpr "" | Xexpr "" |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3626 |
12303
ec7a4fd21dd5
patch 8.0.1031: "text" argument for getqflist() is confusing
Christian Brabandt <cb@256bit.org>
parents:
12299
diff
changeset
|
3627 call g:Xsetlist([], 'a', {'nr' : 1, 'lines' : ["Entering dir 'Xone/a'"]}) |
ec7a4fd21dd5
patch 8.0.1031: "text" argument for getqflist() is confusing
Christian Brabandt <cb@256bit.org>
parents:
12299
diff
changeset
|
3628 call g:Xsetlist([], 'a', {'nr' : 2, 'lines' : ["Entering dir 'Xtwo/a'"]}) |
ec7a4fd21dd5
patch 8.0.1031: "text" argument for getqflist() is confusing
Christian Brabandt <cb@256bit.org>
parents:
12299
diff
changeset
|
3629 call g:Xsetlist([], 'a', {'nr' : 1, 'lines' : ["one.txt:3:one one one"]}) |
ec7a4fd21dd5
patch 8.0.1031: "text" argument for getqflist() is confusing
Christian Brabandt <cb@256bit.org>
parents:
12299
diff
changeset
|
3630 call g:Xsetlist([], 'a', {'nr' : 2, 'lines' : ["two.txt:5:two two two"]}) |
12048
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3631 |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3632 let l1 = g:Xgetlist({'nr':1, 'items':1}) |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3633 let l2 = g:Xgetlist({'nr':2, 'items':1}) |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3634 call assert_equal('Xone/a/one.txt', bufname(l1.items[1].bufnr)) |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3635 call assert_equal(3, l1.items[1].lnum) |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3636 call assert_equal('Xtwo/a/two.txt', bufname(l2.items[1].bufnr)) |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3637 call assert_equal(5, l2.items[1].lnum) |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3638 endfunc |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3639 |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3640 func Test_multidirstack() |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3641 call mkdir('Xone/a', 'p') |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3642 call mkdir('Xtwo/a', 'p') |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3643 let lines = ['1', '2', 'one one one', '4', 'two two two', '6', '7'] |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3644 call writefile(lines, 'Xone/a/one.txt') |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3645 call writefile(lines, 'Xtwo/a/two.txt') |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3646 let save_efm = &efm |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3647 set efm=%DEntering\ dir\ '%f',%f:%l:%m,%XLeaving\ dir\ '%f' |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3648 |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3649 call Xmultidirstack_tests('c') |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3650 call Xmultidirstack_tests('l') |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3651 |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3652 let &efm = save_efm |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3653 call delete('Xone', 'rf') |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3654 call delete('Xtwo', 'rf') |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3655 endfunc |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3656 |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3657 " Tests for per quickfix/location list file stack |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3658 func Xmultifilestack_tests(cchar) |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3659 call s:setup_commands(a:cchar) |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3660 |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3661 call g:Xsetlist([], 'f') |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3662 Xexpr "" | Xexpr "" |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3663 |
12303
ec7a4fd21dd5
patch 8.0.1031: "text" argument for getqflist() is confusing
Christian Brabandt <cb@256bit.org>
parents:
12299
diff
changeset
|
3664 call g:Xsetlist([], 'a', {'nr' : 1, 'lines' : ["[one.txt]"]}) |
ec7a4fd21dd5
patch 8.0.1031: "text" argument for getqflist() is confusing
Christian Brabandt <cb@256bit.org>
parents:
12299
diff
changeset
|
3665 call g:Xsetlist([], 'a', {'nr' : 2, 'lines' : ["[two.txt]"]}) |
ec7a4fd21dd5
patch 8.0.1031: "text" argument for getqflist() is confusing
Christian Brabandt <cb@256bit.org>
parents:
12299
diff
changeset
|
3666 call g:Xsetlist([], 'a', {'nr' : 1, 'lines' : ["(3,5) one one one"]}) |
ec7a4fd21dd5
patch 8.0.1031: "text" argument for getqflist() is confusing
Christian Brabandt <cb@256bit.org>
parents:
12299
diff
changeset
|
3667 call g:Xsetlist([], 'a', {'nr' : 2, 'lines' : ["(5,9) two two two"]}) |
12048
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3668 |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3669 let l1 = g:Xgetlist({'nr':1, 'items':1}) |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3670 let l2 = g:Xgetlist({'nr':2, 'items':1}) |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3671 call assert_equal('one.txt', bufname(l1.items[1].bufnr)) |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3672 call assert_equal(3, l1.items[1].lnum) |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3673 call assert_equal('two.txt', bufname(l2.items[1].bufnr)) |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3674 call assert_equal(5, l2.items[1].lnum) |
13612
89223f5d5d12
patch 8.0.1678: errorformat "%r" implies "%>"
Christian Brabandt <cb@256bit.org>
parents:
13594
diff
changeset
|
3675 |
89223f5d5d12
patch 8.0.1678: errorformat "%r" implies "%>"
Christian Brabandt <cb@256bit.org>
parents:
13594
diff
changeset
|
3676 " Test for start of a new error line in the same line where a previous |
89223f5d5d12
patch 8.0.1678: errorformat "%r" implies "%>"
Christian Brabandt <cb@256bit.org>
parents:
13594
diff
changeset
|
3677 " error line ends with a file stack. |
89223f5d5d12
patch 8.0.1678: errorformat "%r" implies "%>"
Christian Brabandt <cb@256bit.org>
parents:
13594
diff
changeset
|
3678 let efm_val = 'Error\ l%l\ in\ %f,' |
89223f5d5d12
patch 8.0.1678: errorformat "%r" implies "%>"
Christian Brabandt <cb@256bit.org>
parents:
13594
diff
changeset
|
3679 let efm_val .= '%-P%>(%f%r,Error\ l%l\ in\ %m,%-Q)%r' |
28421
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
3680 let lines =<< trim END |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
3681 (one.txt |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
3682 Error l4 in one.txt |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
3683 ) (two.txt |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
3684 Error l6 in two.txt |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
3685 ) |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
3686 Error l8 in one.txt |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
3687 END |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
3688 let l = g:Xgetlist({'lines': lines, 'efm' : efm_val}) |
13612
89223f5d5d12
patch 8.0.1678: errorformat "%r" implies "%>"
Christian Brabandt <cb@256bit.org>
parents:
13594
diff
changeset
|
3689 call assert_equal(3, len(l.items)) |
89223f5d5d12
patch 8.0.1678: errorformat "%r" implies "%>"
Christian Brabandt <cb@256bit.org>
parents:
13594
diff
changeset
|
3690 call assert_equal('one.txt', bufname(l.items[0].bufnr)) |
89223f5d5d12
patch 8.0.1678: errorformat "%r" implies "%>"
Christian Brabandt <cb@256bit.org>
parents:
13594
diff
changeset
|
3691 call assert_equal(4, l.items[0].lnum) |
89223f5d5d12
patch 8.0.1678: errorformat "%r" implies "%>"
Christian Brabandt <cb@256bit.org>
parents:
13594
diff
changeset
|
3692 call assert_equal('one.txt', l.items[0].text) |
89223f5d5d12
patch 8.0.1678: errorformat "%r" implies "%>"
Christian Brabandt <cb@256bit.org>
parents:
13594
diff
changeset
|
3693 call assert_equal('two.txt', bufname(l.items[1].bufnr)) |
89223f5d5d12
patch 8.0.1678: errorformat "%r" implies "%>"
Christian Brabandt <cb@256bit.org>
parents:
13594
diff
changeset
|
3694 call assert_equal(6, l.items[1].lnum) |
89223f5d5d12
patch 8.0.1678: errorformat "%r" implies "%>"
Christian Brabandt <cb@256bit.org>
parents:
13594
diff
changeset
|
3695 call assert_equal('two.txt', l.items[1].text) |
89223f5d5d12
patch 8.0.1678: errorformat "%r" implies "%>"
Christian Brabandt <cb@256bit.org>
parents:
13594
diff
changeset
|
3696 call assert_equal('one.txt', bufname(l.items[2].bufnr)) |
89223f5d5d12
patch 8.0.1678: errorformat "%r" implies "%>"
Christian Brabandt <cb@256bit.org>
parents:
13594
diff
changeset
|
3697 call assert_equal(8, l.items[2].lnum) |
89223f5d5d12
patch 8.0.1678: errorformat "%r" implies "%>"
Christian Brabandt <cb@256bit.org>
parents:
13594
diff
changeset
|
3698 call assert_equal('', l.items[2].text) |
12048
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3699 endfunc |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3700 |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3701 func Test_multifilestack() |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3702 let lines = ['1', '2', 'one one one', '4', 'two two two', '6', '7'] |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3703 call writefile(lines, 'one.txt') |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3704 call writefile(lines, 'two.txt') |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3705 let save_efm = &efm |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3706 set efm=%+P[%f],(%l\\,%c)\ %m,%-Q |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3707 |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3708 call Xmultifilestack_tests('c') |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3709 call Xmultifilestack_tests('l') |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3710 |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3711 let &efm = save_efm |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3712 call delete('one.txt') |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3713 call delete('two.txt') |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3714 endfunc |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3715 |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3716 " Tests for per buffer 'efm' setting |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3717 func Test_perbuf_efm() |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3718 call writefile(["File1-10-Line10"], 'one.txt') |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3719 call writefile(["File2#20#Line20"], 'two.txt') |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3720 set efm=%f#%l#%m |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3721 new | only |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3722 new |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3723 setlocal efm=%f-%l-%m |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3724 cfile one.txt |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3725 wincmd w |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3726 caddfile two.txt |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3727 |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3728 let l = getqflist() |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3729 call assert_equal(10, l[0].lnum) |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3730 call assert_equal('Line20', l[1].text) |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3731 |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3732 set efm& |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3733 new | only |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3734 call delete('one.txt') |
ebd313aa5a6c
patch 8.0.0904: cannot set a location list from text
Christian Brabandt <cb@256bit.org>
parents:
11800
diff
changeset
|
3735 call delete('two.txt') |
11705
c43118ecb0a3
patch 8.0.0735: no indication that the quickfix window/buffer changed
Christian Brabandt <cb@256bit.org>
parents:
11611
diff
changeset
|
3736 endfunc |
11800
5ceaecedbad2
patch 8.0.0782: using freed memory in quickfix code
Christian Brabandt <cb@256bit.org>
parents:
11705
diff
changeset
|
3737 |
5ceaecedbad2
patch 8.0.0782: using freed memory in quickfix code
Christian Brabandt <cb@256bit.org>
parents:
11705
diff
changeset
|
3738 " Open multiple help windows using ":lhelpgrep |
5ceaecedbad2
patch 8.0.0782: using freed memory in quickfix code
Christian Brabandt <cb@256bit.org>
parents:
11705
diff
changeset
|
3739 " This test used to crash Vim |
5ceaecedbad2
patch 8.0.0782: using freed memory in quickfix code
Christian Brabandt <cb@256bit.org>
parents:
11705
diff
changeset
|
3740 func Test_Multi_LL_Help() |
21765
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
3741 new | only |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
3742 lhelpgrep window |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
3743 lopen |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
3744 e# |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
3745 lhelpgrep buffer |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
3746 call assert_equal(3, winnr('$')) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
3747 call assert_true(len(getloclist(1)) != 0) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
3748 call assert_true(len(getloclist(2)) != 0) |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
3749 new | only |
11800
5ceaecedbad2
patch 8.0.0782: using freed memory in quickfix code
Christian Brabandt <cb@256bit.org>
parents:
11705
diff
changeset
|
3750 endfunc |
12084
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3751 |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3752 " Tests for adding new quickfix lists using setqflist() |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3753 func XaddQf_tests(cchar) |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3754 call s:setup_commands(a:cchar) |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3755 |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3756 " Create a new list using ' ' for action |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3757 call g:Xsetlist([], 'f') |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3758 call g:Xsetlist([], ' ', {'title' : 'Test1'}) |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3759 let l = g:Xgetlist({'nr' : '$', 'all' : 1}) |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3760 call assert_equal(1, l.nr) |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3761 call assert_equal('Test1', l.title) |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3762 |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3763 " Create a new list using ' ' for action and '$' for 'nr' |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3764 call g:Xsetlist([], 'f') |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3765 call g:Xsetlist([], ' ', {'title' : 'Test2', 'nr' : '$'}) |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3766 let l = g:Xgetlist({'nr' : '$', 'all' : 1}) |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3767 call assert_equal(1, l.nr) |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3768 call assert_equal('Test2', l.title) |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3769 |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3770 " Create a new list using 'a' for action |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3771 call g:Xsetlist([], 'f') |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3772 call g:Xsetlist([], 'a', {'title' : 'Test3'}) |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3773 let l = g:Xgetlist({'nr' : '$', 'all' : 1}) |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3774 call assert_equal(1, l.nr) |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3775 call assert_equal('Test3', l.title) |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3776 |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3777 " Create a new list using 'a' for action and '$' for 'nr' |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3778 call g:Xsetlist([], 'f') |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3779 call g:Xsetlist([], 'a', {'title' : 'Test3', 'nr' : '$'}) |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3780 call g:Xsetlist([], 'a', {'title' : 'Test4'}) |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3781 let l = g:Xgetlist({'nr' : '$', 'all' : 1}) |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3782 call assert_equal(1, l.nr) |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3783 call assert_equal('Test4', l.title) |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3784 |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3785 " Adding a quickfix list should remove all the lists following the current |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3786 " list. |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3787 Xexpr "" | Xexpr "" | Xexpr "" |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3788 silent! 10Xolder |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3789 call g:Xsetlist([], ' ', {'title' : 'Test5'}) |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3790 let l = g:Xgetlist({'nr' : '$', 'all' : 1}) |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3791 call assert_equal(2, l.nr) |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3792 call assert_equal('Test5', l.title) |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3793 |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3794 " Add a quickfix list using '$' as the list number. |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3795 let lastqf = g:Xgetlist({'nr':'$'}).nr |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3796 silent! 99Xolder |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3797 call g:Xsetlist([], ' ', {'nr' : '$', 'title' : 'Test6'}) |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3798 let l = g:Xgetlist({'nr' : '$', 'all' : 1}) |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3799 call assert_equal(lastqf + 1, l.nr) |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3800 call assert_equal('Test6', l.title) |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3801 |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3802 " Add a quickfix list using 'nr' set to one more than the quickfix |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3803 " list size. |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3804 let lastqf = g:Xgetlist({'nr':'$'}).nr |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3805 silent! 99Xolder |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3806 call g:Xsetlist([], ' ', {'nr' : lastqf + 1, 'title' : 'Test7'}) |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3807 let l = g:Xgetlist({'nr' : '$', 'all' : 1}) |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3808 call assert_equal(lastqf + 1, l.nr) |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3809 call assert_equal('Test7', l.title) |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3810 |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3811 " Add a quickfix list to a stack with 10 lists using 'nr' set to '$' |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3812 exe repeat('Xexpr "" |', 9) . 'Xexpr ""' |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3813 silent! 99Xolder |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3814 call g:Xsetlist([], ' ', {'nr' : '$', 'title' : 'Test8'}) |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3815 let l = g:Xgetlist({'nr' : '$', 'all' : 1}) |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3816 call assert_equal(10, l.nr) |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3817 call assert_equal('Test8', l.title) |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3818 |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3819 " Add a quickfix list using 'nr' set to a value greater than 10 |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3820 call assert_equal(-1, g:Xsetlist([], ' ', {'nr' : 12, 'title' : 'Test9'})) |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3821 |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3822 " Try adding a quickfix list with 'nr' set to a value greater than the |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3823 " quickfix list size but less than 10. |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3824 call g:Xsetlist([], 'f') |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3825 Xexpr "" | Xexpr "" | Xexpr "" |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3826 silent! 99Xolder |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3827 call assert_equal(-1, g:Xsetlist([], ' ', {'nr' : 8, 'title' : 'Test10'})) |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3828 |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3829 " Add a quickfix list using 'nr' set to a some string or list |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3830 call assert_equal(-1, g:Xsetlist([], ' ', {'nr' : [1,2], 'title' : 'Test11'})) |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3831 endfunc |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3832 |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3833 func Test_add_qf() |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3834 call XaddQf_tests('c') |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3835 call XaddQf_tests('l') |
69ce6b3f0834
patch 8.0.0922: quickfix list always added after current one
Christian Brabandt <cb@256bit.org>
parents:
12048
diff
changeset
|
3836 endfunc |
12252
3d0e042ec13c
patch 8.0.1006: quickfix list changes when parsing text with 'erroformat'
Christian Brabandt <cb@256bit.org>
parents:
12084
diff
changeset
|
3837 |
3d0e042ec13c
patch 8.0.1006: quickfix list changes when parsing text with 'erroformat'
Christian Brabandt <cb@256bit.org>
parents:
12084
diff
changeset
|
3838 " Test for getting the quickfix list items from some text without modifying |
3d0e042ec13c
patch 8.0.1006: quickfix list changes when parsing text with 'erroformat'
Christian Brabandt <cb@256bit.org>
parents:
12084
diff
changeset
|
3839 " the quickfix stack |
12303
ec7a4fd21dd5
patch 8.0.1031: "text" argument for getqflist() is confusing
Christian Brabandt <cb@256bit.org>
parents:
12299
diff
changeset
|
3840 func XgetListFromLines(cchar) |
12252
3d0e042ec13c
patch 8.0.1006: quickfix list changes when parsing text with 'erroformat'
Christian Brabandt <cb@256bit.org>
parents:
12084
diff
changeset
|
3841 call s:setup_commands(a:cchar) |
3d0e042ec13c
patch 8.0.1006: quickfix list changes when parsing text with 'erroformat'
Christian Brabandt <cb@256bit.org>
parents:
12084
diff
changeset
|
3842 call g:Xsetlist([], 'f') |
3d0e042ec13c
patch 8.0.1006: quickfix list changes when parsing text with 'erroformat'
Christian Brabandt <cb@256bit.org>
parents:
12084
diff
changeset
|
3843 |
12303
ec7a4fd21dd5
patch 8.0.1031: "text" argument for getqflist() is confusing
Christian Brabandt <cb@256bit.org>
parents:
12299
diff
changeset
|
3844 let l = g:Xgetlist({'lines' : ["File2:20:Line20", "File2:30:Line30"]}).items |
12252
3d0e042ec13c
patch 8.0.1006: quickfix list changes when parsing text with 'erroformat'
Christian Brabandt <cb@256bit.org>
parents:
12084
diff
changeset
|
3845 call assert_equal(2, len(l)) |
3d0e042ec13c
patch 8.0.1006: quickfix list changes when parsing text with 'erroformat'
Christian Brabandt <cb@256bit.org>
parents:
12084
diff
changeset
|
3846 call assert_equal(30, l[1].lnum) |
3d0e042ec13c
patch 8.0.1006: quickfix list changes when parsing text with 'erroformat'
Christian Brabandt <cb@256bit.org>
parents:
12084
diff
changeset
|
3847 |
12303
ec7a4fd21dd5
patch 8.0.1031: "text" argument for getqflist() is confusing
Christian Brabandt <cb@256bit.org>
parents:
12299
diff
changeset
|
3848 call assert_equal({}, g:Xgetlist({'lines' : 10})) |
ec7a4fd21dd5
patch 8.0.1031: "text" argument for getqflist() is confusing
Christian Brabandt <cb@256bit.org>
parents:
12299
diff
changeset
|
3849 call assert_equal({}, g:Xgetlist({'lines' : 'File1:10:Line10'})) |
ec7a4fd21dd5
patch 8.0.1031: "text" argument for getqflist() is confusing
Christian Brabandt <cb@256bit.org>
parents:
12299
diff
changeset
|
3850 call assert_equal([], g:Xgetlist({'lines' : []}).items) |
ec7a4fd21dd5
patch 8.0.1031: "text" argument for getqflist() is confusing
Christian Brabandt <cb@256bit.org>
parents:
12299
diff
changeset
|
3851 call assert_equal([], g:Xgetlist({'lines' : [10, 20]}).items) |
12252
3d0e042ec13c
patch 8.0.1006: quickfix list changes when parsing text with 'erroformat'
Christian Brabandt <cb@256bit.org>
parents:
12084
diff
changeset
|
3852 |
12321
2779d593a706
patch 8.0.1040: cannot use another error format in getqflist()
Christian Brabandt <cb@256bit.org>
parents:
12303
diff
changeset
|
3853 " Parse text using a custom efm |
2779d593a706
patch 8.0.1040: cannot use another error format in getqflist()
Christian Brabandt <cb@256bit.org>
parents:
12303
diff
changeset
|
3854 set efm& |
2779d593a706
patch 8.0.1040: cannot use another error format in getqflist()
Christian Brabandt <cb@256bit.org>
parents:
12303
diff
changeset
|
3855 let l = g:Xgetlist({'lines':['File3#30#Line30'], 'efm' : '%f#%l#%m'}).items |
2779d593a706
patch 8.0.1040: cannot use another error format in getqflist()
Christian Brabandt <cb@256bit.org>
parents:
12303
diff
changeset
|
3856 call assert_equal('Line30', l[0].text) |
2779d593a706
patch 8.0.1040: cannot use another error format in getqflist()
Christian Brabandt <cb@256bit.org>
parents:
12303
diff
changeset
|
3857 let l = g:Xgetlist({'lines':['File3:30:Line30'], 'efm' : '%f-%l-%m'}).items |
2779d593a706
patch 8.0.1040: cannot use another error format in getqflist()
Christian Brabandt <cb@256bit.org>
parents:
12303
diff
changeset
|
3858 call assert_equal('File3:30:Line30', l[0].text) |
2779d593a706
patch 8.0.1040: cannot use another error format in getqflist()
Christian Brabandt <cb@256bit.org>
parents:
12303
diff
changeset
|
3859 let l = g:Xgetlist({'lines':['File3:30:Line30'], 'efm' : [1,2]}) |
2779d593a706
patch 8.0.1040: cannot use another error format in getqflist()
Christian Brabandt <cb@256bit.org>
parents:
12303
diff
changeset
|
3860 call assert_equal({}, l) |
2779d593a706
patch 8.0.1040: cannot use another error format in getqflist()
Christian Brabandt <cb@256bit.org>
parents:
12303
diff
changeset
|
3861 call assert_fails("call g:Xgetlist({'lines':['abc'], 'efm':'%2'})", 'E376:') |
2779d593a706
patch 8.0.1040: cannot use another error format in getqflist()
Christian Brabandt <cb@256bit.org>
parents:
12303
diff
changeset
|
3862 call assert_fails("call g:Xgetlist({'lines':['abc'], 'efm':''})", 'E378:') |
2779d593a706
patch 8.0.1040: cannot use another error format in getqflist()
Christian Brabandt <cb@256bit.org>
parents:
12303
diff
changeset
|
3863 |
12252
3d0e042ec13c
patch 8.0.1006: quickfix list changes when parsing text with 'erroformat'
Christian Brabandt <cb@256bit.org>
parents:
12084
diff
changeset
|
3864 " Make sure that the quickfix stack is not modified |
3d0e042ec13c
patch 8.0.1006: quickfix list changes when parsing text with 'erroformat'
Christian Brabandt <cb@256bit.org>
parents:
12084
diff
changeset
|
3865 call assert_equal(0, g:Xgetlist({'nr' : '$'}).nr) |
3d0e042ec13c
patch 8.0.1006: quickfix list changes when parsing text with 'erroformat'
Christian Brabandt <cb@256bit.org>
parents:
12084
diff
changeset
|
3866 endfunc |
3d0e042ec13c
patch 8.0.1006: quickfix list changes when parsing text with 'erroformat'
Christian Brabandt <cb@256bit.org>
parents:
12084
diff
changeset
|
3867 |
12303
ec7a4fd21dd5
patch 8.0.1031: "text" argument for getqflist() is confusing
Christian Brabandt <cb@256bit.org>
parents:
12299
diff
changeset
|
3868 func Test_get_list_from_lines() |
ec7a4fd21dd5
patch 8.0.1031: "text" argument for getqflist() is confusing
Christian Brabandt <cb@256bit.org>
parents:
12299
diff
changeset
|
3869 call XgetListFromLines('c') |
ec7a4fd21dd5
patch 8.0.1031: "text" argument for getqflist() is confusing
Christian Brabandt <cb@256bit.org>
parents:
12299
diff
changeset
|
3870 call XgetListFromLines('l') |
12252
3d0e042ec13c
patch 8.0.1006: quickfix list changes when parsing text with 'erroformat'
Christian Brabandt <cb@256bit.org>
parents:
12084
diff
changeset
|
3871 endfunc |
12287
20641a7e1fc9
patch 8.0.1023: it is not easy to identify a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
12252
diff
changeset
|
3872 |
20641a7e1fc9
patch 8.0.1023: it is not easy to identify a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
12252
diff
changeset
|
3873 " Tests for the quickfix list id |
20641a7e1fc9
patch 8.0.1023: it is not easy to identify a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
12252
diff
changeset
|
3874 func Xqfid_tests(cchar) |
20641a7e1fc9
patch 8.0.1023: it is not easy to identify a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
12252
diff
changeset
|
3875 call s:setup_commands(a:cchar) |
20641a7e1fc9
patch 8.0.1023: it is not easy to identify a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
12252
diff
changeset
|
3876 |
20641a7e1fc9
patch 8.0.1023: it is not easy to identify a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
12252
diff
changeset
|
3877 call g:Xsetlist([], 'f') |
13026
7c0e0e923537
patch 8.0.1389: getqflist() items are missing if not set
Christian Brabandt <cb@256bit.org>
parents:
13016
diff
changeset
|
3878 call assert_equal(0, g:Xgetlist({'id':0}).id) |
12287
20641a7e1fc9
patch 8.0.1023: it is not easy to identify a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
12252
diff
changeset
|
3879 Xexpr '' |
20641a7e1fc9
patch 8.0.1023: it is not easy to identify a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
12252
diff
changeset
|
3880 let start_id = g:Xgetlist({'id' : 0}).id |
20641a7e1fc9
patch 8.0.1023: it is not easy to identify a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
12252
diff
changeset
|
3881 Xexpr '' | Xexpr '' |
20641a7e1fc9
patch 8.0.1023: it is not easy to identify a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
12252
diff
changeset
|
3882 Xolder |
20641a7e1fc9
patch 8.0.1023: it is not easy to identify a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
12252
diff
changeset
|
3883 call assert_equal(start_id, g:Xgetlist({'id':0, 'nr':1}).id) |
20641a7e1fc9
patch 8.0.1023: it is not easy to identify a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
12252
diff
changeset
|
3884 call assert_equal(start_id + 1, g:Xgetlist({'id':0, 'nr':0}).id) |
20641a7e1fc9
patch 8.0.1023: it is not easy to identify a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
12252
diff
changeset
|
3885 call assert_equal(start_id + 2, g:Xgetlist({'id':0, 'nr':'$'}).id) |
13026
7c0e0e923537
patch 8.0.1389: getqflist() items are missing if not set
Christian Brabandt <cb@256bit.org>
parents:
13016
diff
changeset
|
3886 call assert_equal(0, g:Xgetlist({'id':0, 'nr':99}).id) |
12287
20641a7e1fc9
patch 8.0.1023: it is not easy to identify a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
12252
diff
changeset
|
3887 call assert_equal(2, g:Xgetlist({'id':start_id + 1, 'nr':0}).nr) |
13026
7c0e0e923537
patch 8.0.1389: getqflist() items are missing if not set
Christian Brabandt <cb@256bit.org>
parents:
13016
diff
changeset
|
3888 call assert_equal(0, g:Xgetlist({'id':99, 'nr':0}).id) |
7c0e0e923537
patch 8.0.1389: getqflist() items are missing if not set
Christian Brabandt <cb@256bit.org>
parents:
13016
diff
changeset
|
3889 call assert_equal(0, g:Xgetlist({'id':"abc", 'nr':0}).id) |
12287
20641a7e1fc9
patch 8.0.1023: it is not easy to identify a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
12252
diff
changeset
|
3890 |
20641a7e1fc9
patch 8.0.1023: it is not easy to identify a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
12252
diff
changeset
|
3891 call g:Xsetlist([], 'a', {'id':start_id, 'context':[1,2]}) |
20641a7e1fc9
patch 8.0.1023: it is not easy to identify a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
12252
diff
changeset
|
3892 call assert_equal([1,2], g:Xgetlist({'nr':1, 'context':1}).context) |
12303
ec7a4fd21dd5
patch 8.0.1031: "text" argument for getqflist() is confusing
Christian Brabandt <cb@256bit.org>
parents:
12299
diff
changeset
|
3893 call g:Xsetlist([], 'a', {'id':start_id+1, 'lines':['F1:10:L10']}) |
12287
20641a7e1fc9
patch 8.0.1023: it is not easy to identify a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
12252
diff
changeset
|
3894 call assert_equal('L10', g:Xgetlist({'nr':2, 'items':1}).items[0].text) |
20641a7e1fc9
patch 8.0.1023: it is not easy to identify a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
12252
diff
changeset
|
3895 call assert_equal(-1, g:Xsetlist([], 'a', {'id':999, 'title':'Vim'})) |
20641a7e1fc9
patch 8.0.1023: it is not easy to identify a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
12252
diff
changeset
|
3896 call assert_equal(-1, g:Xsetlist([], 'a', {'id':'abc', 'title':'Vim'})) |
20641a7e1fc9
patch 8.0.1023: it is not easy to identify a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
12252
diff
changeset
|
3897 |
20641a7e1fc9
patch 8.0.1023: it is not easy to identify a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
12252
diff
changeset
|
3898 let qfid = g:Xgetlist({'id':0, 'nr':0}) |
20641a7e1fc9
patch 8.0.1023: it is not easy to identify a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
12252
diff
changeset
|
3899 call g:Xsetlist([], 'f') |
13026
7c0e0e923537
patch 8.0.1389: getqflist() items are missing if not set
Christian Brabandt <cb@256bit.org>
parents:
13016
diff
changeset
|
3900 call assert_equal(0, g:Xgetlist({'id':qfid, 'nr':0}).id) |
12287
20641a7e1fc9
patch 8.0.1023: it is not easy to identify a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
12252
diff
changeset
|
3901 endfunc |
20641a7e1fc9
patch 8.0.1023: it is not easy to identify a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
12252
diff
changeset
|
3902 |
20641a7e1fc9
patch 8.0.1023: it is not easy to identify a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
12252
diff
changeset
|
3903 func Test_qf_id() |
20641a7e1fc9
patch 8.0.1023: it is not easy to identify a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
12252
diff
changeset
|
3904 call Xqfid_tests('c') |
20641a7e1fc9
patch 8.0.1023: it is not easy to identify a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
12252
diff
changeset
|
3905 call Xqfid_tests('l') |
20641a7e1fc9
patch 8.0.1023: it is not easy to identify a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
12252
diff
changeset
|
3906 endfunc |
13016
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3907 |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3908 func Xqfjump_tests(cchar) |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3909 call s:setup_commands(a:cchar) |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3910 |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3911 call writefile(["Line1\tFoo", "Line2"], 'F1') |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3912 call writefile(["Line1\tBar", "Line2"], 'F2') |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3913 call writefile(["Line1\tBaz", "Line2"], 'F3') |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3914 |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3915 call g:Xsetlist([], 'f') |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3916 |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3917 " Tests for |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3918 " Jumping to a line using a pattern |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3919 " Jumping to a column greater than the last column in a line |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3920 " Jumping to a line greater than the last line in the file |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3921 let l = [] |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3922 for i in range(1, 7) |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3923 call add(l, {}) |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3924 endfor |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3925 let l[0].filename='F1' |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3926 let l[0].pattern='Line1' |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3927 let l[1].filename='F2' |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3928 let l[1].pattern='Line1' |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3929 let l[2].filename='F3' |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3930 let l[2].pattern='Line1' |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3931 let l[3].filename='F3' |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3932 let l[3].lnum=1 |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3933 let l[3].col=9 |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3934 let l[3].vcol=1 |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3935 let l[4].filename='F3' |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3936 let l[4].lnum=99 |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3937 let l[5].filename='F3' |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3938 let l[5].lnum=1 |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3939 let l[5].col=99 |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3940 let l[5].vcol=1 |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3941 let l[6].filename='F3' |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3942 let l[6].pattern='abcxyz' |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3943 |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3944 call g:Xsetlist([], ' ', {'items' : l}) |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3945 Xopen | only |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3946 2Xnext |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3947 call assert_equal(3, g:Xgetlist({'idx' : 0}).idx) |
20978
2c3e7a6bd6c6
patch 8.2.1040: not enough testing for movement commands
Bram Moolenaar <Bram@vim.org>
parents:
20814
diff
changeset
|
3948 call assert_equal('F3', @%) |
13016
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3949 Xnext |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3950 call assert_equal(7, col('.')) |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3951 Xnext |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3952 call assert_equal(2, line('.')) |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3953 Xnext |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3954 call assert_equal(9, col('.')) |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3955 2 |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3956 Xnext |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3957 call assert_equal(2, line('.')) |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3958 |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3959 if a:cchar == 'l' |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3960 " When jumping to a location list entry in the location list window and |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3961 " no usable windows are available, then a new window should be opened. |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3962 enew! | new | only |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3963 call g:Xsetlist([], 'f') |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3964 setlocal buftype=nofile |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3965 new |
28421
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
3966 let lines =<< trim END |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
3967 F1:1:1:Line1 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
3968 F1:2:2:Line2 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
3969 F2:1:1:Line1 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
3970 F2:2:2:Line2 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
3971 F3:1:1:Line1 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
3972 F3:2:2:Line2 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
3973 END |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
3974 call g:Xsetlist([], ' ', {'lines': lines}) |
13016
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3975 Xopen |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3976 let winid = win_getid() |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3977 wincmd p |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3978 close |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3979 call win_gotoid(winid) |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3980 Xnext |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3981 call assert_equal(3, winnr('$')) |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3982 call assert_equal(1, winnr()) |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3983 call assert_equal(2, line('.')) |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3984 |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3985 " When jumping to an entry in the location list window and the window |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3986 " associated with the location list is not present and a window containing |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3987 " the file is already present, then that window should be used. |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3988 close |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3989 belowright new |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3990 call g:Xsetlist([], 'f') |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3991 edit F3 |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3992 call win_gotoid(winid) |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3993 Xlast |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3994 call assert_equal(3, winnr()) |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3995 call assert_equal(6, g:Xgetlist({'size' : 1}).size) |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3996 call assert_equal(winid, g:Xgetlist({'winid' : 1}).winid) |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3997 endif |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3998 |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
3999 " Cleanup |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
4000 enew! |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
4001 new | only |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
4002 |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
4003 call delete('F1') |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
4004 call delete('F2') |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
4005 call delete('F3') |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
4006 endfunc |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
4007 |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
4008 func Test_qfjump() |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
4009 call Xqfjump_tests('c') |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
4010 call Xqfjump_tests('l') |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12954
diff
changeset
|
4011 endfunc |
13026
7c0e0e923537
patch 8.0.1389: getqflist() items are missing if not set
Christian Brabandt <cb@256bit.org>
parents:
13016
diff
changeset
|
4012 |
7c0e0e923537
patch 8.0.1389: getqflist() items are missing if not set
Christian Brabandt <cb@256bit.org>
parents:
13016
diff
changeset
|
4013 " Tests for the getqflist() and getloclist() functions when the list is not |
7c0e0e923537
patch 8.0.1389: getqflist() items are missing if not set
Christian Brabandt <cb@256bit.org>
parents:
13016
diff
changeset
|
4014 " present or is empty |
7c0e0e923537
patch 8.0.1389: getqflist() items are missing if not set
Christian Brabandt <cb@256bit.org>
parents:
13016
diff
changeset
|
4015 func Xgetlist_empty_tests(cchar) |
7c0e0e923537
patch 8.0.1389: getqflist() items are missing if not set
Christian Brabandt <cb@256bit.org>
parents:
13016
diff
changeset
|
4016 call s:setup_commands(a:cchar) |
7c0e0e923537
patch 8.0.1389: getqflist() items are missing if not set
Christian Brabandt <cb@256bit.org>
parents:
13016
diff
changeset
|
4017 |
7c0e0e923537
patch 8.0.1389: getqflist() items are missing if not set
Christian Brabandt <cb@256bit.org>
parents:
13016
diff
changeset
|
4018 " Empty quickfix stack |
7c0e0e923537
patch 8.0.1389: getqflist() items are missing if not set
Christian Brabandt <cb@256bit.org>
parents:
13016
diff
changeset
|
4019 call g:Xsetlist([], 'f') |
7c0e0e923537
patch 8.0.1389: getqflist() items are missing if not set
Christian Brabandt <cb@256bit.org>
parents:
13016
diff
changeset
|
4020 call assert_equal('', g:Xgetlist({'context' : 0}).context) |
7c0e0e923537
patch 8.0.1389: getqflist() items are missing if not set
Christian Brabandt <cb@256bit.org>
parents:
13016
diff
changeset
|
4021 call assert_equal(0, g:Xgetlist({'id' : 0}).id) |
7c0e0e923537
patch 8.0.1389: getqflist() items are missing if not set
Christian Brabandt <cb@256bit.org>
parents:
13016
diff
changeset
|
4022 call assert_equal(0, g:Xgetlist({'idx' : 0}).idx) |
7c0e0e923537
patch 8.0.1389: getqflist() items are missing if not set
Christian Brabandt <cb@256bit.org>
parents:
13016
diff
changeset
|
4023 call assert_equal([], g:Xgetlist({'items' : 0}).items) |
7c0e0e923537
patch 8.0.1389: getqflist() items are missing if not set
Christian Brabandt <cb@256bit.org>
parents:
13016
diff
changeset
|
4024 call assert_equal(0, g:Xgetlist({'nr' : 0}).nr) |
7c0e0e923537
patch 8.0.1389: getqflist() items are missing if not set
Christian Brabandt <cb@256bit.org>
parents:
13016
diff
changeset
|
4025 call assert_equal(0, g:Xgetlist({'size' : 0}).size) |
7c0e0e923537
patch 8.0.1389: getqflist() items are missing if not set
Christian Brabandt <cb@256bit.org>
parents:
13016
diff
changeset
|
4026 call assert_equal('', g:Xgetlist({'title' : 0}).title) |
7c0e0e923537
patch 8.0.1389: getqflist() items are missing if not set
Christian Brabandt <cb@256bit.org>
parents:
13016
diff
changeset
|
4027 call assert_equal(0, g:Xgetlist({'winid' : 0}).winid) |
13062
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13026
diff
changeset
|
4028 call assert_equal(0, g:Xgetlist({'changedtick' : 0}).changedtick) |
14664
8770189c3e22
patch 8.1.0345: cannot get the window id associated with the location list
Christian Brabandt <cb@256bit.org>
parents:
14648
diff
changeset
|
4029 if a:cchar == 'c' |
8770189c3e22
patch 8.1.0345: cannot get the window id associated with the location list
Christian Brabandt <cb@256bit.org>
parents:
14648
diff
changeset
|
4030 call assert_equal({'context' : '', 'id' : 0, 'idx' : 0, |
16019
096b8ccd855e
patch 8.1.1015: quickfix buffer shows up in list, can't get buffer number
Bram Moolenaar <Bram@vim.org>
parents:
15965
diff
changeset
|
4031 \ 'items' : [], 'nr' : 0, 'size' : 0, 'qfbufnr' : 0, |
21409
2c40e60017a8
patch 8.2.1255: cannot use a lambda with quickfix functions
Bram Moolenaar <Bram@vim.org>
parents:
21265
diff
changeset
|
4032 \ 'title' : '', 'winid' : 0, 'changedtick': 0, |
2c40e60017a8
patch 8.2.1255: cannot use a lambda with quickfix functions
Bram Moolenaar <Bram@vim.org>
parents:
21265
diff
changeset
|
4033 \ 'quickfixtextfunc' : ''}, g:Xgetlist({'all' : 0})) |
14664
8770189c3e22
patch 8.1.0345: cannot get the window id associated with the location list
Christian Brabandt <cb@256bit.org>
parents:
14648
diff
changeset
|
4034 else |
8770189c3e22
patch 8.1.0345: cannot get the window id associated with the location list
Christian Brabandt <cb@256bit.org>
parents:
14648
diff
changeset
|
4035 call assert_equal({'context' : '', 'id' : 0, 'idx' : 0, |
8770189c3e22
patch 8.1.0345: cannot get the window id associated with the location list
Christian Brabandt <cb@256bit.org>
parents:
14648
diff
changeset
|
4036 \ 'items' : [], 'nr' : 0, 'size' : 0, 'title' : '', |
16019
096b8ccd855e
patch 8.1.1015: quickfix buffer shows up in list, can't get buffer number
Bram Moolenaar <Bram@vim.org>
parents:
15965
diff
changeset
|
4037 \ 'winid' : 0, 'changedtick': 0, 'filewinid' : 0, |
21409
2c40e60017a8
patch 8.2.1255: cannot use a lambda with quickfix functions
Bram Moolenaar <Bram@vim.org>
parents:
21265
diff
changeset
|
4038 \ 'qfbufnr' : 0, 'quickfixtextfunc' : ''}, |
14664
8770189c3e22
patch 8.1.0345: cannot get the window id associated with the location list
Christian Brabandt <cb@256bit.org>
parents:
14648
diff
changeset
|
4039 \ g:Xgetlist({'all' : 0})) |
8770189c3e22
patch 8.1.0345: cannot get the window id associated with the location list
Christian Brabandt <cb@256bit.org>
parents:
14648
diff
changeset
|
4040 endif |
13026
7c0e0e923537
patch 8.0.1389: getqflist() items are missing if not set
Christian Brabandt <cb@256bit.org>
parents:
13016
diff
changeset
|
4041 |
13115
9812a9ca3ab2
patch 8.0.1432: after ":copen" can't get the window-ID of the quickfix window
Christian Brabandt <cb@256bit.org>
parents:
13105
diff
changeset
|
4042 " Quickfix window with empty stack |
9812a9ca3ab2
patch 8.0.1432: after ":copen" can't get the window-ID of the quickfix window
Christian Brabandt <cb@256bit.org>
parents:
13105
diff
changeset
|
4043 silent! Xopen |
9812a9ca3ab2
patch 8.0.1432: after ":copen" can't get the window-ID of the quickfix window
Christian Brabandt <cb@256bit.org>
parents:
13105
diff
changeset
|
4044 let qfwinid = (a:cchar == 'c') ? win_getid() : 0 |
16019
096b8ccd855e
patch 8.1.1015: quickfix buffer shows up in list, can't get buffer number
Bram Moolenaar <Bram@vim.org>
parents:
15965
diff
changeset
|
4045 let qfbufnr = (a:cchar == 'c') ? bufnr('') : 0 |
13115
9812a9ca3ab2
patch 8.0.1432: after ":copen" can't get the window-ID of the quickfix window
Christian Brabandt <cb@256bit.org>
parents:
13105
diff
changeset
|
4046 call assert_equal(qfwinid, g:Xgetlist({'winid' : 0}).winid) |
9812a9ca3ab2
patch 8.0.1432: after ":copen" can't get the window-ID of the quickfix window
Christian Brabandt <cb@256bit.org>
parents:
13105
diff
changeset
|
4047 Xclose |
9812a9ca3ab2
patch 8.0.1432: after ":copen" can't get the window-ID of the quickfix window
Christian Brabandt <cb@256bit.org>
parents:
13105
diff
changeset
|
4048 |
13026
7c0e0e923537
patch 8.0.1389: getqflist() items are missing if not set
Christian Brabandt <cb@256bit.org>
parents:
13016
diff
changeset
|
4049 " Empty quickfix list |
7c0e0e923537
patch 8.0.1389: getqflist() items are missing if not set
Christian Brabandt <cb@256bit.org>
parents:
13016
diff
changeset
|
4050 Xexpr "" |
7c0e0e923537
patch 8.0.1389: getqflist() items are missing if not set
Christian Brabandt <cb@256bit.org>
parents:
13016
diff
changeset
|
4051 call assert_equal('', g:Xgetlist({'context' : 0}).context) |
7c0e0e923537
patch 8.0.1389: getqflist() items are missing if not set
Christian Brabandt <cb@256bit.org>
parents:
13016
diff
changeset
|
4052 call assert_notequal(0, g:Xgetlist({'id' : 0}).id) |
7c0e0e923537
patch 8.0.1389: getqflist() items are missing if not set
Christian Brabandt <cb@256bit.org>
parents:
13016
diff
changeset
|
4053 call assert_equal(0, g:Xgetlist({'idx' : 0}).idx) |
7c0e0e923537
patch 8.0.1389: getqflist() items are missing if not set
Christian Brabandt <cb@256bit.org>
parents:
13016
diff
changeset
|
4054 call assert_equal([], g:Xgetlist({'items' : 0}).items) |
7c0e0e923537
patch 8.0.1389: getqflist() items are missing if not set
Christian Brabandt <cb@256bit.org>
parents:
13016
diff
changeset
|
4055 call assert_notequal(0, g:Xgetlist({'nr' : 0}).nr) |
7c0e0e923537
patch 8.0.1389: getqflist() items are missing if not set
Christian Brabandt <cb@256bit.org>
parents:
13016
diff
changeset
|
4056 call assert_equal(0, g:Xgetlist({'size' : 0}).size) |
7c0e0e923537
patch 8.0.1389: getqflist() items are missing if not set
Christian Brabandt <cb@256bit.org>
parents:
13016
diff
changeset
|
4057 call assert_notequal('', g:Xgetlist({'title' : 0}).title) |
7c0e0e923537
patch 8.0.1389: getqflist() items are missing if not set
Christian Brabandt <cb@256bit.org>
parents:
13016
diff
changeset
|
4058 call assert_equal(0, g:Xgetlist({'winid' : 0}).winid) |
13062
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13026
diff
changeset
|
4059 call assert_equal(1, g:Xgetlist({'changedtick' : 0}).changedtick) |
13026
7c0e0e923537
patch 8.0.1389: getqflist() items are missing if not set
Christian Brabandt <cb@256bit.org>
parents:
13016
diff
changeset
|
4060 |
7c0e0e923537
patch 8.0.1389: getqflist() items are missing if not set
Christian Brabandt <cb@256bit.org>
parents:
13016
diff
changeset
|
4061 let qfid = g:Xgetlist({'id' : 0}).id |
7c0e0e923537
patch 8.0.1389: getqflist() items are missing if not set
Christian Brabandt <cb@256bit.org>
parents:
13016
diff
changeset
|
4062 call g:Xsetlist([], 'f') |
7c0e0e923537
patch 8.0.1389: getqflist() items are missing if not set
Christian Brabandt <cb@256bit.org>
parents:
13016
diff
changeset
|
4063 |
7c0e0e923537
patch 8.0.1389: getqflist() items are missing if not set
Christian Brabandt <cb@256bit.org>
parents:
13016
diff
changeset
|
4064 " Non-existing quickfix identifier |
7c0e0e923537
patch 8.0.1389: getqflist() items are missing if not set
Christian Brabandt <cb@256bit.org>
parents:
13016
diff
changeset
|
4065 call assert_equal('', g:Xgetlist({'id' : qfid, 'context' : 0}).context) |
7c0e0e923537
patch 8.0.1389: getqflist() items are missing if not set
Christian Brabandt <cb@256bit.org>
parents:
13016
diff
changeset
|
4066 call assert_equal(0, g:Xgetlist({'id' : qfid}).id) |
7c0e0e923537
patch 8.0.1389: getqflist() items are missing if not set
Christian Brabandt <cb@256bit.org>
parents:
13016
diff
changeset
|
4067 call assert_equal(0, g:Xgetlist({'id' : qfid, 'idx' : 0}).idx) |
7c0e0e923537
patch 8.0.1389: getqflist() items are missing if not set
Christian Brabandt <cb@256bit.org>
parents:
13016
diff
changeset
|
4068 call assert_equal([], g:Xgetlist({'id' : qfid, 'items' : 0}).items) |
7c0e0e923537
patch 8.0.1389: getqflist() items are missing if not set
Christian Brabandt <cb@256bit.org>
parents:
13016
diff
changeset
|
4069 call assert_equal(0, g:Xgetlist({'id' : qfid, 'nr' : 0}).nr) |
7c0e0e923537
patch 8.0.1389: getqflist() items are missing if not set
Christian Brabandt <cb@256bit.org>
parents:
13016
diff
changeset
|
4070 call assert_equal(0, g:Xgetlist({'id' : qfid, 'size' : 0}).size) |
7c0e0e923537
patch 8.0.1389: getqflist() items are missing if not set
Christian Brabandt <cb@256bit.org>
parents:
13016
diff
changeset
|
4071 call assert_equal('', g:Xgetlist({'id' : qfid, 'title' : 0}).title) |
7c0e0e923537
patch 8.0.1389: getqflist() items are missing if not set
Christian Brabandt <cb@256bit.org>
parents:
13016
diff
changeset
|
4072 call assert_equal(0, g:Xgetlist({'id' : qfid, 'winid' : 0}).winid) |
13062
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13026
diff
changeset
|
4073 call assert_equal(0, g:Xgetlist({'id' : qfid, 'changedtick' : 0}).changedtick) |
14664
8770189c3e22
patch 8.1.0345: cannot get the window id associated with the location list
Christian Brabandt <cb@256bit.org>
parents:
14648
diff
changeset
|
4074 if a:cchar == 'c' |
8770189c3e22
patch 8.1.0345: cannot get the window id associated with the location list
Christian Brabandt <cb@256bit.org>
parents:
14648
diff
changeset
|
4075 call assert_equal({'context' : '', 'id' : 0, 'idx' : 0, 'items' : [], |
8770189c3e22
patch 8.1.0345: cannot get the window id associated with the location list
Christian Brabandt <cb@256bit.org>
parents:
14648
diff
changeset
|
4076 \ 'nr' : 0, 'size' : 0, 'title' : '', 'winid' : 0, |
21409
2c40e60017a8
patch 8.2.1255: cannot use a lambda with quickfix functions
Bram Moolenaar <Bram@vim.org>
parents:
21265
diff
changeset
|
4077 \ 'qfbufnr' : qfbufnr, 'quickfixtextfunc' : '', |
14664
8770189c3e22
patch 8.1.0345: cannot get the window id associated with the location list
Christian Brabandt <cb@256bit.org>
parents:
14648
diff
changeset
|
4078 \ 'changedtick' : 0}, g:Xgetlist({'id' : qfid, 'all' : 0})) |
8770189c3e22
patch 8.1.0345: cannot get the window id associated with the location list
Christian Brabandt <cb@256bit.org>
parents:
14648
diff
changeset
|
4079 else |
8770189c3e22
patch 8.1.0345: cannot get the window id associated with the location list
Christian Brabandt <cb@256bit.org>
parents:
14648
diff
changeset
|
4080 call assert_equal({'context' : '', 'id' : 0, 'idx' : 0, 'items' : [], |
8770189c3e22
patch 8.1.0345: cannot get the window id associated with the location list
Christian Brabandt <cb@256bit.org>
parents:
14648
diff
changeset
|
4081 \ 'nr' : 0, 'size' : 0, 'title' : '', 'winid' : 0, |
21409
2c40e60017a8
patch 8.2.1255: cannot use a lambda with quickfix functions
Bram Moolenaar <Bram@vim.org>
parents:
21265
diff
changeset
|
4082 \ 'changedtick' : 0, 'filewinid' : 0, 'qfbufnr' : 0, |
2c40e60017a8
patch 8.2.1255: cannot use a lambda with quickfix functions
Bram Moolenaar <Bram@vim.org>
parents:
21265
diff
changeset
|
4083 \ 'quickfixtextfunc' : ''}, |
14664
8770189c3e22
patch 8.1.0345: cannot get the window id associated with the location list
Christian Brabandt <cb@256bit.org>
parents:
14648
diff
changeset
|
4084 \ g:Xgetlist({'id' : qfid, 'all' : 0})) |
8770189c3e22
patch 8.1.0345: cannot get the window id associated with the location list
Christian Brabandt <cb@256bit.org>
parents:
14648
diff
changeset
|
4085 endif |
13026
7c0e0e923537
patch 8.0.1389: getqflist() items are missing if not set
Christian Brabandt <cb@256bit.org>
parents:
13016
diff
changeset
|
4086 |
7c0e0e923537
patch 8.0.1389: getqflist() items are missing if not set
Christian Brabandt <cb@256bit.org>
parents:
13016
diff
changeset
|
4087 " Non-existing quickfix list number |
7c0e0e923537
patch 8.0.1389: getqflist() items are missing if not set
Christian Brabandt <cb@256bit.org>
parents:
13016
diff
changeset
|
4088 call assert_equal('', g:Xgetlist({'nr' : 5, 'context' : 0}).context) |
7c0e0e923537
patch 8.0.1389: getqflist() items are missing if not set
Christian Brabandt <cb@256bit.org>
parents:
13016
diff
changeset
|
4089 call assert_equal(0, g:Xgetlist({'nr' : 5}).nr) |
7c0e0e923537
patch 8.0.1389: getqflist() items are missing if not set
Christian Brabandt <cb@256bit.org>
parents:
13016
diff
changeset
|
4090 call assert_equal(0, g:Xgetlist({'nr' : 5, 'idx' : 0}).idx) |
7c0e0e923537
patch 8.0.1389: getqflist() items are missing if not set
Christian Brabandt <cb@256bit.org>
parents:
13016
diff
changeset
|
4091 call assert_equal([], g:Xgetlist({'nr' : 5, 'items' : 0}).items) |
7c0e0e923537
patch 8.0.1389: getqflist() items are missing if not set
Christian Brabandt <cb@256bit.org>
parents:
13016
diff
changeset
|
4092 call assert_equal(0, g:Xgetlist({'nr' : 5, 'id' : 0}).id) |
7c0e0e923537
patch 8.0.1389: getqflist() items are missing if not set
Christian Brabandt <cb@256bit.org>
parents:
13016
diff
changeset
|
4093 call assert_equal(0, g:Xgetlist({'nr' : 5, 'size' : 0}).size) |
7c0e0e923537
patch 8.0.1389: getqflist() items are missing if not set
Christian Brabandt <cb@256bit.org>
parents:
13016
diff
changeset
|
4094 call assert_equal('', g:Xgetlist({'nr' : 5, 'title' : 0}).title) |
7c0e0e923537
patch 8.0.1389: getqflist() items are missing if not set
Christian Brabandt <cb@256bit.org>
parents:
13016
diff
changeset
|
4095 call assert_equal(0, g:Xgetlist({'nr' : 5, 'winid' : 0}).winid) |
13062
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13026
diff
changeset
|
4096 call assert_equal(0, g:Xgetlist({'nr' : 5, 'changedtick' : 0}).changedtick) |
14664
8770189c3e22
patch 8.1.0345: cannot get the window id associated with the location list
Christian Brabandt <cb@256bit.org>
parents:
14648
diff
changeset
|
4097 if a:cchar == 'c' |
8770189c3e22
patch 8.1.0345: cannot get the window id associated with the location list
Christian Brabandt <cb@256bit.org>
parents:
14648
diff
changeset
|
4098 call assert_equal({'context' : '', 'id' : 0, 'idx' : 0, 'items' : [], |
8770189c3e22
patch 8.1.0345: cannot get the window id associated with the location list
Christian Brabandt <cb@256bit.org>
parents:
14648
diff
changeset
|
4099 \ 'nr' : 0, 'size' : 0, 'title' : '', 'winid' : 0, |
21409
2c40e60017a8
patch 8.2.1255: cannot use a lambda with quickfix functions
Bram Moolenaar <Bram@vim.org>
parents:
21265
diff
changeset
|
4100 \ 'changedtick' : 0, 'qfbufnr' : qfbufnr, |
2c40e60017a8
patch 8.2.1255: cannot use a lambda with quickfix functions
Bram Moolenaar <Bram@vim.org>
parents:
21265
diff
changeset
|
4101 \ 'quickfixtextfunc' : ''}, g:Xgetlist({'nr' : 5, 'all' : 0})) |
14664
8770189c3e22
patch 8.1.0345: cannot get the window id associated with the location list
Christian Brabandt <cb@256bit.org>
parents:
14648
diff
changeset
|
4102 else |
8770189c3e22
patch 8.1.0345: cannot get the window id associated with the location list
Christian Brabandt <cb@256bit.org>
parents:
14648
diff
changeset
|
4103 call assert_equal({'context' : '', 'id' : 0, 'idx' : 0, 'items' : [], |
8770189c3e22
patch 8.1.0345: cannot get the window id associated with the location list
Christian Brabandt <cb@256bit.org>
parents:
14648
diff
changeset
|
4104 \ 'nr' : 0, 'size' : 0, 'title' : '', 'winid' : 0, |
21409
2c40e60017a8
patch 8.2.1255: cannot use a lambda with quickfix functions
Bram Moolenaar <Bram@vim.org>
parents:
21265
diff
changeset
|
4105 \ 'changedtick' : 0, 'filewinid' : 0, 'qfbufnr' : 0, |
2c40e60017a8
patch 8.2.1255: cannot use a lambda with quickfix functions
Bram Moolenaar <Bram@vim.org>
parents:
21265
diff
changeset
|
4106 \ 'quickfixtextfunc' : ''}, g:Xgetlist({'nr' : 5, 'all' : 0})) |
14664
8770189c3e22
patch 8.1.0345: cannot get the window id associated with the location list
Christian Brabandt <cb@256bit.org>
parents:
14648
diff
changeset
|
4107 endif |
13026
7c0e0e923537
patch 8.0.1389: getqflist() items are missing if not set
Christian Brabandt <cb@256bit.org>
parents:
13016
diff
changeset
|
4108 endfunc |
7c0e0e923537
patch 8.0.1389: getqflist() items are missing if not set
Christian Brabandt <cb@256bit.org>
parents:
13016
diff
changeset
|
4109 |
7c0e0e923537
patch 8.0.1389: getqflist() items are missing if not set
Christian Brabandt <cb@256bit.org>
parents:
13016
diff
changeset
|
4110 func Test_getqflist() |
7c0e0e923537
patch 8.0.1389: getqflist() items are missing if not set
Christian Brabandt <cb@256bit.org>
parents:
13016
diff
changeset
|
4111 call Xgetlist_empty_tests('c') |
7c0e0e923537
patch 8.0.1389: getqflist() items are missing if not set
Christian Brabandt <cb@256bit.org>
parents:
13016
diff
changeset
|
4112 call Xgetlist_empty_tests('l') |
7c0e0e923537
patch 8.0.1389: getqflist() items are missing if not set
Christian Brabandt <cb@256bit.org>
parents:
13016
diff
changeset
|
4113 endfunc |
13062
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13026
diff
changeset
|
4114 |
13066
617112037564
patch 8.0.1408: crash in setqflist()
Christian Brabandt <cb@256bit.org>
parents:
13062
diff
changeset
|
4115 func Test_getqflist_invalid_nr() |
617112037564
patch 8.0.1408: crash in setqflist()
Christian Brabandt <cb@256bit.org>
parents:
13062
diff
changeset
|
4116 " The following commands used to crash Vim |
617112037564
patch 8.0.1408: crash in setqflist()
Christian Brabandt <cb@256bit.org>
parents:
13062
diff
changeset
|
4117 cexpr "" |
617112037564
patch 8.0.1408: crash in setqflist()
Christian Brabandt <cb@256bit.org>
parents:
13062
diff
changeset
|
4118 call getqflist({'nr' : $XXX_DOES_NOT_EXIST_XXX}) |
617112037564
patch 8.0.1408: crash in setqflist()
Christian Brabandt <cb@256bit.org>
parents:
13062
diff
changeset
|
4119 |
617112037564
patch 8.0.1408: crash in setqflist()
Christian Brabandt <cb@256bit.org>
parents:
13062
diff
changeset
|
4120 " Cleanup |
617112037564
patch 8.0.1408: crash in setqflist()
Christian Brabandt <cb@256bit.org>
parents:
13062
diff
changeset
|
4121 call setqflist([], 'r') |
617112037564
patch 8.0.1408: crash in setqflist()
Christian Brabandt <cb@256bit.org>
parents:
13062
diff
changeset
|
4122 endfunc |
617112037564
patch 8.0.1408: crash in setqflist()
Christian Brabandt <cb@256bit.org>
parents:
13062
diff
changeset
|
4123 |
13062
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13026
diff
changeset
|
4124 " Tests for the quickfix/location list changedtick |
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13026
diff
changeset
|
4125 func Xqftick_tests(cchar) |
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13026
diff
changeset
|
4126 call s:setup_commands(a:cchar) |
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13026
diff
changeset
|
4127 |
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13026
diff
changeset
|
4128 call g:Xsetlist([], 'f') |
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13026
diff
changeset
|
4129 |
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13026
diff
changeset
|
4130 Xexpr "F1:10:Line10" |
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13026
diff
changeset
|
4131 let qfid = g:Xgetlist({'id' : 0}).id |
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13026
diff
changeset
|
4132 call assert_equal(1, g:Xgetlist({'changedtick' : 0}).changedtick) |
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13026
diff
changeset
|
4133 Xaddexpr "F2:20:Line20\nF2:21:Line21" |
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13026
diff
changeset
|
4134 call assert_equal(2, g:Xgetlist({'changedtick' : 0}).changedtick) |
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13026
diff
changeset
|
4135 call g:Xsetlist([], 'a', {'lines' : ["F3:30:Line30", "F3:31:Line31"]}) |
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13026
diff
changeset
|
4136 call assert_equal(3, g:Xgetlist({'changedtick' : 0}).changedtick) |
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13026
diff
changeset
|
4137 call g:Xsetlist([], 'r', {'lines' : ["F4:40:Line40"]}) |
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13026
diff
changeset
|
4138 call assert_equal(4, g:Xgetlist({'changedtick' : 0}).changedtick) |
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13026
diff
changeset
|
4139 call g:Xsetlist([], 'a', {'title' : 'New Title'}) |
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13026
diff
changeset
|
4140 call assert_equal(5, g:Xgetlist({'changedtick' : 0}).changedtick) |
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13026
diff
changeset
|
4141 |
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13026
diff
changeset
|
4142 enew! |
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13026
diff
changeset
|
4143 call append(0, ["F5:50:L50", "F6:60:L60"]) |
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13026
diff
changeset
|
4144 Xaddbuffer |
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13026
diff
changeset
|
4145 call assert_equal(6, g:Xgetlist({'changedtick' : 0}).changedtick) |
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13026
diff
changeset
|
4146 enew! |
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13026
diff
changeset
|
4147 |
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13026
diff
changeset
|
4148 call g:Xsetlist([], 'a', {'context' : {'bus' : 'pci'}}) |
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13026
diff
changeset
|
4149 call assert_equal(7, g:Xgetlist({'changedtick' : 0}).changedtick) |
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13026
diff
changeset
|
4150 call g:Xsetlist([{'filename' : 'F7', 'lnum' : 10, 'text' : 'L7'}, |
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13026
diff
changeset
|
4151 \ {'filename' : 'F7', 'lnum' : 11, 'text' : 'L11'}], 'a') |
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13026
diff
changeset
|
4152 call assert_equal(8, g:Xgetlist({'changedtick' : 0}).changedtick) |
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13026
diff
changeset
|
4153 call g:Xsetlist([{'filename' : 'F7', 'lnum' : 10, 'text' : 'L7'}, |
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13026
diff
changeset
|
4154 \ {'filename' : 'F7', 'lnum' : 11, 'text' : 'L11'}], ' ') |
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13026
diff
changeset
|
4155 call assert_equal(1, g:Xgetlist({'changedtick' : 0}).changedtick) |
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13026
diff
changeset
|
4156 call g:Xsetlist([{'filename' : 'F7', 'lnum' : 10, 'text' : 'L7'}, |
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13026
diff
changeset
|
4157 \ {'filename' : 'F7', 'lnum' : 11, 'text' : 'L11'}], 'r') |
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13026
diff
changeset
|
4158 call assert_equal(2, g:Xgetlist({'changedtick' : 0}).changedtick) |
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13026
diff
changeset
|
4159 |
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13026
diff
changeset
|
4160 call writefile(["F8:80:L80", "F8:81:L81"], "Xone") |
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13026
diff
changeset
|
4161 Xfile Xone |
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13026
diff
changeset
|
4162 call assert_equal(1, g:Xgetlist({'changedtick' : 0}).changedtick) |
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13026
diff
changeset
|
4163 Xaddfile Xone |
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13026
diff
changeset
|
4164 call assert_equal(2, g:Xgetlist({'changedtick' : 0}).changedtick) |
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13026
diff
changeset
|
4165 |
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13026
diff
changeset
|
4166 " Test case for updating a non-current quickfix list |
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13026
diff
changeset
|
4167 call g:Xsetlist([], 'f') |
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13026
diff
changeset
|
4168 Xexpr "F1:1:L1" |
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13026
diff
changeset
|
4169 Xexpr "F2:2:L2" |
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13026
diff
changeset
|
4170 call g:Xsetlist([], 'a', {'nr' : 1, "lines" : ["F10:10:L10"]}) |
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13026
diff
changeset
|
4171 call assert_equal(1, g:Xgetlist({'changedtick' : 0}).changedtick) |
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13026
diff
changeset
|
4172 call assert_equal(2, g:Xgetlist({'nr' : 1, 'changedtick' : 0}).changedtick) |
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13026
diff
changeset
|
4173 |
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13026
diff
changeset
|
4174 call delete("Xone") |
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13026
diff
changeset
|
4175 endfunc |
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13026
diff
changeset
|
4176 |
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13026
diff
changeset
|
4177 func Test_qf_tick() |
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13026
diff
changeset
|
4178 call Xqftick_tests('c') |
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13026
diff
changeset
|
4179 call Xqftick_tests('l') |
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13026
diff
changeset
|
4180 endfunc |
13074
66c014c71dad
patch 8.0.1412: using free memory using setloclist()
Christian Brabandt <cb@256bit.org>
parents:
13066
diff
changeset
|
4181 |
14603
d1b69129db99
patch 8.1.0315: helpgrep with language doesn't work properly
Christian Brabandt <cb@256bit.org>
parents:
14552
diff
changeset
|
4182 " Test helpgrep with lang specifier |
d1b69129db99
patch 8.1.0315: helpgrep with language doesn't work properly
Christian Brabandt <cb@256bit.org>
parents:
14552
diff
changeset
|
4183 func Xtest_helpgrep_with_lang_specifier(cchar) |
d1b69129db99
patch 8.1.0315: helpgrep with language doesn't work properly
Christian Brabandt <cb@256bit.org>
parents:
14552
diff
changeset
|
4184 call s:setup_commands(a:cchar) |
d1b69129db99
patch 8.1.0315: helpgrep with language doesn't work properly
Christian Brabandt <cb@256bit.org>
parents:
14552
diff
changeset
|
4185 Xhelpgrep Vim@en |
d1b69129db99
patch 8.1.0315: helpgrep with language doesn't work properly
Christian Brabandt <cb@256bit.org>
parents:
14552
diff
changeset
|
4186 call assert_equal('help', &filetype) |
d1b69129db99
patch 8.1.0315: helpgrep with language doesn't work properly
Christian Brabandt <cb@256bit.org>
parents:
14552
diff
changeset
|
4187 call assert_notequal(0, g:Xgetlist({'nr' : '$'}).nr) |
d1b69129db99
patch 8.1.0315: helpgrep with language doesn't work properly
Christian Brabandt <cb@256bit.org>
parents:
14552
diff
changeset
|
4188 new | only |
d1b69129db99
patch 8.1.0315: helpgrep with language doesn't work properly
Christian Brabandt <cb@256bit.org>
parents:
14552
diff
changeset
|
4189 endfunc |
d1b69129db99
patch 8.1.0315: helpgrep with language doesn't work properly
Christian Brabandt <cb@256bit.org>
parents:
14552
diff
changeset
|
4190 |
d1b69129db99
patch 8.1.0315: helpgrep with language doesn't work properly
Christian Brabandt <cb@256bit.org>
parents:
14552
diff
changeset
|
4191 func Test_helpgrep_with_lang_specifier() |
d1b69129db99
patch 8.1.0315: helpgrep with language doesn't work properly
Christian Brabandt <cb@256bit.org>
parents:
14552
diff
changeset
|
4192 call Xtest_helpgrep_with_lang_specifier('c') |
d1b69129db99
patch 8.1.0315: helpgrep with language doesn't work properly
Christian Brabandt <cb@256bit.org>
parents:
14552
diff
changeset
|
4193 call Xtest_helpgrep_with_lang_specifier('l') |
d1b69129db99
patch 8.1.0315: helpgrep with language doesn't work properly
Christian Brabandt <cb@256bit.org>
parents:
14552
diff
changeset
|
4194 endfunc |
d1b69129db99
patch 8.1.0315: helpgrep with language doesn't work properly
Christian Brabandt <cb@256bit.org>
parents:
14552
diff
changeset
|
4195 |
13074
66c014c71dad
patch 8.0.1412: using free memory using setloclist()
Christian Brabandt <cb@256bit.org>
parents:
13066
diff
changeset
|
4196 " The following test used to crash Vim. |
66c014c71dad
patch 8.0.1412: using free memory using setloclist()
Christian Brabandt <cb@256bit.org>
parents:
13066
diff
changeset
|
4197 " Open the location list window and close the regular window associated with |
66c014c71dad
patch 8.0.1412: using free memory using setloclist()
Christian Brabandt <cb@256bit.org>
parents:
13066
diff
changeset
|
4198 " the location list. When the garbage collection runs now, it incorrectly |
66c014c71dad
patch 8.0.1412: using free memory using setloclist()
Christian Brabandt <cb@256bit.org>
parents:
13066
diff
changeset
|
4199 " marks the location list context as not in use and frees the context. |
66c014c71dad
patch 8.0.1412: using free memory using setloclist()
Christian Brabandt <cb@256bit.org>
parents:
13066
diff
changeset
|
4200 func Test_ll_window_ctx() |
66c014c71dad
patch 8.0.1412: using free memory using setloclist()
Christian Brabandt <cb@256bit.org>
parents:
13066
diff
changeset
|
4201 call setloclist(0, [], 'f') |
66c014c71dad
patch 8.0.1412: using free memory using setloclist()
Christian Brabandt <cb@256bit.org>
parents:
13066
diff
changeset
|
4202 call setloclist(0, [], 'a', {'context' : []}) |
66c014c71dad
patch 8.0.1412: using free memory using setloclist()
Christian Brabandt <cb@256bit.org>
parents:
13066
diff
changeset
|
4203 lopen | only |
66c014c71dad
patch 8.0.1412: using free memory using setloclist()
Christian Brabandt <cb@256bit.org>
parents:
13066
diff
changeset
|
4204 call test_garbagecollect_now() |
66c014c71dad
patch 8.0.1412: using free memory using setloclist()
Christian Brabandt <cb@256bit.org>
parents:
13066
diff
changeset
|
4205 echo getloclist(0, {'context' : 1}).context |
66c014c71dad
patch 8.0.1412: using free memory using setloclist()
Christian Brabandt <cb@256bit.org>
parents:
13066
diff
changeset
|
4206 enew | only |
66c014c71dad
patch 8.0.1412: using free memory using setloclist()
Christian Brabandt <cb@256bit.org>
parents:
13066
diff
changeset
|
4207 endfunc |
66c014c71dad
patch 8.0.1412: using free memory using setloclist()
Christian Brabandt <cb@256bit.org>
parents:
13066
diff
changeset
|
4208 |
13078
a1f8939a4644
patch 8.0.1414: accessing freed memory in :lfile.
Christian Brabandt <cb@256bit.org>
parents:
13074
diff
changeset
|
4209 " The following test used to crash vim |
a1f8939a4644
patch 8.0.1414: accessing freed memory in :lfile.
Christian Brabandt <cb@256bit.org>
parents:
13074
diff
changeset
|
4210 func Test_lfile_crash() |
a1f8939a4644
patch 8.0.1414: accessing freed memory in :lfile.
Christian Brabandt <cb@256bit.org>
parents:
13074
diff
changeset
|
4211 sp Xtest |
a1f8939a4644
patch 8.0.1414: accessing freed memory in :lfile.
Christian Brabandt <cb@256bit.org>
parents:
13074
diff
changeset
|
4212 au QuickFixCmdPre * bw |
22087
ff21e2962490
patch 8.2.1593: tests do not check the error number properly
Bram Moolenaar <Bram@vim.org>
parents:
22083
diff
changeset
|
4213 call assert_fails('lfile', 'E40:') |
13078
a1f8939a4644
patch 8.0.1414: accessing freed memory in :lfile.
Christian Brabandt <cb@256bit.org>
parents:
13074
diff
changeset
|
4214 au! QuickFixCmdPre |
a1f8939a4644
patch 8.0.1414: accessing freed memory in :lfile.
Christian Brabandt <cb@256bit.org>
parents:
13074
diff
changeset
|
4215 endfunc |
13090
a0c6910e7fa4
patch 8.0.1420: accessing freed memory in vimgrep
Christian Brabandt <cb@256bit.org>
parents:
13078
diff
changeset
|
4216 |
a0c6910e7fa4
patch 8.0.1420: accessing freed memory in vimgrep
Christian Brabandt <cb@256bit.org>
parents:
13078
diff
changeset
|
4217 " The following test used to crash vim |
a0c6910e7fa4
patch 8.0.1420: accessing freed memory in vimgrep
Christian Brabandt <cb@256bit.org>
parents:
13078
diff
changeset
|
4218 func Test_lbuffer_crash() |
a0c6910e7fa4
patch 8.0.1420: accessing freed memory in vimgrep
Christian Brabandt <cb@256bit.org>
parents:
13078
diff
changeset
|
4219 sv Xtest |
a0c6910e7fa4
patch 8.0.1420: accessing freed memory in vimgrep
Christian Brabandt <cb@256bit.org>
parents:
13078
diff
changeset
|
4220 augroup QF_Test |
a0c6910e7fa4
patch 8.0.1420: accessing freed memory in vimgrep
Christian Brabandt <cb@256bit.org>
parents:
13078
diff
changeset
|
4221 au! |
23758
97296182d336
patch 8.2.2420: too many problems with using all autocommand events
Bram Moolenaar <Bram@vim.org>
parents:
23493
diff
changeset
|
4222 au QuickFixCmdPre,QuickFixCmdPost,BufEnter,BufLeave * bw |
13090
a0c6910e7fa4
patch 8.0.1420: accessing freed memory in vimgrep
Christian Brabandt <cb@256bit.org>
parents:
13078
diff
changeset
|
4223 augroup END |
a0c6910e7fa4
patch 8.0.1420: accessing freed memory in vimgrep
Christian Brabandt <cb@256bit.org>
parents:
13078
diff
changeset
|
4224 lbuffer |
a0c6910e7fa4
patch 8.0.1420: accessing freed memory in vimgrep
Christian Brabandt <cb@256bit.org>
parents:
13078
diff
changeset
|
4225 augroup QF_Test |
a0c6910e7fa4
patch 8.0.1420: accessing freed memory in vimgrep
Christian Brabandt <cb@256bit.org>
parents:
13078
diff
changeset
|
4226 au! |
a0c6910e7fa4
patch 8.0.1420: accessing freed memory in vimgrep
Christian Brabandt <cb@256bit.org>
parents:
13078
diff
changeset
|
4227 augroup END |
a0c6910e7fa4
patch 8.0.1420: accessing freed memory in vimgrep
Christian Brabandt <cb@256bit.org>
parents:
13078
diff
changeset
|
4228 endfunc |
a0c6910e7fa4
patch 8.0.1420: accessing freed memory in vimgrep
Christian Brabandt <cb@256bit.org>
parents:
13078
diff
changeset
|
4229 |
a0c6910e7fa4
patch 8.0.1420: accessing freed memory in vimgrep
Christian Brabandt <cb@256bit.org>
parents:
13078
diff
changeset
|
4230 " The following test used to crash vim |
a0c6910e7fa4
patch 8.0.1420: accessing freed memory in vimgrep
Christian Brabandt <cb@256bit.org>
parents:
13078
diff
changeset
|
4231 func Test_lexpr_crash() |
a0c6910e7fa4
patch 8.0.1420: accessing freed memory in vimgrep
Christian Brabandt <cb@256bit.org>
parents:
13078
diff
changeset
|
4232 augroup QF_Test |
a0c6910e7fa4
patch 8.0.1420: accessing freed memory in vimgrep
Christian Brabandt <cb@256bit.org>
parents:
13078
diff
changeset
|
4233 au! |
23758
97296182d336
patch 8.2.2420: too many problems with using all autocommand events
Bram Moolenaar <Bram@vim.org>
parents:
23493
diff
changeset
|
4234 au QuickFixCmdPre,QuickFixCmdPost,BufEnter,BufLeave * call setloclist(0, [], 'f') |
13090
a0c6910e7fa4
patch 8.0.1420: accessing freed memory in vimgrep
Christian Brabandt <cb@256bit.org>
parents:
13078
diff
changeset
|
4235 augroup END |
a0c6910e7fa4
patch 8.0.1420: accessing freed memory in vimgrep
Christian Brabandt <cb@256bit.org>
parents:
13078
diff
changeset
|
4236 lexpr "" |
a0c6910e7fa4
patch 8.0.1420: accessing freed memory in vimgrep
Christian Brabandt <cb@256bit.org>
parents:
13078
diff
changeset
|
4237 augroup QF_Test |
a0c6910e7fa4
patch 8.0.1420: accessing freed memory in vimgrep
Christian Brabandt <cb@256bit.org>
parents:
13078
diff
changeset
|
4238 au! |
a0c6910e7fa4
patch 8.0.1420: accessing freed memory in vimgrep
Christian Brabandt <cb@256bit.org>
parents:
13078
diff
changeset
|
4239 augroup END |
14954
69d2749a6a2f
patch 8.1.0488: using freed memory in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
14915
diff
changeset
|
4240 |
13090
a0c6910e7fa4
patch 8.0.1420: accessing freed memory in vimgrep
Christian Brabandt <cb@256bit.org>
parents:
13078
diff
changeset
|
4241 enew | only |
14954
69d2749a6a2f
patch 8.1.0488: using freed memory in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
14915
diff
changeset
|
4242 augroup QF_Test |
69d2749a6a2f
patch 8.1.0488: using freed memory in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
14915
diff
changeset
|
4243 au! |
69d2749a6a2f
patch 8.1.0488: using freed memory in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
14915
diff
changeset
|
4244 au BufNew * call setloclist(0, [], 'f') |
69d2749a6a2f
patch 8.1.0488: using freed memory in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
14915
diff
changeset
|
4245 augroup END |
69d2749a6a2f
patch 8.1.0488: using freed memory in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
14915
diff
changeset
|
4246 lexpr 'x:1:x' |
69d2749a6a2f
patch 8.1.0488: using freed memory in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
14915
diff
changeset
|
4247 augroup QF_Test |
69d2749a6a2f
patch 8.1.0488: using freed memory in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
14915
diff
changeset
|
4248 au! |
69d2749a6a2f
patch 8.1.0488: using freed memory in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
14915
diff
changeset
|
4249 augroup END |
69d2749a6a2f
patch 8.1.0488: using freed memory in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
14915
diff
changeset
|
4250 |
69d2749a6a2f
patch 8.1.0488: using freed memory in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
14915
diff
changeset
|
4251 enew | only |
69d2749a6a2f
patch 8.1.0488: using freed memory in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
14915
diff
changeset
|
4252 lexpr '' |
69d2749a6a2f
patch 8.1.0488: using freed memory in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
14915
diff
changeset
|
4253 lopen |
69d2749a6a2f
patch 8.1.0488: using freed memory in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
14915
diff
changeset
|
4254 augroup QF_Test |
69d2749a6a2f
patch 8.1.0488: using freed memory in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
14915
diff
changeset
|
4255 au! |
69d2749a6a2f
patch 8.1.0488: using freed memory in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
14915
diff
changeset
|
4256 au FileType * call setloclist(0, [], 'f') |
69d2749a6a2f
patch 8.1.0488: using freed memory in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
14915
diff
changeset
|
4257 augroup END |
69d2749a6a2f
patch 8.1.0488: using freed memory in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
14915
diff
changeset
|
4258 lexpr '' |
69d2749a6a2f
patch 8.1.0488: using freed memory in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
14915
diff
changeset
|
4259 augroup QF_Test |
69d2749a6a2f
patch 8.1.0488: using freed memory in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
14915
diff
changeset
|
4260 au! |
69d2749a6a2f
patch 8.1.0488: using freed memory in quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
14915
diff
changeset
|
4261 augroup END |
13090
a0c6910e7fa4
patch 8.0.1420: accessing freed memory in vimgrep
Christian Brabandt <cb@256bit.org>
parents:
13078
diff
changeset
|
4262 endfunc |
a0c6910e7fa4
patch 8.0.1420: accessing freed memory in vimgrep
Christian Brabandt <cb@256bit.org>
parents:
13078
diff
changeset
|
4263 |
a0c6910e7fa4
patch 8.0.1420: accessing freed memory in vimgrep
Christian Brabandt <cb@256bit.org>
parents:
13078
diff
changeset
|
4264 " The following test used to crash Vim |
a0c6910e7fa4
patch 8.0.1420: accessing freed memory in vimgrep
Christian Brabandt <cb@256bit.org>
parents:
13078
diff
changeset
|
4265 func Test_lvimgrep_crash() |
a0c6910e7fa4
patch 8.0.1420: accessing freed memory in vimgrep
Christian Brabandt <cb@256bit.org>
parents:
13078
diff
changeset
|
4266 sv Xtest |
a0c6910e7fa4
patch 8.0.1420: accessing freed memory in vimgrep
Christian Brabandt <cb@256bit.org>
parents:
13078
diff
changeset
|
4267 augroup QF_Test |
a0c6910e7fa4
patch 8.0.1420: accessing freed memory in vimgrep
Christian Brabandt <cb@256bit.org>
parents:
13078
diff
changeset
|
4268 au! |
23758
97296182d336
patch 8.2.2420: too many problems with using all autocommand events
Bram Moolenaar <Bram@vim.org>
parents:
23493
diff
changeset
|
4269 au QuickFixCmdPre,QuickFixCmdPost,BufEnter,BufLeave * call setloclist(0, [], 'f') |
13090
a0c6910e7fa4
patch 8.0.1420: accessing freed memory in vimgrep
Christian Brabandt <cb@256bit.org>
parents:
13078
diff
changeset
|
4270 augroup END |
a0c6910e7fa4
patch 8.0.1420: accessing freed memory in vimgrep
Christian Brabandt <cb@256bit.org>
parents:
13078
diff
changeset
|
4271 lvimgrep quickfix test_quickfix.vim |
a0c6910e7fa4
patch 8.0.1420: accessing freed memory in vimgrep
Christian Brabandt <cb@256bit.org>
parents:
13078
diff
changeset
|
4272 augroup QF_Test |
a0c6910e7fa4
patch 8.0.1420: accessing freed memory in vimgrep
Christian Brabandt <cb@256bit.org>
parents:
13078
diff
changeset
|
4273 au! |
a0c6910e7fa4
patch 8.0.1420: accessing freed memory in vimgrep
Christian Brabandt <cb@256bit.org>
parents:
13078
diff
changeset
|
4274 augroup END |
14956
940def6df43f
patch 8.1.0489: crash when autocmd clears vimpgrep location list
Bram Moolenaar <Bram@vim.org>
parents:
14954
diff
changeset
|
4275 |
940def6df43f
patch 8.1.0489: crash when autocmd clears vimpgrep location list
Bram Moolenaar <Bram@vim.org>
parents:
14954
diff
changeset
|
4276 new | only |
940def6df43f
patch 8.1.0489: crash when autocmd clears vimpgrep location list
Bram Moolenaar <Bram@vim.org>
parents:
14954
diff
changeset
|
4277 augroup QF_Test |
940def6df43f
patch 8.1.0489: crash when autocmd clears vimpgrep location list
Bram Moolenaar <Bram@vim.org>
parents:
14954
diff
changeset
|
4278 au! |
940def6df43f
patch 8.1.0489: crash when autocmd clears vimpgrep location list
Bram Moolenaar <Bram@vim.org>
parents:
14954
diff
changeset
|
4279 au BufEnter * call setloclist(0, [], 'r') |
940def6df43f
patch 8.1.0489: crash when autocmd clears vimpgrep location list
Bram Moolenaar <Bram@vim.org>
parents:
14954
diff
changeset
|
4280 augroup END |
940def6df43f
patch 8.1.0489: crash when autocmd clears vimpgrep location list
Bram Moolenaar <Bram@vim.org>
parents:
14954
diff
changeset
|
4281 call assert_fails('lvimgrep Test_lvimgrep_crash *', 'E926:') |
940def6df43f
patch 8.1.0489: crash when autocmd clears vimpgrep location list
Bram Moolenaar <Bram@vim.org>
parents:
14954
diff
changeset
|
4282 augroup QF_Test |
940def6df43f
patch 8.1.0489: crash when autocmd clears vimpgrep location list
Bram Moolenaar <Bram@vim.org>
parents:
14954
diff
changeset
|
4283 au! |
940def6df43f
patch 8.1.0489: crash when autocmd clears vimpgrep location list
Bram Moolenaar <Bram@vim.org>
parents:
14954
diff
changeset
|
4284 augroup END |
940def6df43f
patch 8.1.0489: crash when autocmd clears vimpgrep location list
Bram Moolenaar <Bram@vim.org>
parents:
14954
diff
changeset
|
4285 |
13090
a0c6910e7fa4
patch 8.0.1420: accessing freed memory in vimgrep
Christian Brabandt <cb@256bit.org>
parents:
13078
diff
changeset
|
4286 enew | only |
a0c6910e7fa4
patch 8.0.1420: accessing freed memory in vimgrep
Christian Brabandt <cb@256bit.org>
parents:
13078
diff
changeset
|
4287 endfunc |
13105
bfa7f5b23c53
patch 8.0.1427: the :leftabove modifier doesn't work for :copen
Christian Brabandt <cb@256bit.org>
parents:
13090
diff
changeset
|
4288 |
19649
d4baa35fea5d
patch 8.2.0381: using freed memory with :lvimgrep and autocommand
Bram Moolenaar <Bram@vim.org>
parents:
19471
diff
changeset
|
4289 func Test_lvimgrep_crash2() |
d4baa35fea5d
patch 8.2.0381: using freed memory with :lvimgrep and autocommand
Bram Moolenaar <Bram@vim.org>
parents:
19471
diff
changeset
|
4290 au BufNewFile x sfind |
21265
6a4806e326dd
patch 8.2.1183: assert_fails() checks the last error message
Bram Moolenaar <Bram@vim.org>
parents:
21100
diff
changeset
|
4291 call assert_fails('lvimgrep x x', 'E471:') |
6a4806e326dd
patch 8.2.1183: assert_fails() checks the last error message
Bram Moolenaar <Bram@vim.org>
parents:
21100
diff
changeset
|
4292 call assert_fails('lvimgrep x x x', 'E471:') |
19649
d4baa35fea5d
patch 8.2.0381: using freed memory with :lvimgrep and autocommand
Bram Moolenaar <Bram@vim.org>
parents:
19471
diff
changeset
|
4293 |
d4baa35fea5d
patch 8.2.0381: using freed memory with :lvimgrep and autocommand
Bram Moolenaar <Bram@vim.org>
parents:
19471
diff
changeset
|
4294 au! BufNewFile |
d4baa35fea5d
patch 8.2.0381: using freed memory with :lvimgrep and autocommand
Bram Moolenaar <Bram@vim.org>
parents:
19471
diff
changeset
|
4295 endfunc |
d4baa35fea5d
patch 8.2.0381: using freed memory with :lvimgrep and autocommand
Bram Moolenaar <Bram@vim.org>
parents:
19471
diff
changeset
|
4296 |
13105
bfa7f5b23c53
patch 8.0.1427: the :leftabove modifier doesn't work for :copen
Christian Brabandt <cb@256bit.org>
parents:
13090
diff
changeset
|
4297 " Test for the position of the quickfix and location list window |
bfa7f5b23c53
patch 8.0.1427: the :leftabove modifier doesn't work for :copen
Christian Brabandt <cb@256bit.org>
parents:
13090
diff
changeset
|
4298 func Test_qfwin_pos() |
bfa7f5b23c53
patch 8.0.1427: the :leftabove modifier doesn't work for :copen
Christian Brabandt <cb@256bit.org>
parents:
13090
diff
changeset
|
4299 " Open two windows |
bfa7f5b23c53
patch 8.0.1427: the :leftabove modifier doesn't work for :copen
Christian Brabandt <cb@256bit.org>
parents:
13090
diff
changeset
|
4300 new | only |
bfa7f5b23c53
patch 8.0.1427: the :leftabove modifier doesn't work for :copen
Christian Brabandt <cb@256bit.org>
parents:
13090
diff
changeset
|
4301 new |
bfa7f5b23c53
patch 8.0.1427: the :leftabove modifier doesn't work for :copen
Christian Brabandt <cb@256bit.org>
parents:
13090
diff
changeset
|
4302 cexpr ['F1:10:L10'] |
bfa7f5b23c53
patch 8.0.1427: the :leftabove modifier doesn't work for :copen
Christian Brabandt <cb@256bit.org>
parents:
13090
diff
changeset
|
4303 copen |
bfa7f5b23c53
patch 8.0.1427: the :leftabove modifier doesn't work for :copen
Christian Brabandt <cb@256bit.org>
parents:
13090
diff
changeset
|
4304 " Quickfix window should be the bottom most window |
bfa7f5b23c53
patch 8.0.1427: the :leftabove modifier doesn't work for :copen
Christian Brabandt <cb@256bit.org>
parents:
13090
diff
changeset
|
4305 call assert_equal(3, winnr()) |
bfa7f5b23c53
patch 8.0.1427: the :leftabove modifier doesn't work for :copen
Christian Brabandt <cb@256bit.org>
parents:
13090
diff
changeset
|
4306 close |
bfa7f5b23c53
patch 8.0.1427: the :leftabove modifier doesn't work for :copen
Christian Brabandt <cb@256bit.org>
parents:
13090
diff
changeset
|
4307 " Open at the very top |
bfa7f5b23c53
patch 8.0.1427: the :leftabove modifier doesn't work for :copen
Christian Brabandt <cb@256bit.org>
parents:
13090
diff
changeset
|
4308 wincmd t |
bfa7f5b23c53
patch 8.0.1427: the :leftabove modifier doesn't work for :copen
Christian Brabandt <cb@256bit.org>
parents:
13090
diff
changeset
|
4309 topleft copen |
bfa7f5b23c53
patch 8.0.1427: the :leftabove modifier doesn't work for :copen
Christian Brabandt <cb@256bit.org>
parents:
13090
diff
changeset
|
4310 call assert_equal(1, winnr()) |
bfa7f5b23c53
patch 8.0.1427: the :leftabove modifier doesn't work for :copen
Christian Brabandt <cb@256bit.org>
parents:
13090
diff
changeset
|
4311 close |
bfa7f5b23c53
patch 8.0.1427: the :leftabove modifier doesn't work for :copen
Christian Brabandt <cb@256bit.org>
parents:
13090
diff
changeset
|
4312 " open left of the current window |
bfa7f5b23c53
patch 8.0.1427: the :leftabove modifier doesn't work for :copen
Christian Brabandt <cb@256bit.org>
parents:
13090
diff
changeset
|
4313 wincmd t |
bfa7f5b23c53
patch 8.0.1427: the :leftabove modifier doesn't work for :copen
Christian Brabandt <cb@256bit.org>
parents:
13090
diff
changeset
|
4314 below new |
bfa7f5b23c53
patch 8.0.1427: the :leftabove modifier doesn't work for :copen
Christian Brabandt <cb@256bit.org>
parents:
13090
diff
changeset
|
4315 leftabove copen |
bfa7f5b23c53
patch 8.0.1427: the :leftabove modifier doesn't work for :copen
Christian Brabandt <cb@256bit.org>
parents:
13090
diff
changeset
|
4316 call assert_equal(2, winnr()) |
bfa7f5b23c53
patch 8.0.1427: the :leftabove modifier doesn't work for :copen
Christian Brabandt <cb@256bit.org>
parents:
13090
diff
changeset
|
4317 close |
bfa7f5b23c53
patch 8.0.1427: the :leftabove modifier doesn't work for :copen
Christian Brabandt <cb@256bit.org>
parents:
13090
diff
changeset
|
4318 " open right of the current window |
bfa7f5b23c53
patch 8.0.1427: the :leftabove modifier doesn't work for :copen
Christian Brabandt <cb@256bit.org>
parents:
13090
diff
changeset
|
4319 rightbelow copen |
bfa7f5b23c53
patch 8.0.1427: the :leftabove modifier doesn't work for :copen
Christian Brabandt <cb@256bit.org>
parents:
13090
diff
changeset
|
4320 call assert_equal(3, winnr()) |
bfa7f5b23c53
patch 8.0.1427: the :leftabove modifier doesn't work for :copen
Christian Brabandt <cb@256bit.org>
parents:
13090
diff
changeset
|
4321 close |
bfa7f5b23c53
patch 8.0.1427: the :leftabove modifier doesn't work for :copen
Christian Brabandt <cb@256bit.org>
parents:
13090
diff
changeset
|
4322 endfunc |
13594
4d55eb79178b
patch 8.0.1669: :vimgrep may add entries to the wrong quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13115
diff
changeset
|
4323 |
4d55eb79178b
patch 8.0.1669: :vimgrep may add entries to the wrong quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13115
diff
changeset
|
4324 " Tests for quickfix/location lists changed by autocommands when |
4d55eb79178b
patch 8.0.1669: :vimgrep may add entries to the wrong quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13115
diff
changeset
|
4325 " :vimgrep/:lvimgrep commands are running. |
4d55eb79178b
patch 8.0.1669: :vimgrep may add entries to the wrong quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13115
diff
changeset
|
4326 func Test_vimgrep_autocmd() |
4d55eb79178b
patch 8.0.1669: :vimgrep may add entries to the wrong quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13115
diff
changeset
|
4327 call setqflist([], 'f') |
4d55eb79178b
patch 8.0.1669: :vimgrep may add entries to the wrong quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13115
diff
changeset
|
4328 call writefile(['stars'], 'Xtest1.txt') |
4d55eb79178b
patch 8.0.1669: :vimgrep may add entries to the wrong quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13115
diff
changeset
|
4329 call writefile(['stars'], 'Xtest2.txt') |
4d55eb79178b
patch 8.0.1669: :vimgrep may add entries to the wrong quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13115
diff
changeset
|
4330 |
4d55eb79178b
patch 8.0.1669: :vimgrep may add entries to the wrong quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13115
diff
changeset
|
4331 " Test 1: |
4d55eb79178b
patch 8.0.1669: :vimgrep may add entries to the wrong quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13115
diff
changeset
|
4332 " When searching for a pattern using :vimgrep, if the quickfix list is |
4d55eb79178b
patch 8.0.1669: :vimgrep may add entries to the wrong quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13115
diff
changeset
|
4333 " changed by an autocmd, the results should be added to the correct quickfix |
4d55eb79178b
patch 8.0.1669: :vimgrep may add entries to the wrong quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13115
diff
changeset
|
4334 " list. |
4d55eb79178b
patch 8.0.1669: :vimgrep may add entries to the wrong quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13115
diff
changeset
|
4335 autocmd BufRead Xtest2.txt cexpr '' | cexpr '' |
4d55eb79178b
patch 8.0.1669: :vimgrep may add entries to the wrong quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13115
diff
changeset
|
4336 silent vimgrep stars Xtest*.txt |
4d55eb79178b
patch 8.0.1669: :vimgrep may add entries to the wrong quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13115
diff
changeset
|
4337 call assert_equal(1, getqflist({'nr' : 0}).nr) |
4d55eb79178b
patch 8.0.1669: :vimgrep may add entries to the wrong quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13115
diff
changeset
|
4338 call assert_equal(3, getqflist({'nr' : '$'}).nr) |
4d55eb79178b
patch 8.0.1669: :vimgrep may add entries to the wrong quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13115
diff
changeset
|
4339 call assert_equal('Xtest2.txt', bufname(getqflist()[1].bufnr)) |
4d55eb79178b
patch 8.0.1669: :vimgrep may add entries to the wrong quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13115
diff
changeset
|
4340 au! BufRead Xtest2.txt |
4d55eb79178b
patch 8.0.1669: :vimgrep may add entries to the wrong quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13115
diff
changeset
|
4341 |
4d55eb79178b
patch 8.0.1669: :vimgrep may add entries to the wrong quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13115
diff
changeset
|
4342 " Test 2: |
4d55eb79178b
patch 8.0.1669: :vimgrep may add entries to the wrong quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13115
diff
changeset
|
4343 " When searching for a pattern using :vimgrep, if the quickfix list is |
4d55eb79178b
patch 8.0.1669: :vimgrep may add entries to the wrong quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13115
diff
changeset
|
4344 " freed, then a error should be given. |
4d55eb79178b
patch 8.0.1669: :vimgrep may add entries to the wrong quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13115
diff
changeset
|
4345 silent! %bwipe! |
4d55eb79178b
patch 8.0.1669: :vimgrep may add entries to the wrong quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13115
diff
changeset
|
4346 call setqflist([], 'f') |
4d55eb79178b
patch 8.0.1669: :vimgrep may add entries to the wrong quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13115
diff
changeset
|
4347 autocmd BufRead Xtest2.txt for i in range(10) | cexpr '' | endfor |
4d55eb79178b
patch 8.0.1669: :vimgrep may add entries to the wrong quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13115
diff
changeset
|
4348 call assert_fails('vimgrep stars Xtest*.txt', 'E925:') |
4d55eb79178b
patch 8.0.1669: :vimgrep may add entries to the wrong quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13115
diff
changeset
|
4349 au! BufRead Xtest2.txt |
4d55eb79178b
patch 8.0.1669: :vimgrep may add entries to the wrong quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13115
diff
changeset
|
4350 |
4d55eb79178b
patch 8.0.1669: :vimgrep may add entries to the wrong quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13115
diff
changeset
|
4351 " Test 3: |
4d55eb79178b
patch 8.0.1669: :vimgrep may add entries to the wrong quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13115
diff
changeset
|
4352 " When searching for a pattern using :lvimgrep, if the location list is |
4d55eb79178b
patch 8.0.1669: :vimgrep may add entries to the wrong quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13115
diff
changeset
|
4353 " freed, then the command should error out. |
4d55eb79178b
patch 8.0.1669: :vimgrep may add entries to the wrong quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13115
diff
changeset
|
4354 silent! %bwipe! |
4d55eb79178b
patch 8.0.1669: :vimgrep may add entries to the wrong quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13115
diff
changeset
|
4355 let g:save_winid = win_getid() |
4d55eb79178b
patch 8.0.1669: :vimgrep may add entries to the wrong quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13115
diff
changeset
|
4356 autocmd BufRead Xtest2.txt call setloclist(g:save_winid, [], 'f') |
4d55eb79178b
patch 8.0.1669: :vimgrep may add entries to the wrong quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13115
diff
changeset
|
4357 call assert_fails('lvimgrep stars Xtest*.txt', 'E926:') |
4d55eb79178b
patch 8.0.1669: :vimgrep may add entries to the wrong quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13115
diff
changeset
|
4358 au! BufRead Xtest2.txt |
4d55eb79178b
patch 8.0.1669: :vimgrep may add entries to the wrong quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13115
diff
changeset
|
4359 |
4d55eb79178b
patch 8.0.1669: :vimgrep may add entries to the wrong quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13115
diff
changeset
|
4360 call delete('Xtest1.txt') |
4d55eb79178b
patch 8.0.1669: :vimgrep may add entries to the wrong quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13115
diff
changeset
|
4361 call delete('Xtest2.txt') |
4d55eb79178b
patch 8.0.1669: :vimgrep may add entries to the wrong quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13115
diff
changeset
|
4362 call setqflist([], 'f') |
4d55eb79178b
patch 8.0.1669: :vimgrep may add entries to the wrong quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13115
diff
changeset
|
4363 endfunc |
13756
c38f29387245
patch 8.0.1750: crash when clearing loccation list in autocommand
Christian Brabandt <cb@256bit.org>
parents:
13612
diff
changeset
|
4364 |
18656
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
4365 " Test for an autocmd changing the current directory when running vimgrep |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
4366 func Xvimgrep_autocmd_cd(cchar) |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
4367 call s:setup_commands(a:cchar) |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
4368 |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
4369 %bwipe |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
4370 let save_cwd = getcwd() |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
4371 |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
4372 augroup QF_Test |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
4373 au! |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
4374 autocmd BufRead * silent cd %:p:h |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
4375 augroup END |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
4376 |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
4377 10Xvimgrep /vim/ Xdir/** |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
4378 let l = g:Xgetlist() |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
4379 call assert_equal('f1.txt', bufname(l[0].bufnr)) |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
4380 call assert_equal('f2.txt', fnamemodify(bufname(l[2].bufnr), ':t')) |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
4381 |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
4382 augroup QF_Test |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
4383 au! |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
4384 augroup END |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
4385 |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
4386 exe 'cd ' . save_cwd |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
4387 endfunc |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
4388 |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
4389 func Test_vimgrep_autocmd_cd() |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
4390 call mkdir('Xdir/a', 'p') |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
4391 call mkdir('Xdir/b', 'p') |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
4392 call writefile(['a_L1_vim', 'a_L2_vim'], 'Xdir/a/f1.txt') |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
4393 call writefile(['b_L1_vim', 'b_L2_vim'], 'Xdir/b/f2.txt') |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
4394 call Xvimgrep_autocmd_cd('c') |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
4395 call Xvimgrep_autocmd_cd('l') |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
4396 %bwipe |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
4397 call delete('Xdir', 'rf') |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
4398 endfunc |
022deb0adec9
patch 8.1.2320: insufficient test coverage for quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18646
diff
changeset
|
4399 |
13756
c38f29387245
patch 8.0.1750: crash when clearing loccation list in autocommand
Christian Brabandt <cb@256bit.org>
parents:
13612
diff
changeset
|
4400 " The following test used to crash Vim |
c38f29387245
patch 8.0.1750: crash when clearing loccation list in autocommand
Christian Brabandt <cb@256bit.org>
parents:
13612
diff
changeset
|
4401 func Test_lhelpgrep_autocmd() |
c38f29387245
patch 8.0.1750: crash when clearing loccation list in autocommand
Christian Brabandt <cb@256bit.org>
parents:
13612
diff
changeset
|
4402 lhelpgrep quickfix |
27873
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
4403 augroup QF_Test |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
4404 au! |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
4405 autocmd QuickFixCmdPost * call setloclist(0, [], 'f') |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
4406 augroup END |
13756
c38f29387245
patch 8.0.1750: crash when clearing loccation list in autocommand
Christian Brabandt <cb@256bit.org>
parents:
13612
diff
changeset
|
4407 lhelpgrep buffer |
c38f29387245
patch 8.0.1750: crash when clearing loccation list in autocommand
Christian Brabandt <cb@256bit.org>
parents:
13612
diff
changeset
|
4408 call assert_equal('help', &filetype) |
c38f29387245
patch 8.0.1750: crash when clearing loccation list in autocommand
Christian Brabandt <cb@256bit.org>
parents:
13612
diff
changeset
|
4409 call assert_equal(0, getloclist(0, {'nr' : '$'}).nr) |
c38f29387245
patch 8.0.1750: crash when clearing loccation list in autocommand
Christian Brabandt <cb@256bit.org>
parents:
13612
diff
changeset
|
4410 lhelpgrep tabpage |
c38f29387245
patch 8.0.1750: crash when clearing loccation list in autocommand
Christian Brabandt <cb@256bit.org>
parents:
13612
diff
changeset
|
4411 call assert_equal('help', &filetype) |
c38f29387245
patch 8.0.1750: crash when clearing loccation list in autocommand
Christian Brabandt <cb@256bit.org>
parents:
13612
diff
changeset
|
4412 call assert_equal(1, getloclist(0, {'nr' : '$'}).nr) |
27873
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
4413 augroup QF_Test |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
4414 au! |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
4415 augroup END |
14956
940def6df43f
patch 8.1.0489: crash when autocmd clears vimpgrep location list
Bram Moolenaar <Bram@vim.org>
parents:
14954
diff
changeset
|
4416 |
940def6df43f
patch 8.1.0489: crash when autocmd clears vimpgrep location list
Bram Moolenaar <Bram@vim.org>
parents:
14954
diff
changeset
|
4417 new | only |
940def6df43f
patch 8.1.0489: crash when autocmd clears vimpgrep location list
Bram Moolenaar <Bram@vim.org>
parents:
14954
diff
changeset
|
4418 augroup QF_Test |
940def6df43f
patch 8.1.0489: crash when autocmd clears vimpgrep location list
Bram Moolenaar <Bram@vim.org>
parents:
14954
diff
changeset
|
4419 au! |
940def6df43f
patch 8.1.0489: crash when autocmd clears vimpgrep location list
Bram Moolenaar <Bram@vim.org>
parents:
14954
diff
changeset
|
4420 au BufEnter * call setqflist([], 'f') |
940def6df43f
patch 8.1.0489: crash when autocmd clears vimpgrep location list
Bram Moolenaar <Bram@vim.org>
parents:
14954
diff
changeset
|
4421 augroup END |
940def6df43f
patch 8.1.0489: crash when autocmd clears vimpgrep location list
Bram Moolenaar <Bram@vim.org>
parents:
14954
diff
changeset
|
4422 call assert_fails('helpgrep quickfix', 'E925:') |
22788
c8a4ad051d23
patch 8.2.1942: insufficient test coverage for the Netbeans interface
Bram Moolenaar <Bram@vim.org>
parents:
22645
diff
changeset
|
4423 " run the test with a help window already open |
c8a4ad051d23
patch 8.2.1942: insufficient test coverage for the Netbeans interface
Bram Moolenaar <Bram@vim.org>
parents:
22645
diff
changeset
|
4424 help |
c8a4ad051d23
patch 8.2.1942: insufficient test coverage for the Netbeans interface
Bram Moolenaar <Bram@vim.org>
parents:
22645
diff
changeset
|
4425 wincmd w |
c8a4ad051d23
patch 8.2.1942: insufficient test coverage for the Netbeans interface
Bram Moolenaar <Bram@vim.org>
parents:
22645
diff
changeset
|
4426 call assert_fails('helpgrep quickfix', 'E925:') |
14956
940def6df43f
patch 8.1.0489: crash when autocmd clears vimpgrep location list
Bram Moolenaar <Bram@vim.org>
parents:
14954
diff
changeset
|
4427 augroup QF_Test |
27873
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
4428 au! |
14956
940def6df43f
patch 8.1.0489: crash when autocmd clears vimpgrep location list
Bram Moolenaar <Bram@vim.org>
parents:
14954
diff
changeset
|
4429 augroup END |
940def6df43f
patch 8.1.0489: crash when autocmd clears vimpgrep location list
Bram Moolenaar <Bram@vim.org>
parents:
14954
diff
changeset
|
4430 |
940def6df43f
patch 8.1.0489: crash when autocmd clears vimpgrep location list
Bram Moolenaar <Bram@vim.org>
parents:
14954
diff
changeset
|
4431 new | only |
940def6df43f
patch 8.1.0489: crash when autocmd clears vimpgrep location list
Bram Moolenaar <Bram@vim.org>
parents:
14954
diff
changeset
|
4432 augroup QF_Test |
940def6df43f
patch 8.1.0489: crash when autocmd clears vimpgrep location list
Bram Moolenaar <Bram@vim.org>
parents:
14954
diff
changeset
|
4433 au! |
940def6df43f
patch 8.1.0489: crash when autocmd clears vimpgrep location list
Bram Moolenaar <Bram@vim.org>
parents:
14954
diff
changeset
|
4434 au BufEnter * call setqflist([], 'r') |
940def6df43f
patch 8.1.0489: crash when autocmd clears vimpgrep location list
Bram Moolenaar <Bram@vim.org>
parents:
14954
diff
changeset
|
4435 augroup END |
940def6df43f
patch 8.1.0489: crash when autocmd clears vimpgrep location list
Bram Moolenaar <Bram@vim.org>
parents:
14954
diff
changeset
|
4436 call assert_fails('helpgrep quickfix', 'E925:') |
940def6df43f
patch 8.1.0489: crash when autocmd clears vimpgrep location list
Bram Moolenaar <Bram@vim.org>
parents:
14954
diff
changeset
|
4437 augroup QF_Test |
27873
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
4438 au! |
14956
940def6df43f
patch 8.1.0489: crash when autocmd clears vimpgrep location list
Bram Moolenaar <Bram@vim.org>
parents:
14954
diff
changeset
|
4439 augroup END |
940def6df43f
patch 8.1.0489: crash when autocmd clears vimpgrep location list
Bram Moolenaar <Bram@vim.org>
parents:
14954
diff
changeset
|
4440 |
940def6df43f
patch 8.1.0489: crash when autocmd clears vimpgrep location list
Bram Moolenaar <Bram@vim.org>
parents:
14954
diff
changeset
|
4441 new | only |
940def6df43f
patch 8.1.0489: crash when autocmd clears vimpgrep location list
Bram Moolenaar <Bram@vim.org>
parents:
14954
diff
changeset
|
4442 augroup QF_Test |
940def6df43f
patch 8.1.0489: crash when autocmd clears vimpgrep location list
Bram Moolenaar <Bram@vim.org>
parents:
14954
diff
changeset
|
4443 au! |
940def6df43f
patch 8.1.0489: crash when autocmd clears vimpgrep location list
Bram Moolenaar <Bram@vim.org>
parents:
14954
diff
changeset
|
4444 au BufEnter * call setloclist(0, [], 'r') |
940def6df43f
patch 8.1.0489: crash when autocmd clears vimpgrep location list
Bram Moolenaar <Bram@vim.org>
parents:
14954
diff
changeset
|
4445 augroup END |
940def6df43f
patch 8.1.0489: crash when autocmd clears vimpgrep location list
Bram Moolenaar <Bram@vim.org>
parents:
14954
diff
changeset
|
4446 call assert_fails('lhelpgrep quickfix', 'E926:') |
940def6df43f
patch 8.1.0489: crash when autocmd clears vimpgrep location list
Bram Moolenaar <Bram@vim.org>
parents:
14954
diff
changeset
|
4447 augroup QF_Test |
27873
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
4448 au! |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
4449 augroup END |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
4450 |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
4451 " Replace the contents of a help window location list when it is still in |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
4452 " use. |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
4453 new | only |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
4454 lhelpgrep quickfix |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
4455 wincmd w |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
4456 augroup QF_Test |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
4457 au! |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
4458 autocmd WinEnter * call setloclist(0, [], 'r') |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
4459 augroup END |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
4460 call assert_fails('lhelpgrep win_getid', 'E926:') |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
4461 augroup QF_Test |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
4462 au! |
14956
940def6df43f
patch 8.1.0489: crash when autocmd clears vimpgrep location list
Bram Moolenaar <Bram@vim.org>
parents:
14954
diff
changeset
|
4463 augroup END |
940def6df43f
patch 8.1.0489: crash when autocmd clears vimpgrep location list
Bram Moolenaar <Bram@vim.org>
parents:
14954
diff
changeset
|
4464 |
27873
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
4465 %bw! |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
4466 endfunc |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
4467 |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
4468 " The following test used to crash Vim |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
4469 func Test_lhelpgrep_autocmd_free_loclist() |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
4470 %bw! |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
4471 lhelpgrep quickfix |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
4472 wincmd w |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
4473 augroup QF_Test |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
4474 au! |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
4475 autocmd WinEnter * call setloclist(0, [], 'f') |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
4476 augroup END |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
4477 lhelpgrep win_getid |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
4478 wincmd w |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
4479 wincmd w |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
4480 wincmd w |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
4481 augroup QF_Test |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
4482 au! |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
4483 augroup END |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
4484 %bw! |
13756
c38f29387245
patch 8.0.1750: crash when clearing loccation list in autocommand
Christian Brabandt <cb@256bit.org>
parents:
13612
diff
changeset
|
4485 endfunc |
13819
31bb8e1f7625
patch 8.0.1781: file names in quickfix window are not shortened
Christian Brabandt <cb@256bit.org>
parents:
13764
diff
changeset
|
4486 |
31bb8e1f7625
patch 8.0.1781: file names in quickfix window are not shortened
Christian Brabandt <cb@256bit.org>
parents:
13764
diff
changeset
|
4487 " Test for shortening/simplifying the file name when opening the |
31bb8e1f7625
patch 8.0.1781: file names in quickfix window are not shortened
Christian Brabandt <cb@256bit.org>
parents:
13764
diff
changeset
|
4488 " quickfix window or when displaying the quickfix list |
31bb8e1f7625
patch 8.0.1781: file names in quickfix window are not shortened
Christian Brabandt <cb@256bit.org>
parents:
13764
diff
changeset
|
4489 func Test_shorten_fname() |
21765
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
21741
diff
changeset
|
4490 CheckUnix |
13819
31bb8e1f7625
patch 8.0.1781: file names in quickfix window are not shortened
Christian Brabandt <cb@256bit.org>
parents:
13764
diff
changeset
|
4491 %bwipe |
26211
485c7c4afeb7
patch 8.2.3637: typos in test files
Bram Moolenaar <Bram@vim.org>
parents:
26026
diff
changeset
|
4492 " Create a quickfix list with an absolute path filename |
13819
31bb8e1f7625
patch 8.0.1781: file names in quickfix window are not shortened
Christian Brabandt <cb@256bit.org>
parents:
13764
diff
changeset
|
4493 let fname = getcwd() . '/test_quickfix.vim' |
31bb8e1f7625
patch 8.0.1781: file names in quickfix window are not shortened
Christian Brabandt <cb@256bit.org>
parents:
13764
diff
changeset
|
4494 call setqflist([], ' ', {'lines':[fname . ":20:Line20"], 'efm':'%f:%l:%m'}) |
31bb8e1f7625
patch 8.0.1781: file names in quickfix window are not shortened
Christian Brabandt <cb@256bit.org>
parents:
13764
diff
changeset
|
4495 call assert_equal(fname, bufname('test_quickfix.vim')) |
31bb8e1f7625
patch 8.0.1781: file names in quickfix window are not shortened
Christian Brabandt <cb@256bit.org>
parents:
13764
diff
changeset
|
4496 " Opening the quickfix window should simplify the file path |
31bb8e1f7625
patch 8.0.1781: file names in quickfix window are not shortened
Christian Brabandt <cb@256bit.org>
parents:
13764
diff
changeset
|
4497 cwindow |
31bb8e1f7625
patch 8.0.1781: file names in quickfix window are not shortened
Christian Brabandt <cb@256bit.org>
parents:
13764
diff
changeset
|
4498 call assert_equal('test_quickfix.vim', bufname('test_quickfix.vim')) |
31bb8e1f7625
patch 8.0.1781: file names in quickfix window are not shortened
Christian Brabandt <cb@256bit.org>
parents:
13764
diff
changeset
|
4499 cclose |
31bb8e1f7625
patch 8.0.1781: file names in quickfix window are not shortened
Christian Brabandt <cb@256bit.org>
parents:
13764
diff
changeset
|
4500 %bwipe |
26211
485c7c4afeb7
patch 8.2.3637: typos in test files
Bram Moolenaar <Bram@vim.org>
parents:
26026
diff
changeset
|
4501 " Create a quickfix list with an absolute path filename |
13819
31bb8e1f7625
patch 8.0.1781: file names in quickfix window are not shortened
Christian Brabandt <cb@256bit.org>
parents:
13764
diff
changeset
|
4502 call setqflist([], ' ', {'lines':[fname . ":20:Line20"], 'efm':'%f:%l:%m'}) |
31bb8e1f7625
patch 8.0.1781: file names in quickfix window are not shortened
Christian Brabandt <cb@256bit.org>
parents:
13764
diff
changeset
|
4503 call assert_equal(fname, bufname('test_quickfix.vim')) |
31bb8e1f7625
patch 8.0.1781: file names in quickfix window are not shortened
Christian Brabandt <cb@256bit.org>
parents:
13764
diff
changeset
|
4504 " Displaying the quickfix list should simplify the file path |
31bb8e1f7625
patch 8.0.1781: file names in quickfix window are not shortened
Christian Brabandt <cb@256bit.org>
parents:
13764
diff
changeset
|
4505 silent! clist |
31bb8e1f7625
patch 8.0.1781: file names in quickfix window are not shortened
Christian Brabandt <cb@256bit.org>
parents:
13764
diff
changeset
|
4506 call assert_equal('test_quickfix.vim', bufname('test_quickfix.vim')) |
22454
849c6f766b19
patch 8.2.1775: MS-Windows: adding a long quickfix list is slow
Bram Moolenaar <Bram@vim.org>
parents:
22256
diff
changeset
|
4507 " Add a few entries for the same file with different paths and check whether |
849c6f766b19
patch 8.2.1775: MS-Windows: adding a long quickfix list is slow
Bram Moolenaar <Bram@vim.org>
parents:
22256
diff
changeset
|
4508 " the buffer name is shortened |
849c6f766b19
patch 8.2.1775: MS-Windows: adding a long quickfix list is slow
Bram Moolenaar <Bram@vim.org>
parents:
22256
diff
changeset
|
4509 %bwipe |
849c6f766b19
patch 8.2.1775: MS-Windows: adding a long quickfix list is slow
Bram Moolenaar <Bram@vim.org>
parents:
22256
diff
changeset
|
4510 call setqflist([], 'f') |
849c6f766b19
patch 8.2.1775: MS-Windows: adding a long quickfix list is slow
Bram Moolenaar <Bram@vim.org>
parents:
22256
diff
changeset
|
4511 call setqflist([{'filename' : 'test_quickfix.vim', 'lnum' : 10}, |
849c6f766b19
patch 8.2.1775: MS-Windows: adding a long quickfix list is slow
Bram Moolenaar <Bram@vim.org>
parents:
22256
diff
changeset
|
4512 \ {'filename' : '../testdir/test_quickfix.vim', 'lnum' : 20}, |
849c6f766b19
patch 8.2.1775: MS-Windows: adding a long quickfix list is slow
Bram Moolenaar <Bram@vim.org>
parents:
22256
diff
changeset
|
4513 \ {'filename' : fname, 'lnum' : 30}], ' ') |
849c6f766b19
patch 8.2.1775: MS-Windows: adding a long quickfix list is slow
Bram Moolenaar <Bram@vim.org>
parents:
22256
diff
changeset
|
4514 copen |
849c6f766b19
patch 8.2.1775: MS-Windows: adding a long quickfix list is slow
Bram Moolenaar <Bram@vim.org>
parents:
22256
diff
changeset
|
4515 call assert_equal(['test_quickfix.vim|10| ', |
849c6f766b19
patch 8.2.1775: MS-Windows: adding a long quickfix list is slow
Bram Moolenaar <Bram@vim.org>
parents:
22256
diff
changeset
|
4516 \ 'test_quickfix.vim|20| ', |
849c6f766b19
patch 8.2.1775: MS-Windows: adding a long quickfix list is slow
Bram Moolenaar <Bram@vim.org>
parents:
22256
diff
changeset
|
4517 \ 'test_quickfix.vim|30| '], getline(1, '$')) |
849c6f766b19
patch 8.2.1775: MS-Windows: adding a long quickfix list is slow
Bram Moolenaar <Bram@vim.org>
parents:
22256
diff
changeset
|
4518 cclose |
13819
31bb8e1f7625
patch 8.0.1781: file names in quickfix window are not shortened
Christian Brabandt <cb@256bit.org>
parents:
13764
diff
changeset
|
4519 endfunc |
13921
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4520 |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4521 " Quickfix title tests |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4522 " In the below tests, 'exe "cmd"' is used to invoke the quickfix commands. |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4523 " Otherwise due to indentation, the title is set with spaces at the beginning |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4524 " of the command. |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4525 func Test_qftitle() |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4526 call writefile(["F1:1:Line1"], 'Xerr') |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4527 |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4528 " :cexpr |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4529 exe "cexpr readfile('Xerr')" |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4530 call assert_equal(":cexpr readfile('Xerr')", getqflist({'title' : 1}).title) |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4531 |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4532 " :cgetexpr |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4533 exe "cgetexpr readfile('Xerr')" |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4534 call assert_equal(":cgetexpr readfile('Xerr')", |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4535 \ getqflist({'title' : 1}).title) |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4536 |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4537 " :caddexpr |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4538 call setqflist([], 'f') |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4539 exe "caddexpr readfile('Xerr')" |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4540 call assert_equal(":caddexpr readfile('Xerr')", |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4541 \ getqflist({'title' : 1}).title) |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4542 |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4543 " :cbuffer |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4544 new Xerr |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4545 exe "cbuffer" |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4546 call assert_equal(':cbuffer (Xerr)', getqflist({'title' : 1}).title) |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4547 |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4548 " :cgetbuffer |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4549 edit Xerr |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4550 exe "cgetbuffer" |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4551 call assert_equal(':cgetbuffer (Xerr)', getqflist({'title' : 1}).title) |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4552 |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4553 " :caddbuffer |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4554 call setqflist([], 'f') |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4555 edit Xerr |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4556 exe "caddbuffer" |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4557 call assert_equal(':caddbuffer (Xerr)', getqflist({'title' : 1}).title) |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4558 |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4559 " :cfile |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4560 exe "cfile Xerr" |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4561 call assert_equal(':cfile Xerr', getqflist({'title' : 1}).title) |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4562 |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4563 " :cgetfile |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4564 exe "cgetfile Xerr" |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4565 call assert_equal(':cgetfile Xerr', getqflist({'title' : 1}).title) |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4566 |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4567 " :caddfile |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4568 call setqflist([], 'f') |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4569 exe "caddfile Xerr" |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4570 call assert_equal(':caddfile Xerr', getqflist({'title' : 1}).title) |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4571 |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4572 " :grep |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4573 set grepprg=internal |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4574 exe "grep F1 Xerr" |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4575 call assert_equal(':grep F1 Xerr', getqflist({'title' : 1}).title) |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4576 |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4577 " :grepadd |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4578 call setqflist([], 'f') |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4579 exe "grepadd F1 Xerr" |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4580 call assert_equal(':grepadd F1 Xerr', getqflist({'title' : 1}).title) |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4581 set grepprg&vim |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4582 |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4583 " :vimgrep |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4584 exe "vimgrep F1 Xerr" |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4585 call assert_equal(':vimgrep F1 Xerr', getqflist({'title' : 1}).title) |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4586 |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4587 " :vimgrepadd |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4588 call setqflist([], 'f') |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4589 exe "vimgrepadd F1 Xerr" |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4590 call assert_equal(':vimgrepadd F1 Xerr', getqflist({'title' : 1}).title) |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4591 |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4592 call setqflist(['F1:10:L10'], ' ') |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4593 call assert_equal(':setqflist()', getqflist({'title' : 1}).title) |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4594 |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4595 call setqflist([], 'f') |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4596 call setqflist(['F1:10:L10'], 'a') |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4597 call assert_equal(':setqflist()', getqflist({'title' : 1}).title) |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4598 |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4599 call setqflist([], 'f') |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4600 call setqflist(['F1:10:L10'], 'r') |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4601 call assert_equal(':setqflist()', getqflist({'title' : 1}).title) |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4602 |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4603 close |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4604 call delete('Xerr') |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4605 |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4606 call setqflist([], ' ', {'title' : 'Errors'}) |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4607 copen |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4608 call assert_equal('Errors', w:quickfix_title) |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4609 call setqflist([], 'r', {'items' : [{'filename' : 'a.c', 'lnum' : 10}]}) |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4610 call assert_equal('Errors', w:quickfix_title) |
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4611 cclose |
23203
db97415750ce
patch 8.2.2147: quickfix window title not updated in all tab pages
Bram Moolenaar <Bram@vim.org>
parents:
23092
diff
changeset
|
4612 |
db97415750ce
patch 8.2.2147: quickfix window title not updated in all tab pages
Bram Moolenaar <Bram@vim.org>
parents:
23092
diff
changeset
|
4613 " Switching to another quickfix list in one tab page should update the |
db97415750ce
patch 8.2.2147: quickfix window title not updated in all tab pages
Bram Moolenaar <Bram@vim.org>
parents:
23092
diff
changeset
|
4614 " quickfix window title and statusline in all the other tab pages also |
db97415750ce
patch 8.2.2147: quickfix window title not updated in all tab pages
Bram Moolenaar <Bram@vim.org>
parents:
23092
diff
changeset
|
4615 call setqflist([], 'f') |
db97415750ce
patch 8.2.2147: quickfix window title not updated in all tab pages
Bram Moolenaar <Bram@vim.org>
parents:
23092
diff
changeset
|
4616 %bw! |
db97415750ce
patch 8.2.2147: quickfix window title not updated in all tab pages
Bram Moolenaar <Bram@vim.org>
parents:
23092
diff
changeset
|
4617 cgetexpr ['file_one:1:1: error in the first quickfix list'] |
db97415750ce
patch 8.2.2147: quickfix window title not updated in all tab pages
Bram Moolenaar <Bram@vim.org>
parents:
23092
diff
changeset
|
4618 call setqflist([], 'a', {'title': 'first quickfix list'}) |
db97415750ce
patch 8.2.2147: quickfix window title not updated in all tab pages
Bram Moolenaar <Bram@vim.org>
parents:
23092
diff
changeset
|
4619 cgetexpr ['file_two:2:1: error in the second quickfix list'] |
db97415750ce
patch 8.2.2147: quickfix window title not updated in all tab pages
Bram Moolenaar <Bram@vim.org>
parents:
23092
diff
changeset
|
4620 call setqflist([], 'a', {'title': 'second quickfix list'}) |
db97415750ce
patch 8.2.2147: quickfix window title not updated in all tab pages
Bram Moolenaar <Bram@vim.org>
parents:
23092
diff
changeset
|
4621 copen |
db97415750ce
patch 8.2.2147: quickfix window title not updated in all tab pages
Bram Moolenaar <Bram@vim.org>
parents:
23092
diff
changeset
|
4622 wincmd t |
db97415750ce
patch 8.2.2147: quickfix window title not updated in all tab pages
Bram Moolenaar <Bram@vim.org>
parents:
23092
diff
changeset
|
4623 tabnew two |
db97415750ce
patch 8.2.2147: quickfix window title not updated in all tab pages
Bram Moolenaar <Bram@vim.org>
parents:
23092
diff
changeset
|
4624 copen |
db97415750ce
patch 8.2.2147: quickfix window title not updated in all tab pages
Bram Moolenaar <Bram@vim.org>
parents:
23092
diff
changeset
|
4625 wincmd t |
db97415750ce
patch 8.2.2147: quickfix window title not updated in all tab pages
Bram Moolenaar <Bram@vim.org>
parents:
23092
diff
changeset
|
4626 colder |
db97415750ce
patch 8.2.2147: quickfix window title not updated in all tab pages
Bram Moolenaar <Bram@vim.org>
parents:
23092
diff
changeset
|
4627 call assert_equal('first quickfix list', gettabwinvar(1, 2, 'quickfix_title')) |
db97415750ce
patch 8.2.2147: quickfix window title not updated in all tab pages
Bram Moolenaar <Bram@vim.org>
parents:
23092
diff
changeset
|
4628 call assert_equal('first quickfix list', gettabwinvar(2, 2, 'quickfix_title')) |
db97415750ce
patch 8.2.2147: quickfix window title not updated in all tab pages
Bram Moolenaar <Bram@vim.org>
parents:
23092
diff
changeset
|
4629 call assert_equal(1, tabpagewinnr(1)) |
db97415750ce
patch 8.2.2147: quickfix window title not updated in all tab pages
Bram Moolenaar <Bram@vim.org>
parents:
23092
diff
changeset
|
4630 call assert_equal(1, tabpagewinnr(2)) |
db97415750ce
patch 8.2.2147: quickfix window title not updated in all tab pages
Bram Moolenaar <Bram@vim.org>
parents:
23092
diff
changeset
|
4631 tabnew |
db97415750ce
patch 8.2.2147: quickfix window title not updated in all tab pages
Bram Moolenaar <Bram@vim.org>
parents:
23092
diff
changeset
|
4632 call setqflist([], 'a', {'title': 'new quickfix title'}) |
db97415750ce
patch 8.2.2147: quickfix window title not updated in all tab pages
Bram Moolenaar <Bram@vim.org>
parents:
23092
diff
changeset
|
4633 call assert_equal('new quickfix title', gettabwinvar(1, 2, 'quickfix_title')) |
db97415750ce
patch 8.2.2147: quickfix window title not updated in all tab pages
Bram Moolenaar <Bram@vim.org>
parents:
23092
diff
changeset
|
4634 call assert_equal('new quickfix title', gettabwinvar(2, 2, 'quickfix_title')) |
db97415750ce
patch 8.2.2147: quickfix window title not updated in all tab pages
Bram Moolenaar <Bram@vim.org>
parents:
23092
diff
changeset
|
4635 %bw! |
13921
3b6c29f8c1a2
patch 8.0.1831: sometimes the quickfix title is incorrectly prefixed with ':'
Christian Brabandt <cb@256bit.org>
parents:
13825
diff
changeset
|
4636 endfunc |
14085
59e76d550c10
patch 8.1.0060: crash when autocommands delete the current buffer
Christian Brabandt <cb@256bit.org>
parents:
13948
diff
changeset
|
4637 |
59e76d550c10
patch 8.1.0060: crash when autocommands delete the current buffer
Christian Brabandt <cb@256bit.org>
parents:
13948
diff
changeset
|
4638 func Test_lbuffer_with_bwipe() |
59e76d550c10
patch 8.1.0060: crash when autocommands delete the current buffer
Christian Brabandt <cb@256bit.org>
parents:
13948
diff
changeset
|
4639 new |
59e76d550c10
patch 8.1.0060: crash when autocommands delete the current buffer
Christian Brabandt <cb@256bit.org>
parents:
13948
diff
changeset
|
4640 new |
59e76d550c10
patch 8.1.0060: crash when autocommands delete the current buffer
Christian Brabandt <cb@256bit.org>
parents:
13948
diff
changeset
|
4641 augroup nasty |
23758
97296182d336
patch 8.2.2420: too many problems with using all autocommand events
Bram Moolenaar <Bram@vim.org>
parents:
23493
diff
changeset
|
4642 au QuickFixCmdPre,QuickFixCmdPost,BufEnter,BufLeave * bwipe |
14085
59e76d550c10
patch 8.1.0060: crash when autocommands delete the current buffer
Christian Brabandt <cb@256bit.org>
parents:
13948
diff
changeset
|
4643 augroup END |
59e76d550c10
patch 8.1.0060: crash when autocommands delete the current buffer
Christian Brabandt <cb@256bit.org>
parents:
13948
diff
changeset
|
4644 lbuffer |
59e76d550c10
patch 8.1.0060: crash when autocommands delete the current buffer
Christian Brabandt <cb@256bit.org>
parents:
13948
diff
changeset
|
4645 augroup nasty |
59e76d550c10
patch 8.1.0060: crash when autocommands delete the current buffer
Christian Brabandt <cb@256bit.org>
parents:
13948
diff
changeset
|
4646 au! |
59e76d550c10
patch 8.1.0060: crash when autocommands delete the current buffer
Christian Brabandt <cb@256bit.org>
parents:
13948
diff
changeset
|
4647 augroup END |
59e76d550c10
patch 8.1.0060: crash when autocommands delete the current buffer
Christian Brabandt <cb@256bit.org>
parents:
13948
diff
changeset
|
4648 endfunc |
14111
678e326bf7eb
patch 8.1.0073: crash when autocommands call setloclist()
Christian Brabandt <cb@256bit.org>
parents:
14085
diff
changeset
|
4649 |
14250
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4650 " Test for an autocmd freeing the quickfix/location list when cexpr/lexpr is |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4651 " running |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4652 func Xexpr_acmd_freelist(cchar) |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4653 call s:setup_commands(a:cchar) |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4654 |
23758
97296182d336
patch 8.2.2420: too many problems with using all autocommand events
Bram Moolenaar <Bram@vim.org>
parents:
23493
diff
changeset
|
4655 " This was using freed memory (but with what events?) |
14111
678e326bf7eb
patch 8.1.0073: crash when autocommands call setloclist()
Christian Brabandt <cb@256bit.org>
parents:
14085
diff
changeset
|
4656 augroup nasty |
23758
97296182d336
patch 8.2.2420: too many problems with using all autocommand events
Bram Moolenaar <Bram@vim.org>
parents:
23493
diff
changeset
|
4657 au QuickFixCmdPre,QuickFixCmdPost,BufEnter,BufLeave * call g:Xsetlist([], 'f') |
14111
678e326bf7eb
patch 8.1.0073: crash when autocommands call setloclist()
Christian Brabandt <cb@256bit.org>
parents:
14085
diff
changeset
|
4658 augroup END |
14250
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4659 Xexpr "x" |
14111
678e326bf7eb
patch 8.1.0073: crash when autocommands call setloclist()
Christian Brabandt <cb@256bit.org>
parents:
14085
diff
changeset
|
4660 augroup nasty |
678e326bf7eb
patch 8.1.0073: crash when autocommands call setloclist()
Christian Brabandt <cb@256bit.org>
parents:
14085
diff
changeset
|
4661 au! |
678e326bf7eb
patch 8.1.0073: crash when autocommands call setloclist()
Christian Brabandt <cb@256bit.org>
parents:
14085
diff
changeset
|
4662 augroup END |
678e326bf7eb
patch 8.1.0073: crash when autocommands call setloclist()
Christian Brabandt <cb@256bit.org>
parents:
14085
diff
changeset
|
4663 endfunc |
14250
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4664 |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4665 func Test_cexpr_acmd_freelist() |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4666 call Xexpr_acmd_freelist('c') |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4667 call Xexpr_acmd_freelist('l') |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4668 endfunc |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4669 |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4670 " Test for commands that create a new quickfix/location list and jump to the |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4671 " first error automatically. |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4672 func Xjumpto_first_error_test(cchar) |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4673 call s:setup_commands(a:cchar) |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4674 |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4675 call s:create_test_file('Xtestfile1') |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4676 call s:create_test_file('Xtestfile2') |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4677 let l = ['Xtestfile1:2:Line2', 'Xtestfile2:4:Line4'] |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4678 |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4679 " Test for cexpr/lexpr |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4680 enew |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4681 Xexpr l |
20978
2c3e7a6bd6c6
patch 8.2.1040: not enough testing for movement commands
Bram Moolenaar <Bram@vim.org>
parents:
20814
diff
changeset
|
4682 call assert_equal('Xtestfile1', @%) |
14250
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4683 call assert_equal(2, line('.')) |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4684 |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4685 " Test for cfile/lfile |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4686 enew |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4687 call writefile(l, 'Xerr') |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4688 Xfile Xerr |
20978
2c3e7a6bd6c6
patch 8.2.1040: not enough testing for movement commands
Bram Moolenaar <Bram@vim.org>
parents:
20814
diff
changeset
|
4689 call assert_equal('Xtestfile1', @%) |
14250
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4690 call assert_equal(2, line('.')) |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4691 |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4692 " Test for cbuffer/lbuffer |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4693 edit Xerr |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4694 Xbuffer |
20978
2c3e7a6bd6c6
patch 8.2.1040: not enough testing for movement commands
Bram Moolenaar <Bram@vim.org>
parents:
20814
diff
changeset
|
4695 call assert_equal('Xtestfile1', @%) |
14250
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4696 call assert_equal(2, line('.')) |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4697 |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4698 call delete('Xerr') |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4699 call delete('Xtestfile1') |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4700 call delete('Xtestfile2') |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4701 endfunc |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4702 |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4703 func Test_jumpto_first_error() |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4704 call Xjumpto_first_error_test('c') |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4705 call Xjumpto_first_error_test('l') |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4706 endfunc |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4707 |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4708 " Test for a quickfix autocmd changing the quickfix/location list before |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4709 " jumping to the first error in the new list. |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4710 func Xautocmd_changelist(cchar) |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4711 call s:setup_commands(a:cchar) |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4712 |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4713 " Test for cfile/lfile |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4714 call s:create_test_file('Xtestfile1') |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4715 call s:create_test_file('Xtestfile2') |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4716 Xexpr 'Xtestfile1:2:Line2' |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4717 autocmd QuickFixCmdPost * Xolder |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4718 call writefile(['Xtestfile2:4:Line4'], 'Xerr') |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4719 Xfile Xerr |
20978
2c3e7a6bd6c6
patch 8.2.1040: not enough testing for movement commands
Bram Moolenaar <Bram@vim.org>
parents:
20814
diff
changeset
|
4720 call assert_equal('Xtestfile2', @%) |
14250
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4721 call assert_equal(4, line('.')) |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4722 autocmd! QuickFixCmdPost |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4723 |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4724 " Test for cbuffer/lbuffer |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4725 call g:Xsetlist([], 'f') |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4726 Xexpr 'Xtestfile1:2:Line2' |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4727 autocmd QuickFixCmdPost * Xolder |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4728 call writefile(['Xtestfile2:4:Line4'], 'Xerr') |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4729 edit Xerr |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4730 Xbuffer |
20978
2c3e7a6bd6c6
patch 8.2.1040: not enough testing for movement commands
Bram Moolenaar <Bram@vim.org>
parents:
20814
diff
changeset
|
4731 call assert_equal('Xtestfile2', @%) |
14250
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4732 call assert_equal(4, line('.')) |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4733 autocmd! QuickFixCmdPost |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4734 |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4735 " Test for cexpr/lexpr |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4736 call g:Xsetlist([], 'f') |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4737 Xexpr 'Xtestfile1:2:Line2' |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4738 autocmd QuickFixCmdPost * Xolder |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4739 Xexpr 'Xtestfile2:4:Line4' |
20978
2c3e7a6bd6c6
patch 8.2.1040: not enough testing for movement commands
Bram Moolenaar <Bram@vim.org>
parents:
20814
diff
changeset
|
4740 call assert_equal('Xtestfile2', @%) |
14250
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4741 call assert_equal(4, line('.')) |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4742 autocmd! QuickFixCmdPost |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4743 |
14258
71bb93bf9a44
patch 8.1.0145: test with grep is failing on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
14250
diff
changeset
|
4744 " The grepprg may not be set on non-Unix systems |
71bb93bf9a44
patch 8.1.0145: test with grep is failing on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
14250
diff
changeset
|
4745 if has('unix') |
71bb93bf9a44
patch 8.1.0145: test with grep is failing on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
14250
diff
changeset
|
4746 " Test for grep/lgrep |
71bb93bf9a44
patch 8.1.0145: test with grep is failing on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
14250
diff
changeset
|
4747 call g:Xsetlist([], 'f') |
71bb93bf9a44
patch 8.1.0145: test with grep is failing on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
14250
diff
changeset
|
4748 Xexpr 'Xtestfile1:2:Line2' |
71bb93bf9a44
patch 8.1.0145: test with grep is failing on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
14250
diff
changeset
|
4749 autocmd QuickFixCmdPost * Xolder |
71bb93bf9a44
patch 8.1.0145: test with grep is failing on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
14250
diff
changeset
|
4750 silent Xgrep Line5 Xtestfile2 |
20978
2c3e7a6bd6c6
patch 8.2.1040: not enough testing for movement commands
Bram Moolenaar <Bram@vim.org>
parents:
20814
diff
changeset
|
4751 call assert_equal('Xtestfile2', @%) |
14258
71bb93bf9a44
patch 8.1.0145: test with grep is failing on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
14250
diff
changeset
|
4752 call assert_equal(5, line('.')) |
71bb93bf9a44
patch 8.1.0145: test with grep is failing on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
14250
diff
changeset
|
4753 autocmd! QuickFixCmdPost |
71bb93bf9a44
patch 8.1.0145: test with grep is failing on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
14250
diff
changeset
|
4754 endif |
14250
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4755 |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4756 " Test for vimgrep/lvimgrep |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4757 call g:Xsetlist([], 'f') |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4758 Xexpr 'Xtestfile1:2:Line2' |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4759 autocmd QuickFixCmdPost * Xolder |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4760 silent Xvimgrep Line5 Xtestfile2 |
20978
2c3e7a6bd6c6
patch 8.2.1040: not enough testing for movement commands
Bram Moolenaar <Bram@vim.org>
parents:
20814
diff
changeset
|
4761 call assert_equal('Xtestfile2', @%) |
14250
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4762 call assert_equal(5, line('.')) |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4763 autocmd! QuickFixCmdPost |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4764 |
14491
9df0fcbfebb2
patch 8.1.0259: no test for fixed quickfix issue
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
4765 " Test for autocommands clearing the quickfix list before jumping to the |
9df0fcbfebb2
patch 8.1.0259: no test for fixed quickfix issue
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
4766 " first error. This should not result in an error |
9df0fcbfebb2
patch 8.1.0259: no test for fixed quickfix issue
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
4767 autocmd QuickFixCmdPost * call g:Xsetlist([], 'r') |
9df0fcbfebb2
patch 8.1.0259: no test for fixed quickfix issue
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
4768 let v:errmsg = '' |
9df0fcbfebb2
patch 8.1.0259: no test for fixed quickfix issue
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
4769 " Test for cfile/lfile |
9df0fcbfebb2
patch 8.1.0259: no test for fixed quickfix issue
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
4770 Xfile Xerr |
9df0fcbfebb2
patch 8.1.0259: no test for fixed quickfix issue
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
4771 call assert_true(v:errmsg !~# 'E42:') |
9df0fcbfebb2
patch 8.1.0259: no test for fixed quickfix issue
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
4772 " Test for cbuffer/lbuffer |
9df0fcbfebb2
patch 8.1.0259: no test for fixed quickfix issue
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
4773 edit Xerr |
9df0fcbfebb2
patch 8.1.0259: no test for fixed quickfix issue
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
4774 Xbuffer |
9df0fcbfebb2
patch 8.1.0259: no test for fixed quickfix issue
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
4775 call assert_true(v:errmsg !~# 'E42:') |
9df0fcbfebb2
patch 8.1.0259: no test for fixed quickfix issue
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
4776 " Test for cexpr/lexpr |
9df0fcbfebb2
patch 8.1.0259: no test for fixed quickfix issue
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
4777 Xexpr 'Xtestfile2:4:Line4' |
9df0fcbfebb2
patch 8.1.0259: no test for fixed quickfix issue
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
4778 call assert_true(v:errmsg !~# 'E42:') |
9df0fcbfebb2
patch 8.1.0259: no test for fixed quickfix issue
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
4779 " Test for grep/lgrep |
9df0fcbfebb2
patch 8.1.0259: no test for fixed quickfix issue
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
4780 " The grepprg may not be set on non-Unix systems |
9df0fcbfebb2
patch 8.1.0259: no test for fixed quickfix issue
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
4781 if has('unix') |
9df0fcbfebb2
patch 8.1.0259: no test for fixed quickfix issue
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
4782 silent Xgrep Line5 Xtestfile2 |
9df0fcbfebb2
patch 8.1.0259: no test for fixed quickfix issue
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
4783 call assert_true(v:errmsg !~# 'E42:') |
9df0fcbfebb2
patch 8.1.0259: no test for fixed quickfix issue
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
4784 endif |
9df0fcbfebb2
patch 8.1.0259: no test for fixed quickfix issue
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
4785 " Test for vimgrep/lvimgrep |
9df0fcbfebb2
patch 8.1.0259: no test for fixed quickfix issue
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
4786 call assert_fails('silent Xvimgrep Line5 Xtestfile2', 'E480:') |
9df0fcbfebb2
patch 8.1.0259: no test for fixed quickfix issue
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
4787 autocmd! QuickFixCmdPost |
9df0fcbfebb2
patch 8.1.0259: no test for fixed quickfix issue
Christian Brabandt <cb@256bit.org>
parents:
14397
diff
changeset
|
4788 |
14250
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4789 call delete('Xerr') |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4790 call delete('Xtestfile1') |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4791 call delete('Xtestfile2') |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4792 endfunc |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4793 |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4794 func Test_autocmd_changelist() |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4795 call Xautocmd_changelist('c') |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4796 call Xautocmd_changelist('l') |
ca6ccee4823f
patch 8.1.0141: :cexpr no longer jumps to the first error
Christian Brabandt <cb@256bit.org>
parents:
14111
diff
changeset
|
4797 endfunc |
14299
932dde1d8a71
patch 8.1.0165: :clist output can be very long
Christian Brabandt <cb@256bit.org>
parents:
14258
diff
changeset
|
4798 |
932dde1d8a71
patch 8.1.0165: :clist output can be very long
Christian Brabandt <cb@256bit.org>
parents:
14258
diff
changeset
|
4799 " Tests for the ':filter /pat/ clist' command |
932dde1d8a71
patch 8.1.0165: :clist output can be very long
Christian Brabandt <cb@256bit.org>
parents:
14258
diff
changeset
|
4800 func Test_filter_clist() |
932dde1d8a71
patch 8.1.0165: :clist output can be very long
Christian Brabandt <cb@256bit.org>
parents:
14258
diff
changeset
|
4801 cexpr ['Xfile1:10:10:Line 10', 'Xfile2:15:15:Line 15'] |
932dde1d8a71
patch 8.1.0165: :clist output can be very long
Christian Brabandt <cb@256bit.org>
parents:
14258
diff
changeset
|
4802 call assert_equal([' 2 Xfile2:15 col 15: Line 15'], |
932dde1d8a71
patch 8.1.0165: :clist output can be very long
Christian Brabandt <cb@256bit.org>
parents:
14258
diff
changeset
|
4803 \ split(execute('filter /Line 15/ clist'), "\n")) |
932dde1d8a71
patch 8.1.0165: :clist output can be very long
Christian Brabandt <cb@256bit.org>
parents:
14258
diff
changeset
|
4804 call assert_equal([' 1 Xfile1:10 col 10: Line 10'], |
932dde1d8a71
patch 8.1.0165: :clist output can be very long
Christian Brabandt <cb@256bit.org>
parents:
14258
diff
changeset
|
4805 \ split(execute('filter /Xfile1/ clist'), "\n")) |
932dde1d8a71
patch 8.1.0165: :clist output can be very long
Christian Brabandt <cb@256bit.org>
parents:
14258
diff
changeset
|
4806 call assert_equal([], split(execute('filter /abc/ clist'), "\n")) |
932dde1d8a71
patch 8.1.0165: :clist output can be very long
Christian Brabandt <cb@256bit.org>
parents:
14258
diff
changeset
|
4807 |
932dde1d8a71
patch 8.1.0165: :clist output can be very long
Christian Brabandt <cb@256bit.org>
parents:
14258
diff
changeset
|
4808 call setqflist([{'module' : 'abc', 'pattern' : 'pat1'}, |
932dde1d8a71
patch 8.1.0165: :clist output can be very long
Christian Brabandt <cb@256bit.org>
parents:
14258
diff
changeset
|
4809 \ {'module' : 'pqr', 'pattern' : 'pat2'}], ' ') |
932dde1d8a71
patch 8.1.0165: :clist output can be very long
Christian Brabandt <cb@256bit.org>
parents:
14258
diff
changeset
|
4810 call assert_equal([' 2 pqr:pat2: '], |
932dde1d8a71
patch 8.1.0165: :clist output can be very long
Christian Brabandt <cb@256bit.org>
parents:
14258
diff
changeset
|
4811 \ split(execute('filter /pqr/ clist'), "\n")) |
932dde1d8a71
patch 8.1.0165: :clist output can be very long
Christian Brabandt <cb@256bit.org>
parents:
14258
diff
changeset
|
4812 call assert_equal([' 1 abc:pat1: '], |
932dde1d8a71
patch 8.1.0165: :clist output can be very long
Christian Brabandt <cb@256bit.org>
parents:
14258
diff
changeset
|
4813 \ split(execute('filter /pat1/ clist'), "\n")) |
932dde1d8a71
patch 8.1.0165: :clist output can be very long
Christian Brabandt <cb@256bit.org>
parents:
14258
diff
changeset
|
4814 endfunc |
14397
19d99d9e670c
patch 8.1.0213: CTRL-W CR does not work properly in a quickfix window
Christian Brabandt <cb@256bit.org>
parents:
14299
diff
changeset
|
4815 |
19d99d9e670c
patch 8.1.0213: CTRL-W CR does not work properly in a quickfix window
Christian Brabandt <cb@256bit.org>
parents:
14299
diff
changeset
|
4816 " Tests for the "CTRL-W <CR>" command. |
19d99d9e670c
patch 8.1.0213: CTRL-W CR does not work properly in a quickfix window
Christian Brabandt <cb@256bit.org>
parents:
14299
diff
changeset
|
4817 func Xview_result_split_tests(cchar) |
19d99d9e670c
patch 8.1.0213: CTRL-W CR does not work properly in a quickfix window
Christian Brabandt <cb@256bit.org>
parents:
14299
diff
changeset
|
4818 call s:setup_commands(a:cchar) |
19d99d9e670c
patch 8.1.0213: CTRL-W CR does not work properly in a quickfix window
Christian Brabandt <cb@256bit.org>
parents:
14299
diff
changeset
|
4819 |
19d99d9e670c
patch 8.1.0213: CTRL-W CR does not work properly in a quickfix window
Christian Brabandt <cb@256bit.org>
parents:
14299
diff
changeset
|
4820 " Test that "CTRL-W <CR>" in a qf/ll window fails with empty list. |
19d99d9e670c
patch 8.1.0213: CTRL-W CR does not work properly in a quickfix window
Christian Brabandt <cb@256bit.org>
parents:
14299
diff
changeset
|
4821 call g:Xsetlist([]) |
19d99d9e670c
patch 8.1.0213: CTRL-W CR does not work properly in a quickfix window
Christian Brabandt <cb@256bit.org>
parents:
14299
diff
changeset
|
4822 Xopen |
19d99d9e670c
patch 8.1.0213: CTRL-W CR does not work properly in a quickfix window
Christian Brabandt <cb@256bit.org>
parents:
14299
diff
changeset
|
4823 let l:win_count = winnr('$') |
22087
ff21e2962490
patch 8.2.1593: tests do not check the error number properly
Bram Moolenaar <Bram@vim.org>
parents:
22083
diff
changeset
|
4824 call assert_fails('execute "normal! \<C-W>\<CR>"', 'E42:') |
14397
19d99d9e670c
patch 8.1.0213: CTRL-W CR does not work properly in a quickfix window
Christian Brabandt <cb@256bit.org>
parents:
14299
diff
changeset
|
4825 call assert_equal(l:win_count, winnr('$')) |
19d99d9e670c
patch 8.1.0213: CTRL-W CR does not work properly in a quickfix window
Christian Brabandt <cb@256bit.org>
parents:
14299
diff
changeset
|
4826 Xclose |
19d99d9e670c
patch 8.1.0213: CTRL-W CR does not work properly in a quickfix window
Christian Brabandt <cb@256bit.org>
parents:
14299
diff
changeset
|
4827 endfunc |
19d99d9e670c
patch 8.1.0213: CTRL-W CR does not work properly in a quickfix window
Christian Brabandt <cb@256bit.org>
parents:
14299
diff
changeset
|
4828 |
19d99d9e670c
patch 8.1.0213: CTRL-W CR does not work properly in a quickfix window
Christian Brabandt <cb@256bit.org>
parents:
14299
diff
changeset
|
4829 func Test_view_result_split() |
19d99d9e670c
patch 8.1.0213: CTRL-W CR does not work properly in a quickfix window
Christian Brabandt <cb@256bit.org>
parents:
14299
diff
changeset
|
4830 call Xview_result_split_tests('c') |
19d99d9e670c
patch 8.1.0213: CTRL-W CR does not work properly in a quickfix window
Christian Brabandt <cb@256bit.org>
parents:
14299
diff
changeset
|
4831 call Xview_result_split_tests('l') |
19d99d9e670c
patch 8.1.0213: CTRL-W CR does not work properly in a quickfix window
Christian Brabandt <cb@256bit.org>
parents:
14299
diff
changeset
|
4832 endfunc |
14552
b298737a7188
patch 8.1.0289: cursor moves to wrong column after quickfix jump
Christian Brabandt <cb@256bit.org>
parents:
14491
diff
changeset
|
4833 |
b298737a7188
patch 8.1.0289: cursor moves to wrong column after quickfix jump
Christian Brabandt <cb@256bit.org>
parents:
14491
diff
changeset
|
4834 " Test that :cc sets curswant |
b298737a7188
patch 8.1.0289: cursor moves to wrong column after quickfix jump
Christian Brabandt <cb@256bit.org>
parents:
14491
diff
changeset
|
4835 func Test_curswant() |
b298737a7188
patch 8.1.0289: cursor moves to wrong column after quickfix jump
Christian Brabandt <cb@256bit.org>
parents:
14491
diff
changeset
|
4836 helpgrep quickfix |
b298737a7188
patch 8.1.0289: cursor moves to wrong column after quickfix jump
Christian Brabandt <cb@256bit.org>
parents:
14491
diff
changeset
|
4837 normal! llll |
b298737a7188
patch 8.1.0289: cursor moves to wrong column after quickfix jump
Christian Brabandt <cb@256bit.org>
parents:
14491
diff
changeset
|
4838 1cc |
b298737a7188
patch 8.1.0289: cursor moves to wrong column after quickfix jump
Christian Brabandt <cb@256bit.org>
parents:
14491
diff
changeset
|
4839 call assert_equal(getcurpos()[4], virtcol('.')) |
b298737a7188
patch 8.1.0289: cursor moves to wrong column after quickfix jump
Christian Brabandt <cb@256bit.org>
parents:
14491
diff
changeset
|
4840 cclose | helpclose |
b298737a7188
patch 8.1.0289: cursor moves to wrong column after quickfix jump
Christian Brabandt <cb@256bit.org>
parents:
14491
diff
changeset
|
4841 endfunc |
15024
3a3c9b638187
patch 8.1.0523: opening window from quickfix leaves empty buffer behind
Bram Moolenaar <Bram@vim.org>
parents:
14976
diff
changeset
|
4842 |
3a3c9b638187
patch 8.1.0523: opening window from quickfix leaves empty buffer behind
Bram Moolenaar <Bram@vim.org>
parents:
14976
diff
changeset
|
4843 " Test for opening a file from the quickfix window using CTRL-W <Enter> |
3a3c9b638187
patch 8.1.0523: opening window from quickfix leaves empty buffer behind
Bram Moolenaar <Bram@vim.org>
parents:
14976
diff
changeset
|
4844 " doesn't leave an empty buffer around. |
3a3c9b638187
patch 8.1.0523: opening window from quickfix leaves empty buffer behind
Bram Moolenaar <Bram@vim.org>
parents:
14976
diff
changeset
|
4845 func Test_splitview() |
3a3c9b638187
patch 8.1.0523: opening window from quickfix leaves empty buffer behind
Bram Moolenaar <Bram@vim.org>
parents:
14976
diff
changeset
|
4846 call s:create_test_file('Xtestfile1') |
3a3c9b638187
patch 8.1.0523: opening window from quickfix leaves empty buffer behind
Bram Moolenaar <Bram@vim.org>
parents:
14976
diff
changeset
|
4847 call s:create_test_file('Xtestfile2') |
3a3c9b638187
patch 8.1.0523: opening window from quickfix leaves empty buffer behind
Bram Moolenaar <Bram@vim.org>
parents:
14976
diff
changeset
|
4848 new | only |
3a3c9b638187
patch 8.1.0523: opening window from quickfix leaves empty buffer behind
Bram Moolenaar <Bram@vim.org>
parents:
14976
diff
changeset
|
4849 let last_bufnr = bufnr('Test_sv_1', 1) |
3a3c9b638187
patch 8.1.0523: opening window from quickfix leaves empty buffer behind
Bram Moolenaar <Bram@vim.org>
parents:
14976
diff
changeset
|
4850 let l = ['Xtestfile1:2:Line2', 'Xtestfile2:4:Line4'] |
3a3c9b638187
patch 8.1.0523: opening window from quickfix leaves empty buffer behind
Bram Moolenaar <Bram@vim.org>
parents:
14976
diff
changeset
|
4851 cgetexpr l |
3a3c9b638187
patch 8.1.0523: opening window from quickfix leaves empty buffer behind
Bram Moolenaar <Bram@vim.org>
parents:
14976
diff
changeset
|
4852 copen |
3a3c9b638187
patch 8.1.0523: opening window from quickfix leaves empty buffer behind
Bram Moolenaar <Bram@vim.org>
parents:
14976
diff
changeset
|
4853 let numbufs = len(getbufinfo()) |
3a3c9b638187
patch 8.1.0523: opening window from quickfix leaves empty buffer behind
Bram Moolenaar <Bram@vim.org>
parents:
14976
diff
changeset
|
4854 exe "normal \<C-W>\<CR>" |
3a3c9b638187
patch 8.1.0523: opening window from quickfix leaves empty buffer behind
Bram Moolenaar <Bram@vim.org>
parents:
14976
diff
changeset
|
4855 copen |
3a3c9b638187
patch 8.1.0523: opening window from quickfix leaves empty buffer behind
Bram Moolenaar <Bram@vim.org>
parents:
14976
diff
changeset
|
4856 exe "normal j\<C-W>\<CR>" |
3a3c9b638187
patch 8.1.0523: opening window from quickfix leaves empty buffer behind
Bram Moolenaar <Bram@vim.org>
parents:
14976
diff
changeset
|
4857 " Make sure new empty buffers are not created |
3a3c9b638187
patch 8.1.0523: opening window from quickfix leaves empty buffer behind
Bram Moolenaar <Bram@vim.org>
parents:
14976
diff
changeset
|
4858 call assert_equal(numbufs, len(getbufinfo())) |
3a3c9b638187
patch 8.1.0523: opening window from quickfix leaves empty buffer behind
Bram Moolenaar <Bram@vim.org>
parents:
14976
diff
changeset
|
4859 " Creating a new buffer should use the next available buffer number |
3a3c9b638187
patch 8.1.0523: opening window from quickfix leaves empty buffer behind
Bram Moolenaar <Bram@vim.org>
parents:
14976
diff
changeset
|
4860 call assert_equal(last_bufnr + 4, bufnr("Test_sv_2", 1)) |
3a3c9b638187
patch 8.1.0523: opening window from quickfix leaves empty buffer behind
Bram Moolenaar <Bram@vim.org>
parents:
14976
diff
changeset
|
4861 bwipe Test_sv_1 |
3a3c9b638187
patch 8.1.0523: opening window from quickfix leaves empty buffer behind
Bram Moolenaar <Bram@vim.org>
parents:
14976
diff
changeset
|
4862 bwipe Test_sv_2 |
3a3c9b638187
patch 8.1.0523: opening window from quickfix leaves empty buffer behind
Bram Moolenaar <Bram@vim.org>
parents:
14976
diff
changeset
|
4863 new | only |
3a3c9b638187
patch 8.1.0523: opening window from quickfix leaves empty buffer behind
Bram Moolenaar <Bram@vim.org>
parents:
14976
diff
changeset
|
4864 |
3a3c9b638187
patch 8.1.0523: opening window from quickfix leaves empty buffer behind
Bram Moolenaar <Bram@vim.org>
parents:
14976
diff
changeset
|
4865 " When split opening files from location list window, make sure that two |
3a3c9b638187
patch 8.1.0523: opening window from quickfix leaves empty buffer behind
Bram Moolenaar <Bram@vim.org>
parents:
14976
diff
changeset
|
4866 " windows doesn't refer to the same location list |
3a3c9b638187
patch 8.1.0523: opening window from quickfix leaves empty buffer behind
Bram Moolenaar <Bram@vim.org>
parents:
14976
diff
changeset
|
4867 lgetexpr l |
3a3c9b638187
patch 8.1.0523: opening window from quickfix leaves empty buffer behind
Bram Moolenaar <Bram@vim.org>
parents:
14976
diff
changeset
|
4868 let locid = getloclist(0, {'id' : 0}).id |
3a3c9b638187
patch 8.1.0523: opening window from quickfix leaves empty buffer behind
Bram Moolenaar <Bram@vim.org>
parents:
14976
diff
changeset
|
4869 lopen |
3a3c9b638187
patch 8.1.0523: opening window from quickfix leaves empty buffer behind
Bram Moolenaar <Bram@vim.org>
parents:
14976
diff
changeset
|
4870 exe "normal \<C-W>\<CR>" |
3a3c9b638187
patch 8.1.0523: opening window from quickfix leaves empty buffer behind
Bram Moolenaar <Bram@vim.org>
parents:
14976
diff
changeset
|
4871 call assert_notequal(locid, getloclist(0, {'id' : 0}).id) |
3a3c9b638187
patch 8.1.0523: opening window from quickfix leaves empty buffer behind
Bram Moolenaar <Bram@vim.org>
parents:
14976
diff
changeset
|
4872 call assert_equal(0, getloclist(0, {'winid' : 0}).winid) |
3a3c9b638187
patch 8.1.0523: opening window from quickfix leaves empty buffer behind
Bram Moolenaar <Bram@vim.org>
parents:
14976
diff
changeset
|
4873 new | only |
3a3c9b638187
patch 8.1.0523: opening window from quickfix leaves empty buffer behind
Bram Moolenaar <Bram@vim.org>
parents:
14976
diff
changeset
|
4874 |
3a3c9b638187
patch 8.1.0523: opening window from quickfix leaves empty buffer behind
Bram Moolenaar <Bram@vim.org>
parents:
14976
diff
changeset
|
4875 " When split opening files from a helpgrep location list window, a new help |
15770
77e97f159554
patch 8.1.0892: failure when closing a window when location list is in use
Bram Moolenaar <Bram@vim.org>
parents:
15740
diff
changeset
|
4876 " window should be opened with a copy of the location list. |
15024
3a3c9b638187
patch 8.1.0523: opening window from quickfix leaves empty buffer behind
Bram Moolenaar <Bram@vim.org>
parents:
14976
diff
changeset
|
4877 lhelpgrep window |
3a3c9b638187
patch 8.1.0523: opening window from quickfix leaves empty buffer behind
Bram Moolenaar <Bram@vim.org>
parents:
14976
diff
changeset
|
4878 let locid = getloclist(0, {'id' : 0}).id |
3a3c9b638187
patch 8.1.0523: opening window from quickfix leaves empty buffer behind
Bram Moolenaar <Bram@vim.org>
parents:
14976
diff
changeset
|
4879 lwindow |
3a3c9b638187
patch 8.1.0523: opening window from quickfix leaves empty buffer behind
Bram Moolenaar <Bram@vim.org>
parents:
14976
diff
changeset
|
4880 exe "normal j\<C-W>\<CR>" |
3a3c9b638187
patch 8.1.0523: opening window from quickfix leaves empty buffer behind
Bram Moolenaar <Bram@vim.org>
parents:
14976
diff
changeset
|
4881 call assert_notequal(locid, getloclist(0, {'id' : 0}).id) |
3a3c9b638187
patch 8.1.0523: opening window from quickfix leaves empty buffer behind
Bram Moolenaar <Bram@vim.org>
parents:
14976
diff
changeset
|
4882 call assert_equal(0, getloclist(0, {'winid' : 0}).winid) |
3a3c9b638187
patch 8.1.0523: opening window from quickfix leaves empty buffer behind
Bram Moolenaar <Bram@vim.org>
parents:
14976
diff
changeset
|
4883 new | only |
3a3c9b638187
patch 8.1.0523: opening window from quickfix leaves empty buffer behind
Bram Moolenaar <Bram@vim.org>
parents:
14976
diff
changeset
|
4884 |
19435
8f8a5a15d00a
patch 8.2.0275: some Ex code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents:
19407
diff
changeset
|
4885 " Using :split or :vsplit from a quickfix window should behave like a :new |
8f8a5a15d00a
patch 8.2.0275: some Ex code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents:
19407
diff
changeset
|
4886 " or a :vnew command |
8f8a5a15d00a
patch 8.2.0275: some Ex code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents:
19407
diff
changeset
|
4887 copen |
8f8a5a15d00a
patch 8.2.0275: some Ex code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents:
19407
diff
changeset
|
4888 split |
8f8a5a15d00a
patch 8.2.0275: some Ex code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents:
19407
diff
changeset
|
4889 call assert_equal(3, winnr('$')) |
8f8a5a15d00a
patch 8.2.0275: some Ex code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents:
19407
diff
changeset
|
4890 let l = getwininfo() |
8f8a5a15d00a
patch 8.2.0275: some Ex code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents:
19407
diff
changeset
|
4891 call assert_equal([0, 0, 1], [l[0].quickfix, l[1].quickfix, l[2].quickfix]) |
8f8a5a15d00a
patch 8.2.0275: some Ex code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents:
19407
diff
changeset
|
4892 close |
8f8a5a15d00a
patch 8.2.0275: some Ex code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents:
19407
diff
changeset
|
4893 copen |
8f8a5a15d00a
patch 8.2.0275: some Ex code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents:
19407
diff
changeset
|
4894 vsplit |
8f8a5a15d00a
patch 8.2.0275: some Ex code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents:
19407
diff
changeset
|
4895 let l = getwininfo() |
8f8a5a15d00a
patch 8.2.0275: some Ex code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents:
19407
diff
changeset
|
4896 call assert_equal([0, 0, 1], [l[0].quickfix, l[1].quickfix, l[2].quickfix]) |
8f8a5a15d00a
patch 8.2.0275: some Ex code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents:
19407
diff
changeset
|
4897 new | only |
8f8a5a15d00a
patch 8.2.0275: some Ex code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents:
19407
diff
changeset
|
4898 |
15024
3a3c9b638187
patch 8.1.0523: opening window from quickfix leaves empty buffer behind
Bram Moolenaar <Bram@vim.org>
parents:
14976
diff
changeset
|
4899 call delete('Xtestfile1') |
3a3c9b638187
patch 8.1.0523: opening window from quickfix leaves empty buffer behind
Bram Moolenaar <Bram@vim.org>
parents:
14976
diff
changeset
|
4900 call delete('Xtestfile2') |
3a3c9b638187
patch 8.1.0523: opening window from quickfix leaves empty buffer behind
Bram Moolenaar <Bram@vim.org>
parents:
14976
diff
changeset
|
4901 endfunc |
15703
b8a2362073bb
patch 8.1.0859: "%v" in 'errorformat' does handle multi-byte characters
Bram Moolenaar <Bram@vim.org>
parents:
15424
diff
changeset
|
4902 |
b8a2362073bb
patch 8.1.0859: "%v" in 'errorformat' does handle multi-byte characters
Bram Moolenaar <Bram@vim.org>
parents:
15424
diff
changeset
|
4903 " Test for parsing entries using visual screen column |
b8a2362073bb
patch 8.1.0859: "%v" in 'errorformat' does handle multi-byte characters
Bram Moolenaar <Bram@vim.org>
parents:
15424
diff
changeset
|
4904 func Test_viscol() |
b8a2362073bb
patch 8.1.0859: "%v" in 'errorformat' does handle multi-byte characters
Bram Moolenaar <Bram@vim.org>
parents:
15424
diff
changeset
|
4905 enew |
b8a2362073bb
patch 8.1.0859: "%v" in 'errorformat' does handle multi-byte characters
Bram Moolenaar <Bram@vim.org>
parents:
15424
diff
changeset
|
4906 call writefile(["Col1\tCol2\tCol3"], 'Xfile1') |
b8a2362073bb
patch 8.1.0859: "%v" in 'errorformat' does handle multi-byte characters
Bram Moolenaar <Bram@vim.org>
parents:
15424
diff
changeset
|
4907 edit Xfile1 |
b8a2362073bb
patch 8.1.0859: "%v" in 'errorformat' does handle multi-byte characters
Bram Moolenaar <Bram@vim.org>
parents:
15424
diff
changeset
|
4908 |
b8a2362073bb
patch 8.1.0859: "%v" in 'errorformat' does handle multi-byte characters
Bram Moolenaar <Bram@vim.org>
parents:
15424
diff
changeset
|
4909 " Use byte offset for column number |
b8a2362073bb
patch 8.1.0859: "%v" in 'errorformat' does handle multi-byte characters
Bram Moolenaar <Bram@vim.org>
parents:
15424
diff
changeset
|
4910 set efm& |
b8a2362073bb
patch 8.1.0859: "%v" in 'errorformat' does handle multi-byte characters
Bram Moolenaar <Bram@vim.org>
parents:
15424
diff
changeset
|
4911 cexpr "Xfile1:1:5:XX\nXfile1:1:9:YY\nXfile1:1:20:ZZ" |
b8a2362073bb
patch 8.1.0859: "%v" in 'errorformat' does handle multi-byte characters
Bram Moolenaar <Bram@vim.org>
parents:
15424
diff
changeset
|
4912 call assert_equal([5, 8], [col('.'), virtcol('.')]) |
b8a2362073bb
patch 8.1.0859: "%v" in 'errorformat' does handle multi-byte characters
Bram Moolenaar <Bram@vim.org>
parents:
15424
diff
changeset
|
4913 cnext |
b8a2362073bb
patch 8.1.0859: "%v" in 'errorformat' does handle multi-byte characters
Bram Moolenaar <Bram@vim.org>
parents:
15424
diff
changeset
|
4914 call assert_equal([9, 12], [col('.'), virtcol('.')]) |
b8a2362073bb
patch 8.1.0859: "%v" in 'errorformat' does handle multi-byte characters
Bram Moolenaar <Bram@vim.org>
parents:
15424
diff
changeset
|
4915 cnext |
b8a2362073bb
patch 8.1.0859: "%v" in 'errorformat' does handle multi-byte characters
Bram Moolenaar <Bram@vim.org>
parents:
15424
diff
changeset
|
4916 call assert_equal([14, 20], [col('.'), virtcol('.')]) |
b8a2362073bb
patch 8.1.0859: "%v" in 'errorformat' does handle multi-byte characters
Bram Moolenaar <Bram@vim.org>
parents:
15424
diff
changeset
|
4917 |
b8a2362073bb
patch 8.1.0859: "%v" in 'errorformat' does handle multi-byte characters
Bram Moolenaar <Bram@vim.org>
parents:
15424
diff
changeset
|
4918 " Use screen column offset for column number |
b8a2362073bb
patch 8.1.0859: "%v" in 'errorformat' does handle multi-byte characters
Bram Moolenaar <Bram@vim.org>
parents:
15424
diff
changeset
|
4919 set efm=%f:%l:%v:%m |
b8a2362073bb
patch 8.1.0859: "%v" in 'errorformat' does handle multi-byte characters
Bram Moolenaar <Bram@vim.org>
parents:
15424
diff
changeset
|
4920 cexpr "Xfile1:1:8:XX\nXfile1:1:12:YY\nXfile1:1:20:ZZ" |
b8a2362073bb
patch 8.1.0859: "%v" in 'errorformat' does handle multi-byte characters
Bram Moolenaar <Bram@vim.org>
parents:
15424
diff
changeset
|
4921 call assert_equal([5, 8], [col('.'), virtcol('.')]) |
b8a2362073bb
patch 8.1.0859: "%v" in 'errorformat' does handle multi-byte characters
Bram Moolenaar <Bram@vim.org>
parents:
15424
diff
changeset
|
4922 cnext |
b8a2362073bb
patch 8.1.0859: "%v" in 'errorformat' does handle multi-byte characters
Bram Moolenaar <Bram@vim.org>
parents:
15424
diff
changeset
|
4923 call assert_equal([9, 12], [col('.'), virtcol('.')]) |
b8a2362073bb
patch 8.1.0859: "%v" in 'errorformat' does handle multi-byte characters
Bram Moolenaar <Bram@vim.org>
parents:
15424
diff
changeset
|
4924 cnext |
b8a2362073bb
patch 8.1.0859: "%v" in 'errorformat' does handle multi-byte characters
Bram Moolenaar <Bram@vim.org>
parents:
15424
diff
changeset
|
4925 call assert_equal([14, 20], [col('.'), virtcol('.')]) |
b8a2362073bb
patch 8.1.0859: "%v" in 'errorformat' does handle multi-byte characters
Bram Moolenaar <Bram@vim.org>
parents:
15424
diff
changeset
|
4926 cexpr "Xfile1:1:6:XX\nXfile1:1:15:YY\nXfile1:1:24:ZZ" |
b8a2362073bb
patch 8.1.0859: "%v" in 'errorformat' does handle multi-byte characters
Bram Moolenaar <Bram@vim.org>
parents:
15424
diff
changeset
|
4927 call assert_equal([5, 8], [col('.'), virtcol('.')]) |
b8a2362073bb
patch 8.1.0859: "%v" in 'errorformat' does handle multi-byte characters
Bram Moolenaar <Bram@vim.org>
parents:
15424
diff
changeset
|
4928 cnext |
b8a2362073bb
patch 8.1.0859: "%v" in 'errorformat' does handle multi-byte characters
Bram Moolenaar <Bram@vim.org>
parents:
15424
diff
changeset
|
4929 call assert_equal([10, 16], [col('.'), virtcol('.')]) |
b8a2362073bb
patch 8.1.0859: "%v" in 'errorformat' does handle multi-byte characters
Bram Moolenaar <Bram@vim.org>
parents:
15424
diff
changeset
|
4930 cnext |
b8a2362073bb
patch 8.1.0859: "%v" in 'errorformat' does handle multi-byte characters
Bram Moolenaar <Bram@vim.org>
parents:
15424
diff
changeset
|
4931 call assert_equal([14, 20], [col('.'), virtcol('.')]) |
b8a2362073bb
patch 8.1.0859: "%v" in 'errorformat' does handle multi-byte characters
Bram Moolenaar <Bram@vim.org>
parents:
15424
diff
changeset
|
4932 |
b8a2362073bb
patch 8.1.0859: "%v" in 'errorformat' does handle multi-byte characters
Bram Moolenaar <Bram@vim.org>
parents:
15424
diff
changeset
|
4933 enew |
b8a2362073bb
patch 8.1.0859: "%v" in 'errorformat' does handle multi-byte characters
Bram Moolenaar <Bram@vim.org>
parents:
15424
diff
changeset
|
4934 call writefile(["Col1\täü\töß\tCol4"], 'Xfile1') |
b8a2362073bb
patch 8.1.0859: "%v" in 'errorformat' does handle multi-byte characters
Bram Moolenaar <Bram@vim.org>
parents:
15424
diff
changeset
|
4935 |
b8a2362073bb
patch 8.1.0859: "%v" in 'errorformat' does handle multi-byte characters
Bram Moolenaar <Bram@vim.org>
parents:
15424
diff
changeset
|
4936 " Use byte offset for column number |
b8a2362073bb
patch 8.1.0859: "%v" in 'errorformat' does handle multi-byte characters
Bram Moolenaar <Bram@vim.org>
parents:
15424
diff
changeset
|
4937 set efm& |
b8a2362073bb
patch 8.1.0859: "%v" in 'errorformat' does handle multi-byte characters
Bram Moolenaar <Bram@vim.org>
parents:
15424
diff
changeset
|
4938 cexpr "Xfile1:1:8:XX\nXfile1:1:11:YY\nXfile1:1:16:ZZ" |
b8a2362073bb
patch 8.1.0859: "%v" in 'errorformat' does handle multi-byte characters
Bram Moolenaar <Bram@vim.org>
parents:
15424
diff
changeset
|
4939 call assert_equal([8, 10], [col('.'), virtcol('.')]) |
b8a2362073bb
patch 8.1.0859: "%v" in 'errorformat' does handle multi-byte characters
Bram Moolenaar <Bram@vim.org>
parents:
15424
diff
changeset
|
4940 cnext |
b8a2362073bb
patch 8.1.0859: "%v" in 'errorformat' does handle multi-byte characters
Bram Moolenaar <Bram@vim.org>
parents:
15424
diff
changeset
|
4941 call assert_equal([11, 17], [col('.'), virtcol('.')]) |
b8a2362073bb
patch 8.1.0859: "%v" in 'errorformat' does handle multi-byte characters
Bram Moolenaar <Bram@vim.org>
parents:
15424
diff
changeset
|
4942 cnext |
b8a2362073bb
patch 8.1.0859: "%v" in 'errorformat' does handle multi-byte characters
Bram Moolenaar <Bram@vim.org>
parents:
15424
diff
changeset
|
4943 call assert_equal([16, 25], [col('.'), virtcol('.')]) |
b8a2362073bb
patch 8.1.0859: "%v" in 'errorformat' does handle multi-byte characters
Bram Moolenaar <Bram@vim.org>
parents:
15424
diff
changeset
|
4944 |
b8a2362073bb
patch 8.1.0859: "%v" in 'errorformat' does handle multi-byte characters
Bram Moolenaar <Bram@vim.org>
parents:
15424
diff
changeset
|
4945 " Use screen column offset for column number |
b8a2362073bb
patch 8.1.0859: "%v" in 'errorformat' does handle multi-byte characters
Bram Moolenaar <Bram@vim.org>
parents:
15424
diff
changeset
|
4946 set efm=%f:%l:%v:%m |
b8a2362073bb
patch 8.1.0859: "%v" in 'errorformat' does handle multi-byte characters
Bram Moolenaar <Bram@vim.org>
parents:
15424
diff
changeset
|
4947 cexpr "Xfile1:1:10:XX\nXfile1:1:17:YY\nXfile1:1:25:ZZ" |
b8a2362073bb
patch 8.1.0859: "%v" in 'errorformat' does handle multi-byte characters
Bram Moolenaar <Bram@vim.org>
parents:
15424
diff
changeset
|
4948 call assert_equal([8, 10], [col('.'), virtcol('.')]) |
b8a2362073bb
patch 8.1.0859: "%v" in 'errorformat' does handle multi-byte characters
Bram Moolenaar <Bram@vim.org>
parents:
15424
diff
changeset
|
4949 cnext |
b8a2362073bb
patch 8.1.0859: "%v" in 'errorformat' does handle multi-byte characters
Bram Moolenaar <Bram@vim.org>
parents:
15424
diff
changeset
|
4950 call assert_equal([11, 17], [col('.'), virtcol('.')]) |
b8a2362073bb
patch 8.1.0859: "%v" in 'errorformat' does handle multi-byte characters
Bram Moolenaar <Bram@vim.org>
parents:
15424
diff
changeset
|
4951 cnext |
b8a2362073bb
patch 8.1.0859: "%v" in 'errorformat' does handle multi-byte characters
Bram Moolenaar <Bram@vim.org>
parents:
15424
diff
changeset
|
4952 call assert_equal([16, 25], [col('.'), virtcol('.')]) |
b8a2362073bb
patch 8.1.0859: "%v" in 'errorformat' does handle multi-byte characters
Bram Moolenaar <Bram@vim.org>
parents:
15424
diff
changeset
|
4953 |
22645
13904ca59f96
patch 8.2.1871: using %v in 'errorformat' may fail before %Z
Bram Moolenaar <Bram@vim.org>
parents:
22454
diff
changeset
|
4954 " Use screen column number with a multi-line error message |
13904ca59f96
patch 8.2.1871: using %v in 'errorformat' may fail before %Z
Bram Moolenaar <Bram@vim.org>
parents:
22454
diff
changeset
|
4955 enew |
13904ca59f96
patch 8.2.1871: using %v in 'errorformat' may fail before %Z
Bram Moolenaar <Bram@vim.org>
parents:
22454
diff
changeset
|
4956 call writefile(["Ã test"], 'Xfile1') |
13904ca59f96
patch 8.2.1871: using %v in 'errorformat' may fail before %Z
Bram Moolenaar <Bram@vim.org>
parents:
22454
diff
changeset
|
4957 set efm=%E===\ %f\ ===,%C%l:%v,%Z%m |
13904ca59f96
patch 8.2.1871: using %v in 'errorformat' may fail before %Z
Bram Moolenaar <Bram@vim.org>
parents:
22454
diff
changeset
|
4958 cexpr ["=== Xfile1 ===", "1:3", "errormsg"] |
13904ca59f96
patch 8.2.1871: using %v in 'errorformat' may fail before %Z
Bram Moolenaar <Bram@vim.org>
parents:
22454
diff
changeset
|
4959 call assert_equal('Xfile1', @%) |
13904ca59f96
patch 8.2.1871: using %v in 'errorformat' may fail before %Z
Bram Moolenaar <Bram@vim.org>
parents:
22454
diff
changeset
|
4960 call assert_equal([0, 1, 4, 0], getpos('.')) |
13904ca59f96
patch 8.2.1871: using %v in 'errorformat' may fail before %Z
Bram Moolenaar <Bram@vim.org>
parents:
22454
diff
changeset
|
4961 |
13904ca59f96
patch 8.2.1871: using %v in 'errorformat' may fail before %Z
Bram Moolenaar <Bram@vim.org>
parents:
22454
diff
changeset
|
4962 " Repeat previous test with byte offset %c: ensure that fix to issue #7145 |
13904ca59f96
patch 8.2.1871: using %v in 'errorformat' may fail before %Z
Bram Moolenaar <Bram@vim.org>
parents:
22454
diff
changeset
|
4963 " does not break this |
13904ca59f96
patch 8.2.1871: using %v in 'errorformat' may fail before %Z
Bram Moolenaar <Bram@vim.org>
parents:
22454
diff
changeset
|
4964 set efm=%E===\ %f\ ===,%C%l:%c,%Z%m |
13904ca59f96
patch 8.2.1871: using %v in 'errorformat' may fail before %Z
Bram Moolenaar <Bram@vim.org>
parents:
22454
diff
changeset
|
4965 cexpr ["=== Xfile1 ===", "1:3", "errormsg"] |
13904ca59f96
patch 8.2.1871: using %v in 'errorformat' may fail before %Z
Bram Moolenaar <Bram@vim.org>
parents:
22454
diff
changeset
|
4966 call assert_equal('Xfile1', @%) |
13904ca59f96
patch 8.2.1871: using %v in 'errorformat' may fail before %Z
Bram Moolenaar <Bram@vim.org>
parents:
22454
diff
changeset
|
4967 call assert_equal([0, 1, 3, 0], getpos('.')) |
13904ca59f96
patch 8.2.1871: using %v in 'errorformat' may fail before %Z
Bram Moolenaar <Bram@vim.org>
parents:
22454
diff
changeset
|
4968 |
15703
b8a2362073bb
patch 8.1.0859: "%v" in 'errorformat' does handle multi-byte characters
Bram Moolenaar <Bram@vim.org>
parents:
15424
diff
changeset
|
4969 enew | only |
b8a2362073bb
patch 8.1.0859: "%v" in 'errorformat' does handle multi-byte characters
Bram Moolenaar <Bram@vim.org>
parents:
15424
diff
changeset
|
4970 set efm& |
b8a2362073bb
patch 8.1.0859: "%v" in 'errorformat' does handle multi-byte characters
Bram Moolenaar <Bram@vim.org>
parents:
15424
diff
changeset
|
4971 call delete('Xfile1') |
b8a2362073bb
patch 8.1.0859: "%v" in 'errorformat' does handle multi-byte characters
Bram Moolenaar <Bram@vim.org>
parents:
15424
diff
changeset
|
4972 endfunc |
15740
2fe4a503c5ad
patch 8.1.0877: new buffer used every time the quickfix window is opened
Bram Moolenaar <Bram@vim.org>
parents:
15703
diff
changeset
|
4973 |
2fe4a503c5ad
patch 8.1.0877: new buffer used every time the quickfix window is opened
Bram Moolenaar <Bram@vim.org>
parents:
15703
diff
changeset
|
4974 " Test for the quickfix window buffer |
2fe4a503c5ad
patch 8.1.0877: new buffer used every time the quickfix window is opened
Bram Moolenaar <Bram@vim.org>
parents:
15703
diff
changeset
|
4975 func Xqfbuf_test(cchar) |
2fe4a503c5ad
patch 8.1.0877: new buffer used every time the quickfix window is opened
Bram Moolenaar <Bram@vim.org>
parents:
15703
diff
changeset
|
4976 call s:setup_commands(a:cchar) |
2fe4a503c5ad
patch 8.1.0877: new buffer used every time the quickfix window is opened
Bram Moolenaar <Bram@vim.org>
parents:
15703
diff
changeset
|
4977 |
2fe4a503c5ad
patch 8.1.0877: new buffer used every time the quickfix window is opened
Bram Moolenaar <Bram@vim.org>
parents:
15703
diff
changeset
|
4978 " Quickfix buffer should be reused across closing and opening a quickfix |
2fe4a503c5ad
patch 8.1.0877: new buffer used every time the quickfix window is opened
Bram Moolenaar <Bram@vim.org>
parents:
15703
diff
changeset
|
4979 " window |
2fe4a503c5ad
patch 8.1.0877: new buffer used every time the quickfix window is opened
Bram Moolenaar <Bram@vim.org>
parents:
15703
diff
changeset
|
4980 Xexpr "F1:10:Line10" |
2fe4a503c5ad
patch 8.1.0877: new buffer used every time the quickfix window is opened
Bram Moolenaar <Bram@vim.org>
parents:
15703
diff
changeset
|
4981 Xopen |
2fe4a503c5ad
patch 8.1.0877: new buffer used every time the quickfix window is opened
Bram Moolenaar <Bram@vim.org>
parents:
15703
diff
changeset
|
4982 let qfbnum = bufnr('') |
2fe4a503c5ad
patch 8.1.0877: new buffer used every time the quickfix window is opened
Bram Moolenaar <Bram@vim.org>
parents:
15703
diff
changeset
|
4983 Xclose |
2fe4a503c5ad
patch 8.1.0877: new buffer used every time the quickfix window is opened
Bram Moolenaar <Bram@vim.org>
parents:
15703
diff
changeset
|
4984 " Even after the quickfix window is closed, the buffer should be loaded |
2fe4a503c5ad
patch 8.1.0877: new buffer used every time the quickfix window is opened
Bram Moolenaar <Bram@vim.org>
parents:
15703
diff
changeset
|
4985 call assert_true(bufloaded(qfbnum)) |
16019
096b8ccd855e
patch 8.1.1015: quickfix buffer shows up in list, can't get buffer number
Bram Moolenaar <Bram@vim.org>
parents:
15965
diff
changeset
|
4986 call assert_true(qfbnum, g:Xgetlist({'qfbufnr' : 0}).qfbufnr) |
15740
2fe4a503c5ad
patch 8.1.0877: new buffer used every time the quickfix window is opened
Bram Moolenaar <Bram@vim.org>
parents:
15703
diff
changeset
|
4987 Xopen |
2fe4a503c5ad
patch 8.1.0877: new buffer used every time the quickfix window is opened
Bram Moolenaar <Bram@vim.org>
parents:
15703
diff
changeset
|
4988 " Buffer should be reused when opening the window again |
2fe4a503c5ad
patch 8.1.0877: new buffer used every time the quickfix window is opened
Bram Moolenaar <Bram@vim.org>
parents:
15703
diff
changeset
|
4989 call assert_equal(qfbnum, bufnr('')) |
2fe4a503c5ad
patch 8.1.0877: new buffer used every time the quickfix window is opened
Bram Moolenaar <Bram@vim.org>
parents:
15703
diff
changeset
|
4990 Xclose |
2fe4a503c5ad
patch 8.1.0877: new buffer used every time the quickfix window is opened
Bram Moolenaar <Bram@vim.org>
parents:
15703
diff
changeset
|
4991 |
26464
c0cb28384dc2
patch 8.2.3762: if quickfix buffer is wiped out getqflist() still returns it
Bram Moolenaar <Bram@vim.org>
parents:
26458
diff
changeset
|
4992 " When quickfix buffer is wiped out, getqflist() should return 0 |
c0cb28384dc2
patch 8.2.3762: if quickfix buffer is wiped out getqflist() still returns it
Bram Moolenaar <Bram@vim.org>
parents:
26458
diff
changeset
|
4993 %bw! |
c0cb28384dc2
patch 8.2.3762: if quickfix buffer is wiped out getqflist() still returns it
Bram Moolenaar <Bram@vim.org>
parents:
26458
diff
changeset
|
4994 Xexpr "" |
c0cb28384dc2
patch 8.2.3762: if quickfix buffer is wiped out getqflist() still returns it
Bram Moolenaar <Bram@vim.org>
parents:
26458
diff
changeset
|
4995 Xopen |
c0cb28384dc2
patch 8.2.3762: if quickfix buffer is wiped out getqflist() still returns it
Bram Moolenaar <Bram@vim.org>
parents:
26458
diff
changeset
|
4996 bw! |
c0cb28384dc2
patch 8.2.3762: if quickfix buffer is wiped out getqflist() still returns it
Bram Moolenaar <Bram@vim.org>
parents:
26458
diff
changeset
|
4997 call assert_equal(0, g:Xgetlist({'qfbufnr': 0}).qfbufnr) |
c0cb28384dc2
patch 8.2.3762: if quickfix buffer is wiped out getqflist() still returns it
Bram Moolenaar <Bram@vim.org>
parents:
26458
diff
changeset
|
4998 |
15740
2fe4a503c5ad
patch 8.1.0877: new buffer used every time the quickfix window is opened
Bram Moolenaar <Bram@vim.org>
parents:
15703
diff
changeset
|
4999 if a:cchar == 'l' |
2fe4a503c5ad
patch 8.1.0877: new buffer used every time the quickfix window is opened
Bram Moolenaar <Bram@vim.org>
parents:
15703
diff
changeset
|
5000 %bwipe |
2fe4a503c5ad
patch 8.1.0877: new buffer used every time the quickfix window is opened
Bram Moolenaar <Bram@vim.org>
parents:
15703
diff
changeset
|
5001 " For a location list, when both the file window and the location list |
2fe4a503c5ad
patch 8.1.0877: new buffer used every time the quickfix window is opened
Bram Moolenaar <Bram@vim.org>
parents:
15703
diff
changeset
|
5002 " window for the list are closed, then the buffer should be freed. |
2fe4a503c5ad
patch 8.1.0877: new buffer used every time the quickfix window is opened
Bram Moolenaar <Bram@vim.org>
parents:
15703
diff
changeset
|
5003 new | only |
2fe4a503c5ad
patch 8.1.0877: new buffer used every time the quickfix window is opened
Bram Moolenaar <Bram@vim.org>
parents:
15703
diff
changeset
|
5004 lexpr "F1:10:Line10" |
2fe4a503c5ad
patch 8.1.0877: new buffer used every time the quickfix window is opened
Bram Moolenaar <Bram@vim.org>
parents:
15703
diff
changeset
|
5005 let wid = win_getid() |
2fe4a503c5ad
patch 8.1.0877: new buffer used every time the quickfix window is opened
Bram Moolenaar <Bram@vim.org>
parents:
15703
diff
changeset
|
5006 lopen |
2fe4a503c5ad
patch 8.1.0877: new buffer used every time the quickfix window is opened
Bram Moolenaar <Bram@vim.org>
parents:
15703
diff
changeset
|
5007 let qfbnum = bufnr('') |
2fe4a503c5ad
patch 8.1.0877: new buffer used every time the quickfix window is opened
Bram Moolenaar <Bram@vim.org>
parents:
15703
diff
changeset
|
5008 call assert_match(qfbnum . ' %a- "\[Location List]"', execute('ls')) |
2fe4a503c5ad
patch 8.1.0877: new buffer used every time the quickfix window is opened
Bram Moolenaar <Bram@vim.org>
parents:
15703
diff
changeset
|
5009 close |
2fe4a503c5ad
patch 8.1.0877: new buffer used every time the quickfix window is opened
Bram Moolenaar <Bram@vim.org>
parents:
15703
diff
changeset
|
5010 " When the location list window is closed, the buffer name should not |
2fe4a503c5ad
patch 8.1.0877: new buffer used every time the quickfix window is opened
Bram Moolenaar <Bram@vim.org>
parents:
15703
diff
changeset
|
5011 " change to 'Quickfix List' |
16019
096b8ccd855e
patch 8.1.1015: quickfix buffer shows up in list, can't get buffer number
Bram Moolenaar <Bram@vim.org>
parents:
15965
diff
changeset
|
5012 call assert_match(qfbnum . 'u h- "\[Location List]"', execute('ls!')) |
15740
2fe4a503c5ad
patch 8.1.0877: new buffer used every time the quickfix window is opened
Bram Moolenaar <Bram@vim.org>
parents:
15703
diff
changeset
|
5013 call assert_true(bufloaded(qfbnum)) |
2fe4a503c5ad
patch 8.1.0877: new buffer used every time the quickfix window is opened
Bram Moolenaar <Bram@vim.org>
parents:
15703
diff
changeset
|
5014 |
15965
f376cd250b07
patch 8.1.0988: deleting location list buffer breaks location list window
Bram Moolenaar <Bram@vim.org>
parents:
15770
diff
changeset
|
5015 " After deleting a location list buffer using ":bdelete", opening the |
f376cd250b07
patch 8.1.0988: deleting location list buffer breaks location list window
Bram Moolenaar <Bram@vim.org>
parents:
15770
diff
changeset
|
5016 " location list window should mark the buffer as a location list buffer. |
f376cd250b07
patch 8.1.0988: deleting location list buffer breaks location list window
Bram Moolenaar <Bram@vim.org>
parents:
15770
diff
changeset
|
5017 exe "bdelete " . qfbnum |
f376cd250b07
patch 8.1.0988: deleting location list buffer breaks location list window
Bram Moolenaar <Bram@vim.org>
parents:
15770
diff
changeset
|
5018 lopen |
f376cd250b07
patch 8.1.0988: deleting location list buffer breaks location list window
Bram Moolenaar <Bram@vim.org>
parents:
15770
diff
changeset
|
5019 call assert_equal("quickfix", &buftype) |
f376cd250b07
patch 8.1.0988: deleting location list buffer breaks location list window
Bram Moolenaar <Bram@vim.org>
parents:
15770
diff
changeset
|
5020 call assert_equal(1, getwininfo(win_getid(winnr()))[0].loclist) |
f376cd250b07
patch 8.1.0988: deleting location list buffer breaks location list window
Bram Moolenaar <Bram@vim.org>
parents:
15770
diff
changeset
|
5021 call assert_equal(wid, getloclist(0, {'filewinid' : 0}).filewinid) |
f376cd250b07
patch 8.1.0988: deleting location list buffer breaks location list window
Bram Moolenaar <Bram@vim.org>
parents:
15770
diff
changeset
|
5022 call assert_false(&swapfile) |
f376cd250b07
patch 8.1.0988: deleting location list buffer breaks location list window
Bram Moolenaar <Bram@vim.org>
parents:
15770
diff
changeset
|
5023 lclose |
f376cd250b07
patch 8.1.0988: deleting location list buffer breaks location list window
Bram Moolenaar <Bram@vim.org>
parents:
15770
diff
changeset
|
5024 |
15770
77e97f159554
patch 8.1.0892: failure when closing a window when location list is in use
Bram Moolenaar <Bram@vim.org>
parents:
15740
diff
changeset
|
5025 " When the location list is cleared for the window, the buffer should be |
77e97f159554
patch 8.1.0892: failure when closing a window when location list is in use
Bram Moolenaar <Bram@vim.org>
parents:
15740
diff
changeset
|
5026 " removed |
77e97f159554
patch 8.1.0892: failure when closing a window when location list is in use
Bram Moolenaar <Bram@vim.org>
parents:
15740
diff
changeset
|
5027 call setloclist(0, [], 'f') |
77e97f159554
patch 8.1.0892: failure when closing a window when location list is in use
Bram Moolenaar <Bram@vim.org>
parents:
15740
diff
changeset
|
5028 call assert_false(bufexists(qfbnum)) |
16019
096b8ccd855e
patch 8.1.1015: quickfix buffer shows up in list, can't get buffer number
Bram Moolenaar <Bram@vim.org>
parents:
15965
diff
changeset
|
5029 call assert_equal(0, getloclist(0, {'qfbufnr' : 0}).qfbufnr) |
15770
77e97f159554
patch 8.1.0892: failure when closing a window when location list is in use
Bram Moolenaar <Bram@vim.org>
parents:
15740
diff
changeset
|
5030 |
77e97f159554
patch 8.1.0892: failure when closing a window when location list is in use
Bram Moolenaar <Bram@vim.org>
parents:
15740
diff
changeset
|
5031 " When the location list is freed with the location list window open, the |
77e97f159554
patch 8.1.0892: failure when closing a window when location list is in use
Bram Moolenaar <Bram@vim.org>
parents:
15740
diff
changeset
|
5032 " location list buffer should not be lost. It should be reused when the |
77e97f159554
patch 8.1.0892: failure when closing a window when location list is in use
Bram Moolenaar <Bram@vim.org>
parents:
15740
diff
changeset
|
5033 " location list is again populated. |
77e97f159554
patch 8.1.0892: failure when closing a window when location list is in use
Bram Moolenaar <Bram@vim.org>
parents:
15740
diff
changeset
|
5034 lexpr "F1:10:Line10" |
77e97f159554
patch 8.1.0892: failure when closing a window when location list is in use
Bram Moolenaar <Bram@vim.org>
parents:
15740
diff
changeset
|
5035 lopen |
77e97f159554
patch 8.1.0892: failure when closing a window when location list is in use
Bram Moolenaar <Bram@vim.org>
parents:
15740
diff
changeset
|
5036 let wid = win_getid() |
77e97f159554
patch 8.1.0892: failure when closing a window when location list is in use
Bram Moolenaar <Bram@vim.org>
parents:
15740
diff
changeset
|
5037 let qfbnum = bufnr('') |
77e97f159554
patch 8.1.0892: failure when closing a window when location list is in use
Bram Moolenaar <Bram@vim.org>
parents:
15740
diff
changeset
|
5038 wincmd p |
77e97f159554
patch 8.1.0892: failure when closing a window when location list is in use
Bram Moolenaar <Bram@vim.org>
parents:
15740
diff
changeset
|
5039 call setloclist(0, [], 'f') |
77e97f159554
patch 8.1.0892: failure when closing a window when location list is in use
Bram Moolenaar <Bram@vim.org>
parents:
15740
diff
changeset
|
5040 lexpr "F1:10:Line10" |
77e97f159554
patch 8.1.0892: failure when closing a window when location list is in use
Bram Moolenaar <Bram@vim.org>
parents:
15740
diff
changeset
|
5041 lopen |
77e97f159554
patch 8.1.0892: failure when closing a window when location list is in use
Bram Moolenaar <Bram@vim.org>
parents:
15740
diff
changeset
|
5042 call assert_equal(wid, win_getid()) |
77e97f159554
patch 8.1.0892: failure when closing a window when location list is in use
Bram Moolenaar <Bram@vim.org>
parents:
15740
diff
changeset
|
5043 call assert_equal(qfbnum, bufnr('')) |
77e97f159554
patch 8.1.0892: failure when closing a window when location list is in use
Bram Moolenaar <Bram@vim.org>
parents:
15740
diff
changeset
|
5044 lclose |
77e97f159554
patch 8.1.0892: failure when closing a window when location list is in use
Bram Moolenaar <Bram@vim.org>
parents:
15740
diff
changeset
|
5045 |
77e97f159554
patch 8.1.0892: failure when closing a window when location list is in use
Bram Moolenaar <Bram@vim.org>
parents:
15740
diff
changeset
|
5046 " When the window with the location list is closed, the buffer should be |
77e97f159554
patch 8.1.0892: failure when closing a window when location list is in use
Bram Moolenaar <Bram@vim.org>
parents:
15740
diff
changeset
|
5047 " removed |
15740
2fe4a503c5ad
patch 8.1.0877: new buffer used every time the quickfix window is opened
Bram Moolenaar <Bram@vim.org>
parents:
15703
diff
changeset
|
5048 new | only |
15770
77e97f159554
patch 8.1.0892: failure when closing a window when location list is in use
Bram Moolenaar <Bram@vim.org>
parents:
15740
diff
changeset
|
5049 call assert_false(bufexists(qfbnum)) |
15740
2fe4a503c5ad
patch 8.1.0877: new buffer used every time the quickfix window is opened
Bram Moolenaar <Bram@vim.org>
parents:
15703
diff
changeset
|
5050 endif |
2fe4a503c5ad
patch 8.1.0877: new buffer used every time the quickfix window is opened
Bram Moolenaar <Bram@vim.org>
parents:
15703
diff
changeset
|
5051 endfunc |
2fe4a503c5ad
patch 8.1.0877: new buffer used every time the quickfix window is opened
Bram Moolenaar <Bram@vim.org>
parents:
15703
diff
changeset
|
5052 |
2fe4a503c5ad
patch 8.1.0877: new buffer used every time the quickfix window is opened
Bram Moolenaar <Bram@vim.org>
parents:
15703
diff
changeset
|
5053 func Test_qfbuf() |
2fe4a503c5ad
patch 8.1.0877: new buffer used every time the quickfix window is opened
Bram Moolenaar <Bram@vim.org>
parents:
15703
diff
changeset
|
5054 call Xqfbuf_test('c') |
2fe4a503c5ad
patch 8.1.0877: new buffer used every time the quickfix window is opened
Bram Moolenaar <Bram@vim.org>
parents:
15703
diff
changeset
|
5055 call Xqfbuf_test('l') |
2fe4a503c5ad
patch 8.1.0877: new buffer used every time the quickfix window is opened
Bram Moolenaar <Bram@vim.org>
parents:
15703
diff
changeset
|
5056 endfunc |
15770
77e97f159554
patch 8.1.0892: failure when closing a window when location list is in use
Bram Moolenaar <Bram@vim.org>
parents:
15740
diff
changeset
|
5057 |
77e97f159554
patch 8.1.0892: failure when closing a window when location list is in use
Bram Moolenaar <Bram@vim.org>
parents:
15740
diff
changeset
|
5058 " If there is an autocmd to use only one window, then opening the location |
77e97f159554
patch 8.1.0892: failure when closing a window when location list is in use
Bram Moolenaar <Bram@vim.org>
parents:
15740
diff
changeset
|
5059 " list window used to crash Vim. |
77e97f159554
patch 8.1.0892: failure when closing a window when location list is in use
Bram Moolenaar <Bram@vim.org>
parents:
15740
diff
changeset
|
5060 func Test_winonly_autocmd() |
77e97f159554
patch 8.1.0892: failure when closing a window when location list is in use
Bram Moolenaar <Bram@vim.org>
parents:
15740
diff
changeset
|
5061 call s:create_test_file('Xtest1') |
77e97f159554
patch 8.1.0892: failure when closing a window when location list is in use
Bram Moolenaar <Bram@vim.org>
parents:
15740
diff
changeset
|
5062 " Autocmd to show only one Vim window at a time |
77e97f159554
patch 8.1.0892: failure when closing a window when location list is in use
Bram Moolenaar <Bram@vim.org>
parents:
15740
diff
changeset
|
5063 autocmd WinEnter * only |
77e97f159554
patch 8.1.0892: failure when closing a window when location list is in use
Bram Moolenaar <Bram@vim.org>
parents:
15740
diff
changeset
|
5064 new |
77e97f159554
patch 8.1.0892: failure when closing a window when location list is in use
Bram Moolenaar <Bram@vim.org>
parents:
15740
diff
changeset
|
5065 " Load the location list |
77e97f159554
patch 8.1.0892: failure when closing a window when location list is in use
Bram Moolenaar <Bram@vim.org>
parents:
15740
diff
changeset
|
5066 lexpr "Xtest1:5:Line5\nXtest1:10:Line10\nXtest1:15:Line15" |
77e97f159554
patch 8.1.0892: failure when closing a window when location list is in use
Bram Moolenaar <Bram@vim.org>
parents:
15740
diff
changeset
|
5067 let loclistid = getloclist(0, {'id' : 0}).id |
77e97f159554
patch 8.1.0892: failure when closing a window when location list is in use
Bram Moolenaar <Bram@vim.org>
parents:
15740
diff
changeset
|
5068 " Open the location list window. Only this window will be shown and the file |
77e97f159554
patch 8.1.0892: failure when closing a window when location list is in use
Bram Moolenaar <Bram@vim.org>
parents:
15740
diff
changeset
|
5069 " window is closed. |
77e97f159554
patch 8.1.0892: failure when closing a window when location list is in use
Bram Moolenaar <Bram@vim.org>
parents:
15740
diff
changeset
|
5070 lopen |
77e97f159554
patch 8.1.0892: failure when closing a window when location list is in use
Bram Moolenaar <Bram@vim.org>
parents:
15740
diff
changeset
|
5071 call assert_equal(loclistid, getloclist(0, {'id' : 0}).id) |
77e97f159554
patch 8.1.0892: failure when closing a window when location list is in use
Bram Moolenaar <Bram@vim.org>
parents:
15740
diff
changeset
|
5072 " Jump to an entry in the location list and make sure that the cursor is |
77e97f159554
patch 8.1.0892: failure when closing a window when location list is in use
Bram Moolenaar <Bram@vim.org>
parents:
15740
diff
changeset
|
5073 " positioned correctly. |
77e97f159554
patch 8.1.0892: failure when closing a window when location list is in use
Bram Moolenaar <Bram@vim.org>
parents:
15740
diff
changeset
|
5074 ll 3 |
77e97f159554
patch 8.1.0892: failure when closing a window when location list is in use
Bram Moolenaar <Bram@vim.org>
parents:
15740
diff
changeset
|
5075 call assert_equal(loclistid, getloclist(0, {'id' : 0}).id) |
20978
2c3e7a6bd6c6
patch 8.2.1040: not enough testing for movement commands
Bram Moolenaar <Bram@vim.org>
parents:
20814
diff
changeset
|
5076 call assert_equal('Xtest1', @%) |
15770
77e97f159554
patch 8.1.0892: failure when closing a window when location list is in use
Bram Moolenaar <Bram@vim.org>
parents:
15740
diff
changeset
|
5077 call assert_equal(15, line('.')) |
77e97f159554
patch 8.1.0892: failure when closing a window when location list is in use
Bram Moolenaar <Bram@vim.org>
parents:
15740
diff
changeset
|
5078 " Cleanup |
77e97f159554
patch 8.1.0892: failure when closing a window when location list is in use
Bram Moolenaar <Bram@vim.org>
parents:
15740
diff
changeset
|
5079 autocmd! WinEnter |
77e97f159554
patch 8.1.0892: failure when closing a window when location list is in use
Bram Moolenaar <Bram@vim.org>
parents:
15740
diff
changeset
|
5080 new | only |
77e97f159554
patch 8.1.0892: failure when closing a window when location list is in use
Bram Moolenaar <Bram@vim.org>
parents:
15740
diff
changeset
|
5081 call delete('Xtest1') |
77e97f159554
patch 8.1.0892: failure when closing a window when location list is in use
Bram Moolenaar <Bram@vim.org>
parents:
15740
diff
changeset
|
5082 endfunc |
16259
1f18984498e1
patch 8.1.1134: buffer for quickfix window is reused for another file
Bram Moolenaar <Bram@vim.org>
parents:
16215
diff
changeset
|
5083 |
1f18984498e1
patch 8.1.1134: buffer for quickfix window is reused for another file
Bram Moolenaar <Bram@vim.org>
parents:
16215
diff
changeset
|
5084 " Test to make sure that an empty quickfix buffer is not reused for loading |
1f18984498e1
patch 8.1.1134: buffer for quickfix window is reused for another file
Bram Moolenaar <Bram@vim.org>
parents:
16215
diff
changeset
|
5085 " a normal buffer. |
1f18984498e1
patch 8.1.1134: buffer for quickfix window is reused for another file
Bram Moolenaar <Bram@vim.org>
parents:
16215
diff
changeset
|
5086 func Test_empty_qfbuf() |
1f18984498e1
patch 8.1.1134: buffer for quickfix window is reused for another file
Bram Moolenaar <Bram@vim.org>
parents:
16215
diff
changeset
|
5087 enew | only |
1f18984498e1
patch 8.1.1134: buffer for quickfix window is reused for another file
Bram Moolenaar <Bram@vim.org>
parents:
16215
diff
changeset
|
5088 call writefile(["Test"], 'Xfile1') |
1f18984498e1
patch 8.1.1134: buffer for quickfix window is reused for another file
Bram Moolenaar <Bram@vim.org>
parents:
16215
diff
changeset
|
5089 call setqflist([], 'f') |
1f18984498e1
patch 8.1.1134: buffer for quickfix window is reused for another file
Bram Moolenaar <Bram@vim.org>
parents:
16215
diff
changeset
|
5090 copen | only |
1f18984498e1
patch 8.1.1134: buffer for quickfix window is reused for another file
Bram Moolenaar <Bram@vim.org>
parents:
16215
diff
changeset
|
5091 let qfbuf = bufnr('') |
1f18984498e1
patch 8.1.1134: buffer for quickfix window is reused for another file
Bram Moolenaar <Bram@vim.org>
parents:
16215
diff
changeset
|
5092 edit Xfile1 |
1f18984498e1
patch 8.1.1134: buffer for quickfix window is reused for another file
Bram Moolenaar <Bram@vim.org>
parents:
16215
diff
changeset
|
5093 call assert_notequal(qfbuf, bufnr('')) |
1f18984498e1
patch 8.1.1134: buffer for quickfix window is reused for another file
Bram Moolenaar <Bram@vim.org>
parents:
16215
diff
changeset
|
5094 enew |
1f18984498e1
patch 8.1.1134: buffer for quickfix window is reused for another file
Bram Moolenaar <Bram@vim.org>
parents:
16215
diff
changeset
|
5095 call delete('Xfile1') |
1f18984498e1
patch 8.1.1134: buffer for quickfix window is reused for another file
Bram Moolenaar <Bram@vim.org>
parents:
16215
diff
changeset
|
5096 endfunc |
16505
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5097 |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5098 " Test for the :cbelow, :cabove, :lbelow and :labove commands. |
16543
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
5099 " And for the :cafter, :cbefore, :lafter and :lbefore commands. |
16505
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5100 func Xtest_below(cchar) |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5101 call s:setup_commands(a:cchar) |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5102 |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5103 " No quickfix/location list |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5104 call assert_fails('Xbelow', 'E42:') |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5105 call assert_fails('Xabove', 'E42:') |
16543
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
5106 call assert_fails('Xbefore', 'E42:') |
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
5107 call assert_fails('Xafter', 'E42:') |
16505
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5108 |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5109 " Empty quickfix/location list |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5110 call g:Xsetlist([]) |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5111 call assert_fails('Xbelow', 'E42:') |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5112 call assert_fails('Xabove', 'E42:') |
16543
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
5113 call assert_fails('Xbefore', 'E42:') |
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
5114 call assert_fails('Xafter', 'E42:') |
16505
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5115 |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5116 call s:create_test_file('X1') |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5117 call s:create_test_file('X2') |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5118 call s:create_test_file('X3') |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5119 call s:create_test_file('X4') |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5120 |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5121 " Invalid entries |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5122 edit X1 |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5123 call g:Xsetlist(["E1", "E2"]) |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5124 call assert_fails('Xbelow', 'E42:') |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5125 call assert_fails('Xabove', 'E42:') |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5126 call assert_fails('3Xbelow', 'E42:') |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5127 call assert_fails('4Xabove', 'E42:') |
16543
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
5128 call assert_fails('Xbefore', 'E42:') |
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
5129 call assert_fails('Xafter', 'E42:') |
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
5130 call assert_fails('3Xbefore', 'E42:') |
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
5131 call assert_fails('4Xafter', 'E42:') |
16505
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5132 |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5133 " Test the commands with various arguments |
16543
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
5134 Xexpr ["X1:5:3:L5", "X2:5:2:L5", "X2:10:3:L10", "X2:15:4:L15", "X3:3:5:L3"] |
16505
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5135 edit +7 X2 |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5136 Xabove |
20978
2c3e7a6bd6c6
patch 8.2.1040: not enough testing for movement commands
Bram Moolenaar <Bram@vim.org>
parents:
20814
diff
changeset
|
5137 call assert_equal(['X2', 5], [@%, line('.')]) |
16505
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5138 call assert_fails('Xabove', 'E553:') |
16543
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
5139 normal 7G |
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
5140 Xbefore |
20978
2c3e7a6bd6c6
patch 8.2.1040: not enough testing for movement commands
Bram Moolenaar <Bram@vim.org>
parents:
20814
diff
changeset
|
5141 call assert_equal(['X2', 5, 2], [@%, line('.'), col('.')]) |
16543
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
5142 call assert_fails('Xbefore', 'E553:') |
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
5143 |
16505
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5144 normal 2j |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5145 Xbelow |
20978
2c3e7a6bd6c6
patch 8.2.1040: not enough testing for movement commands
Bram Moolenaar <Bram@vim.org>
parents:
20814
diff
changeset
|
5146 call assert_equal(['X2', 10], [@%, line('.')]) |
16543
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
5147 normal 7G |
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
5148 Xafter |
20978
2c3e7a6bd6c6
patch 8.2.1040: not enough testing for movement commands
Bram Moolenaar <Bram@vim.org>
parents:
20814
diff
changeset
|
5149 call assert_equal(['X2', 10, 3], [@%, line('.'), col('.')]) |
16543
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
5150 |
16505
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5151 " Last error in this file |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5152 Xbelow 99 |
20978
2c3e7a6bd6c6
patch 8.2.1040: not enough testing for movement commands
Bram Moolenaar <Bram@vim.org>
parents:
20814
diff
changeset
|
5153 call assert_equal(['X2', 15], [@%, line('.')]) |
16505
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5154 call assert_fails('Xbelow', 'E553:') |
16543
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
5155 normal gg |
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
5156 Xafter 99 |
20978
2c3e7a6bd6c6
patch 8.2.1040: not enough testing for movement commands
Bram Moolenaar <Bram@vim.org>
parents:
20814
diff
changeset
|
5157 call assert_equal(['X2', 15, 4], [@%, line('.'), col('.')]) |
16543
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
5158 call assert_fails('Xafter', 'E553:') |
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
5159 |
16505
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5160 " First error in this file |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5161 Xabove 99 |
20978
2c3e7a6bd6c6
patch 8.2.1040: not enough testing for movement commands
Bram Moolenaar <Bram@vim.org>
parents:
20814
diff
changeset
|
5162 call assert_equal(['X2', 5], [@%, line('.')]) |
16505
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5163 call assert_fails('Xabove', 'E553:') |
16543
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
5164 normal G |
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
5165 Xbefore 99 |
20978
2c3e7a6bd6c6
patch 8.2.1040: not enough testing for movement commands
Bram Moolenaar <Bram@vim.org>
parents:
20814
diff
changeset
|
5166 call assert_equal(['X2', 5, 2], [@%, line('.'), col('.')]) |
16543
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
5167 call assert_fails('Xbefore', 'E553:') |
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
5168 |
16505
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5169 normal gg |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5170 Xbelow 2 |
20978
2c3e7a6bd6c6
patch 8.2.1040: not enough testing for movement commands
Bram Moolenaar <Bram@vim.org>
parents:
20814
diff
changeset
|
5171 call assert_equal(['X2', 10], [@%, line('.')]) |
16543
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
5172 normal gg |
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
5173 Xafter 2 |
20978
2c3e7a6bd6c6
patch 8.2.1040: not enough testing for movement commands
Bram Moolenaar <Bram@vim.org>
parents:
20814
diff
changeset
|
5174 call assert_equal(['X2', 10, 3], [@%, line('.'), col('.')]) |
16543
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
5175 |
16505
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5176 normal G |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5177 Xabove 2 |
20978
2c3e7a6bd6c6
patch 8.2.1040: not enough testing for movement commands
Bram Moolenaar <Bram@vim.org>
parents:
20814
diff
changeset
|
5178 call assert_equal(['X2', 10], [@%, line('.')]) |
16543
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
5179 normal G |
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
5180 Xbefore 2 |
20978
2c3e7a6bd6c6
patch 8.2.1040: not enough testing for movement commands
Bram Moolenaar <Bram@vim.org>
parents:
20814
diff
changeset
|
5181 call assert_equal(['X2', 10, 3], [@%, line('.'), col('.')]) |
16543
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
5182 |
16505
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5183 edit X4 |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5184 call assert_fails('Xabove', 'E42:') |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5185 call assert_fails('Xbelow', 'E42:') |
16543
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
5186 call assert_fails('Xbefore', 'E42:') |
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
5187 call assert_fails('Xafter', 'E42:') |
16505
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5188 if a:cchar == 'l' |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5189 " If a buffer has location list entries from some other window but not |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5190 " from the current window, then the commands should fail. |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5191 edit X1 | split | call setloclist(0, [], 'f') |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5192 call assert_fails('Xabove', 'E776:') |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5193 call assert_fails('Xbelow', 'E776:') |
16543
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
5194 call assert_fails('Xbefore', 'E776:') |
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
5195 call assert_fails('Xafter', 'E776:') |
16505
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5196 close |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5197 endif |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5198 |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5199 " Test for lines with multiple quickfix entries |
28421
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
5200 let lines =<< trim END |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
5201 X1:5:L5 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
5202 X2:5:1:L5_1 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
5203 X2:5:2:L5_2 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
5204 X2:5:3:L5_3 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
5205 X2:10:1:L10_1 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
5206 X2:10:2:L10_2 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
5207 X2:10:3:L10_3 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
5208 X2:15:1:L15_1 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
5209 X2:15:2:L15_2 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
5210 X2:15:3:L15_3 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
5211 X3:3:L3 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
5212 END |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
5213 Xexpr lines |
16505
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5214 edit +1 X2 |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5215 Xbelow 2 |
20978
2c3e7a6bd6c6
patch 8.2.1040: not enough testing for movement commands
Bram Moolenaar <Bram@vim.org>
parents:
20814
diff
changeset
|
5216 call assert_equal(['X2', 10, 1], [@%, line('.'), col('.')]) |
16543
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
5217 normal 1G |
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
5218 Xafter 2 |
20978
2c3e7a6bd6c6
patch 8.2.1040: not enough testing for movement commands
Bram Moolenaar <Bram@vim.org>
parents:
20814
diff
changeset
|
5219 call assert_equal(['X2', 5, 2], [@%, line('.'), col('.')]) |
16543
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
5220 |
16505
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5221 normal gg |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5222 Xbelow 99 |
20978
2c3e7a6bd6c6
patch 8.2.1040: not enough testing for movement commands
Bram Moolenaar <Bram@vim.org>
parents:
20814
diff
changeset
|
5223 call assert_equal(['X2', 15, 1], [@%, line('.'), col('.')]) |
16543
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
5224 normal gg |
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
5225 Xafter 99 |
20978
2c3e7a6bd6c6
patch 8.2.1040: not enough testing for movement commands
Bram Moolenaar <Bram@vim.org>
parents:
20814
diff
changeset
|
5226 call assert_equal(['X2', 15, 3], [@%, line('.'), col('.')]) |
16543
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
5227 |
16505
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5228 normal G |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5229 Xabove 2 |
20978
2c3e7a6bd6c6
patch 8.2.1040: not enough testing for movement commands
Bram Moolenaar <Bram@vim.org>
parents:
20814
diff
changeset
|
5230 call assert_equal(['X2', 10, 1], [@%, line('.'), col('.')]) |
16505
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5231 normal G |
16543
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
5232 Xbefore 2 |
20978
2c3e7a6bd6c6
patch 8.2.1040: not enough testing for movement commands
Bram Moolenaar <Bram@vim.org>
parents:
20814
diff
changeset
|
5233 call assert_equal(['X2', 15, 2], [@%, line('.'), col('.')]) |
16543
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
5234 |
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
5235 normal G |
16505
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5236 Xabove 99 |
20978
2c3e7a6bd6c6
patch 8.2.1040: not enough testing for movement commands
Bram Moolenaar <Bram@vim.org>
parents:
20814
diff
changeset
|
5237 call assert_equal(['X2', 5, 1], [@%, line('.'), col('.')]) |
16543
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
5238 normal G |
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
5239 Xbefore 99 |
20978
2c3e7a6bd6c6
patch 8.2.1040: not enough testing for movement commands
Bram Moolenaar <Bram@vim.org>
parents:
20814
diff
changeset
|
5240 call assert_equal(['X2', 5, 1], [@%, line('.'), col('.')]) |
16543
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
5241 |
16505
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5242 normal 10G |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5243 Xabove |
20978
2c3e7a6bd6c6
patch 8.2.1040: not enough testing for movement commands
Bram Moolenaar <Bram@vim.org>
parents:
20814
diff
changeset
|
5244 call assert_equal(['X2', 5, 1], [@%, line('.'), col('.')]) |
16543
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
5245 normal 10G$ |
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
5246 2Xbefore |
20978
2c3e7a6bd6c6
patch 8.2.1040: not enough testing for movement commands
Bram Moolenaar <Bram@vim.org>
parents:
20814
diff
changeset
|
5247 call assert_equal(['X2', 10, 2], [@%, line('.'), col('.')]) |
16543
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
5248 |
16505
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5249 normal 10G |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5250 Xbelow |
20978
2c3e7a6bd6c6
patch 8.2.1040: not enough testing for movement commands
Bram Moolenaar <Bram@vim.org>
parents:
20814
diff
changeset
|
5251 call assert_equal(['X2', 15, 1], [@%, line('.'), col('.')]) |
16543
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
5252 normal 9G |
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
5253 5Xafter |
20978
2c3e7a6bd6c6
patch 8.2.1040: not enough testing for movement commands
Bram Moolenaar <Bram@vim.org>
parents:
20814
diff
changeset
|
5254 call assert_equal(['X2', 15, 2], [@%, line('.'), col('.')]) |
16505
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5255 |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5256 " Invalid range |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5257 if a:cchar == 'c' |
16515
6e87a69b8e0c
patch 8.1.1261: no error for quickfix commands with negative range
Bram Moolenaar <Bram@vim.org>
parents:
16505
diff
changeset
|
5258 call assert_fails('-2cbelow', 'E16:') |
16543
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
5259 call assert_fails('-2cafter', 'E16:') |
16505
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5260 else |
16515
6e87a69b8e0c
patch 8.1.1261: no error for quickfix commands with negative range
Bram Moolenaar <Bram@vim.org>
parents:
16505
diff
changeset
|
5261 call assert_fails('-2lbelow', 'E16:') |
16543
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
5262 call assert_fails('-2lafter', 'E16:') |
16505
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5263 endif |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5264 |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5265 call delete('X1') |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5266 call delete('X2') |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5267 call delete('X3') |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5268 call delete('X4') |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5269 endfunc |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5270 |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5271 func Test_cbelow() |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5272 call Xtest_below('c') |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5273 call Xtest_below('l') |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16483
diff
changeset
|
5274 endfunc |
16515
6e87a69b8e0c
patch 8.1.1261: no error for quickfix commands with negative range
Bram Moolenaar <Bram@vim.org>
parents:
16505
diff
changeset
|
5275 |
6e87a69b8e0c
patch 8.1.1261: no error for quickfix commands with negative range
Bram Moolenaar <Bram@vim.org>
parents:
16505
diff
changeset
|
5276 func Test_quickfix_count() |
28421
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
5277 let commands =<< trim END |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
5278 cNext |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
5279 cNfile |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
5280 cabove |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
5281 cbelow |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
5282 cfirst |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
5283 clast |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
5284 cnewer |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
5285 cnext |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
5286 cnfile |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
5287 colder |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
5288 cprevious |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
5289 crewind |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
5290 lNext |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
5291 lNfile |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
5292 labove |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
5293 lbelow |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
5294 lfirst |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
5295 llast |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
5296 lnewer |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
5297 lnext |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
5298 lnfile |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
5299 lolder |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
5300 lprevious |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
5301 lrewind |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
5302 END |
16515
6e87a69b8e0c
patch 8.1.1261: no error for quickfix commands with negative range
Bram Moolenaar <Bram@vim.org>
parents:
16505
diff
changeset
|
5303 for cmd in commands |
6e87a69b8e0c
patch 8.1.1261: no error for quickfix commands with negative range
Bram Moolenaar <Bram@vim.org>
parents:
16505
diff
changeset
|
5304 call assert_fails('-1' .. cmd, 'E16:') |
6e87a69b8e0c
patch 8.1.1261: no error for quickfix commands with negative range
Bram Moolenaar <Bram@vim.org>
parents:
16505
diff
changeset
|
5305 call assert_fails('.' .. cmd, 'E16:') |
6e87a69b8e0c
patch 8.1.1261: no error for quickfix commands with negative range
Bram Moolenaar <Bram@vim.org>
parents:
16505
diff
changeset
|
5306 call assert_fails('%' .. cmd, 'E16:') |
6e87a69b8e0c
patch 8.1.1261: no error for quickfix commands with negative range
Bram Moolenaar <Bram@vim.org>
parents:
16505
diff
changeset
|
5307 call assert_fails('$' .. cmd, 'E16:') |
6e87a69b8e0c
patch 8.1.1261: no error for quickfix commands with negative range
Bram Moolenaar <Bram@vim.org>
parents:
16505
diff
changeset
|
5308 endfor |
6e87a69b8e0c
patch 8.1.1261: no error for quickfix commands with negative range
Bram Moolenaar <Bram@vim.org>
parents:
16505
diff
changeset
|
5309 endfunc |
18452
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5310 |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5311 " Test for aborting quickfix commands using QuickFixCmdPre |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5312 func Xtest_qfcmd_abort(cchar) |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5313 call s:setup_commands(a:cchar) |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5314 |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5315 call g:Xsetlist([], 'f') |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5316 |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5317 " cexpr/lexpr |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5318 let e = '' |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5319 try |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5320 Xexpr ["F1:10:Line10", "F2:20:Line20"] |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5321 catch /.*/ |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5322 let e = v:exception |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5323 endtry |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5324 call assert_equal('AbortCmd', e) |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5325 call assert_equal(0, g:Xgetlist({'nr' : '$'}).nr) |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5326 |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5327 " cfile/lfile |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5328 call writefile(["F1:10:Line10", "F2:20:Line20"], 'Xfile1') |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5329 let e = '' |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5330 try |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5331 Xfile Xfile1 |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5332 catch /.*/ |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5333 let e = v:exception |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5334 endtry |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5335 call assert_equal('AbortCmd', e) |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5336 call assert_equal(0, g:Xgetlist({'nr' : '$'}).nr) |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5337 call delete('Xfile1') |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5338 |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5339 " cgetbuffer/lgetbuffer |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5340 enew! |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5341 call append(0, ["F1:10:Line10", "F2:20:Line20"]) |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5342 let e = '' |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5343 try |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5344 Xgetbuffer |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5345 catch /.*/ |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5346 let e = v:exception |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5347 endtry |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5348 call assert_equal('AbortCmd', e) |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5349 call assert_equal(0, g:Xgetlist({'nr' : '$'}).nr) |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5350 enew! |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5351 |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5352 " vimgrep/lvimgrep |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5353 let e = '' |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5354 try |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5355 Xvimgrep /func/ test_quickfix.vim |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5356 catch /.*/ |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5357 let e = v:exception |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5358 endtry |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5359 call assert_equal('AbortCmd', e) |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5360 call assert_equal(0, g:Xgetlist({'nr' : '$'}).nr) |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5361 |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5362 " helpgrep/lhelpgrep |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5363 let e = '' |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5364 try |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5365 Xhelpgrep quickfix |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5366 catch /.*/ |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5367 let e = v:exception |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5368 endtry |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5369 call assert_equal('AbortCmd', e) |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5370 call assert_equal(0, g:Xgetlist({'nr' : '$'}).nr) |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5371 |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5372 " grep/lgrep |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5373 if has('unix') |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5374 let e = '' |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5375 try |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5376 silent Xgrep func test_quickfix.vim |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5377 catch /.*/ |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5378 let e = v:exception |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5379 endtry |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5380 call assert_equal('AbortCmd', e) |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5381 call assert_equal(0, g:Xgetlist({'nr' : '$'}).nr) |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5382 endif |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5383 endfunc |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5384 |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5385 func Test_qfcmd_abort() |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5386 augroup QF_Test |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5387 au! |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5388 autocmd QuickFixCmdPre * throw "AbortCmd" |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5389 augroup END |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5390 |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5391 call Xtest_qfcmd_abort('c') |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5392 call Xtest_qfcmd_abort('l') |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5393 |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5394 augroup QF_Test |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5395 au! |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5396 augroup END |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5397 endfunc |
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
5398 |
18635
dfa87465287e
patch 8.1.2310: no proper test for directory changes in quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18452
diff
changeset
|
5399 " Test for using a file in one of the parent directories. |
dfa87465287e
patch 8.1.2310: no proper test for directory changes in quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18452
diff
changeset
|
5400 func Test_search_in_dirstack() |
dfa87465287e
patch 8.1.2310: no proper test for directory changes in quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18452
diff
changeset
|
5401 call mkdir('Xtestdir/a/b/c', 'p') |
dfa87465287e
patch 8.1.2310: no proper test for directory changes in quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18452
diff
changeset
|
5402 let save_cwd = getcwd() |
dfa87465287e
patch 8.1.2310: no proper test for directory changes in quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18452
diff
changeset
|
5403 call writefile(["X1_L1", "X1_L2"], 'Xtestdir/Xfile1') |
dfa87465287e
patch 8.1.2310: no proper test for directory changes in quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18452
diff
changeset
|
5404 call writefile(["X2_L1", "X2_L2"], 'Xtestdir/a/Xfile2') |
dfa87465287e
patch 8.1.2310: no proper test for directory changes in quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18452
diff
changeset
|
5405 call writefile(["X3_L1", "X3_L2"], 'Xtestdir/a/b/Xfile3') |
dfa87465287e
patch 8.1.2310: no proper test for directory changes in quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18452
diff
changeset
|
5406 call writefile(["X4_L1", "X4_L2"], 'Xtestdir/a/b/c/Xfile4') |
dfa87465287e
patch 8.1.2310: no proper test for directory changes in quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18452
diff
changeset
|
5407 |
dfa87465287e
patch 8.1.2310: no proper test for directory changes in quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18452
diff
changeset
|
5408 let lines = "Entering dir Xtestdir\n" . |
dfa87465287e
patch 8.1.2310: no proper test for directory changes in quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18452
diff
changeset
|
5409 \ "Entering dir a\n" . |
dfa87465287e
patch 8.1.2310: no proper test for directory changes in quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18452
diff
changeset
|
5410 \ "Entering dir b\n" . |
dfa87465287e
patch 8.1.2310: no proper test for directory changes in quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18452
diff
changeset
|
5411 \ "Xfile2:2:X2_L2\n" . |
dfa87465287e
patch 8.1.2310: no proper test for directory changes in quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18452
diff
changeset
|
5412 \ "Leaving dir a\n" . |
dfa87465287e
patch 8.1.2310: no proper test for directory changes in quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18452
diff
changeset
|
5413 \ "Xfile1:2:X1_L2\n" . |
dfa87465287e
patch 8.1.2310: no proper test for directory changes in quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18452
diff
changeset
|
5414 \ "Xfile3:1:X3_L1\n" . |
dfa87465287e
patch 8.1.2310: no proper test for directory changes in quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18452
diff
changeset
|
5415 \ "Entering dir c\n" . |
dfa87465287e
patch 8.1.2310: no proper test for directory changes in quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18452
diff
changeset
|
5416 \ "Xfile4:2:X4_L2\n" . |
18827
f98368dd6615
patch 8.1.2401: :cexpr does not handle | in expression
Bram Moolenaar <Bram@vim.org>
parents:
18740
diff
changeset
|
5417 \ "Leaving dir c\n" |
18635
dfa87465287e
patch 8.1.2310: no proper test for directory changes in quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18452
diff
changeset
|
5418 set efm=%DEntering\ dir\ %f,%XLeaving\ dir\ %f,%f:%l:%m |
18827
f98368dd6615
patch 8.1.2401: :cexpr does not handle | in expression
Bram Moolenaar <Bram@vim.org>
parents:
18740
diff
changeset
|
5419 cexpr lines .. "Leaving dir Xtestdir|\n" | let next = 1 |
18635
dfa87465287e
patch 8.1.2310: no proper test for directory changes in quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18452
diff
changeset
|
5420 call assert_equal(11, getqflist({'size' : 0}).size) |
dfa87465287e
patch 8.1.2310: no proper test for directory changes in quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18452
diff
changeset
|
5421 call assert_equal(4, getqflist({'idx' : 0}).idx) |
dfa87465287e
patch 8.1.2310: no proper test for directory changes in quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18452
diff
changeset
|
5422 call assert_equal('X2_L2', getline('.')) |
18827
f98368dd6615
patch 8.1.2401: :cexpr does not handle | in expression
Bram Moolenaar <Bram@vim.org>
parents:
18740
diff
changeset
|
5423 call assert_equal(1, next) |
18635
dfa87465287e
patch 8.1.2310: no proper test for directory changes in quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18452
diff
changeset
|
5424 cnext |
dfa87465287e
patch 8.1.2310: no proper test for directory changes in quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18452
diff
changeset
|
5425 call assert_equal(6, getqflist({'idx' : 0}).idx) |
dfa87465287e
patch 8.1.2310: no proper test for directory changes in quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18452
diff
changeset
|
5426 call assert_equal('X1_L2', getline('.')) |
dfa87465287e
patch 8.1.2310: no proper test for directory changes in quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18452
diff
changeset
|
5427 cnext |
dfa87465287e
patch 8.1.2310: no proper test for directory changes in quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18452
diff
changeset
|
5428 call assert_equal(7, getqflist({'idx' : 0}).idx) |
dfa87465287e
patch 8.1.2310: no proper test for directory changes in quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18452
diff
changeset
|
5429 call assert_equal(1, line('$')) |
dfa87465287e
patch 8.1.2310: no proper test for directory changes in quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18452
diff
changeset
|
5430 call assert_equal('', getline(1)) |
dfa87465287e
patch 8.1.2310: no proper test for directory changes in quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18452
diff
changeset
|
5431 cnext |
dfa87465287e
patch 8.1.2310: no proper test for directory changes in quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18452
diff
changeset
|
5432 call assert_equal(9, getqflist({'idx' : 0}).idx) |
dfa87465287e
patch 8.1.2310: no proper test for directory changes in quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18452
diff
changeset
|
5433 call assert_equal(1, line('$')) |
dfa87465287e
patch 8.1.2310: no proper test for directory changes in quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18452
diff
changeset
|
5434 call assert_equal('', getline(1)) |
dfa87465287e
patch 8.1.2310: no proper test for directory changes in quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18452
diff
changeset
|
5435 |
dfa87465287e
patch 8.1.2310: no proper test for directory changes in quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18452
diff
changeset
|
5436 set efm& |
dfa87465287e
patch 8.1.2310: no proper test for directory changes in quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18452
diff
changeset
|
5437 exe 'cd ' . save_cwd |
dfa87465287e
patch 8.1.2310: no proper test for directory changes in quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18452
diff
changeset
|
5438 call delete('Xtestdir', 'rf') |
dfa87465287e
patch 8.1.2310: no proper test for directory changes in quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18452
diff
changeset
|
5439 endfunc |
dfa87465287e
patch 8.1.2310: no proper test for directory changes in quickfix
Bram Moolenaar <Bram@vim.org>
parents:
18452
diff
changeset
|
5440 |
19069
e14feba578f1
patch 8.2.0095: cannot specify exit code for :cquit
Bram Moolenaar <Bram@vim.org>
parents:
18827
diff
changeset
|
5441 " Test for :cquit |
e14feba578f1
patch 8.2.0095: cannot specify exit code for :cquit
Bram Moolenaar <Bram@vim.org>
parents:
18827
diff
changeset
|
5442 func Test_cquit() |
e14feba578f1
patch 8.2.0095: cannot specify exit code for :cquit
Bram Moolenaar <Bram@vim.org>
parents:
18827
diff
changeset
|
5443 " Exit Vim with a non-zero value |
e14feba578f1
patch 8.2.0095: cannot specify exit code for :cquit
Bram Moolenaar <Bram@vim.org>
parents:
18827
diff
changeset
|
5444 if RunVim([], ["cquit 7"], '') |
e14feba578f1
patch 8.2.0095: cannot specify exit code for :cquit
Bram Moolenaar <Bram@vim.org>
parents:
18827
diff
changeset
|
5445 call assert_equal(7, v:shell_error) |
e14feba578f1
patch 8.2.0095: cannot specify exit code for :cquit
Bram Moolenaar <Bram@vim.org>
parents:
18827
diff
changeset
|
5446 endif |
e14feba578f1
patch 8.2.0095: cannot specify exit code for :cquit
Bram Moolenaar <Bram@vim.org>
parents:
18827
diff
changeset
|
5447 |
e14feba578f1
patch 8.2.0095: cannot specify exit code for :cquit
Bram Moolenaar <Bram@vim.org>
parents:
18827
diff
changeset
|
5448 if RunVim([], ["50cquit"], '') |
e14feba578f1
patch 8.2.0095: cannot specify exit code for :cquit
Bram Moolenaar <Bram@vim.org>
parents:
18827
diff
changeset
|
5449 call assert_equal(50, v:shell_error) |
e14feba578f1
patch 8.2.0095: cannot specify exit code for :cquit
Bram Moolenaar <Bram@vim.org>
parents:
18827
diff
changeset
|
5450 endif |
e14feba578f1
patch 8.2.0095: cannot specify exit code for :cquit
Bram Moolenaar <Bram@vim.org>
parents:
18827
diff
changeset
|
5451 |
e14feba578f1
patch 8.2.0095: cannot specify exit code for :cquit
Bram Moolenaar <Bram@vim.org>
parents:
18827
diff
changeset
|
5452 " Exit Vim with default value |
e14feba578f1
patch 8.2.0095: cannot specify exit code for :cquit
Bram Moolenaar <Bram@vim.org>
parents:
18827
diff
changeset
|
5453 if RunVim([], ["cquit"], '') |
e14feba578f1
patch 8.2.0095: cannot specify exit code for :cquit
Bram Moolenaar <Bram@vim.org>
parents:
18827
diff
changeset
|
5454 call assert_equal(1, v:shell_error) |
e14feba578f1
patch 8.2.0095: cannot specify exit code for :cquit
Bram Moolenaar <Bram@vim.org>
parents:
18827
diff
changeset
|
5455 endif |
e14feba578f1
patch 8.2.0095: cannot specify exit code for :cquit
Bram Moolenaar <Bram@vim.org>
parents:
18827
diff
changeset
|
5456 |
e14feba578f1
patch 8.2.0095: cannot specify exit code for :cquit
Bram Moolenaar <Bram@vim.org>
parents:
18827
diff
changeset
|
5457 " Exit Vim with zero value |
e14feba578f1
patch 8.2.0095: cannot specify exit code for :cquit
Bram Moolenaar <Bram@vim.org>
parents:
18827
diff
changeset
|
5458 if RunVim([], ["cquit 0"], '') |
e14feba578f1
patch 8.2.0095: cannot specify exit code for :cquit
Bram Moolenaar <Bram@vim.org>
parents:
18827
diff
changeset
|
5459 call assert_equal(0, v:shell_error) |
e14feba578f1
patch 8.2.0095: cannot specify exit code for :cquit
Bram Moolenaar <Bram@vim.org>
parents:
18827
diff
changeset
|
5460 endif |
e14feba578f1
patch 8.2.0095: cannot specify exit code for :cquit
Bram Moolenaar <Bram@vim.org>
parents:
18827
diff
changeset
|
5461 |
e14feba578f1
patch 8.2.0095: cannot specify exit code for :cquit
Bram Moolenaar <Bram@vim.org>
parents:
18827
diff
changeset
|
5462 " Exit Vim with negative value |
e14feba578f1
patch 8.2.0095: cannot specify exit code for :cquit
Bram Moolenaar <Bram@vim.org>
parents:
18827
diff
changeset
|
5463 call assert_fails('-3cquit', 'E16:') |
e14feba578f1
patch 8.2.0095: cannot specify exit code for :cquit
Bram Moolenaar <Bram@vim.org>
parents:
18827
diff
changeset
|
5464 endfunc |
e14feba578f1
patch 8.2.0095: cannot specify exit code for :cquit
Bram Moolenaar <Bram@vim.org>
parents:
18827
diff
changeset
|
5465 |
20631
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5466 " Test for getting a specific item from a quickfix list |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5467 func Xtest_getqflist_by_idx(cchar) |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5468 call s:setup_commands(a:cchar) |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5469 " Empty list |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5470 call assert_equal([], g:Xgetlist({'idx' : 1, 'items' : 0}).items) |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5471 Xexpr ['F1:10:L10', 'F1:20:L20'] |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5472 let l = g:Xgetlist({'idx' : 2, 'items' : 0}).items |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5473 call assert_equal(bufnr('F1'), l[0].bufnr) |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5474 call assert_equal(20, l[0].lnum) |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5475 call assert_equal('L20', l[0].text) |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5476 call assert_equal([], g:Xgetlist({'idx' : -1, 'items' : 0}).items) |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5477 call assert_equal([], g:Xgetlist({'idx' : 3, 'items' : 0}).items) |
27873
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
5478 call assert_equal({}, g:Xgetlist(#{idx: "abc"})) |
20631
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5479 %bwipe! |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5480 endfunc |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5481 |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5482 func Test_getqflist_by_idx() |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5483 call Xtest_getqflist_by_idx('c') |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5484 call Xtest_getqflist_by_idx('l') |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5485 endfunc |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5486 |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5487 " Test for the 'quickfixtextfunc' setting |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5488 func Tqfexpr(info) |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5489 if a:info.quickfix |
20814
f23c6543a54d
patch 8.2.0959: using 'quickfixtextfunc' is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5490 let qfl = getqflist({'id' : a:info.id, 'items' : 1}).items |
20631
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5491 else |
20814
f23c6543a54d
patch 8.2.0959: using 'quickfixtextfunc' is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5492 let qfl = getloclist(a:info.winid, {'id' : a:info.id, 'items' : 1}).items |
20631
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5493 endif |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5494 |
20814
f23c6543a54d
patch 8.2.0959: using 'quickfixtextfunc' is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5495 let l = [] |
f23c6543a54d
patch 8.2.0959: using 'quickfixtextfunc' is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5496 for idx in range(a:info.start_idx - 1, a:info.end_idx - 1) |
f23c6543a54d
patch 8.2.0959: using 'quickfixtextfunc' is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5497 let e = qfl[idx] |
f23c6543a54d
patch 8.2.0959: using 'quickfixtextfunc' is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5498 let s = '' |
f23c6543a54d
patch 8.2.0959: using 'quickfixtextfunc' is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5499 if e.bufnr != 0 |
f23c6543a54d
patch 8.2.0959: using 'quickfixtextfunc' is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5500 let bname = bufname(e.bufnr) |
f23c6543a54d
patch 8.2.0959: using 'quickfixtextfunc' is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5501 let s ..= fnamemodify(bname, ':.') |
f23c6543a54d
patch 8.2.0959: using 'quickfixtextfunc' is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5502 endif |
f23c6543a54d
patch 8.2.0959: using 'quickfixtextfunc' is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5503 let s ..= '-' |
f23c6543a54d
patch 8.2.0959: using 'quickfixtextfunc' is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5504 let s ..= 'L' .. string(e.lnum) .. 'C' .. string(e.col) .. '-' |
f23c6543a54d
patch 8.2.0959: using 'quickfixtextfunc' is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5505 let s ..= e.text |
f23c6543a54d
patch 8.2.0959: using 'quickfixtextfunc' is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5506 call add(l, s) |
f23c6543a54d
patch 8.2.0959: using 'quickfixtextfunc' is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5507 endfor |
f23c6543a54d
patch 8.2.0959: using 'quickfixtextfunc' is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5508 |
f23c6543a54d
patch 8.2.0959: using 'quickfixtextfunc' is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5509 return l |
20631
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5510 endfunc |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5511 |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5512 func Xtest_qftextfunc(cchar) |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5513 call s:setup_commands(a:cchar) |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5514 |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5515 set efm=%f:%l:%c:%m |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5516 set quickfixtextfunc=Tqfexpr |
21409
2c40e60017a8
patch 8.2.1255: cannot use a lambda with quickfix functions
Bram Moolenaar <Bram@vim.org>
parents:
21265
diff
changeset
|
5517 call assert_equal('Tqfexpr', &quickfixtextfunc) |
2c40e60017a8
patch 8.2.1255: cannot use a lambda with quickfix functions
Bram Moolenaar <Bram@vim.org>
parents:
21265
diff
changeset
|
5518 call assert_equal('', |
2c40e60017a8
patch 8.2.1255: cannot use a lambda with quickfix functions
Bram Moolenaar <Bram@vim.org>
parents:
21265
diff
changeset
|
5519 \ g:Xgetlist({'quickfixtextfunc' : 1}).quickfixtextfunc) |
24964
f4aa891a5ab8
patch 8.2.3019: location list only has the start position.
Bram Moolenaar <Bram@vim.org>
parents:
24962
diff
changeset
|
5520 call g:Xsetlist([ |
f4aa891a5ab8
patch 8.2.3019: location list only has the start position.
Bram Moolenaar <Bram@vim.org>
parents:
24962
diff
changeset
|
5521 \ { 'filename': 'F1', 'lnum': 10, 'col': 2, |
f4aa891a5ab8
patch 8.2.3019: location list only has the start position.
Bram Moolenaar <Bram@vim.org>
parents:
24962
diff
changeset
|
5522 \ 'end_col': 7, 'text': 'green'}, |
f4aa891a5ab8
patch 8.2.3019: location list only has the start position.
Bram Moolenaar <Bram@vim.org>
parents:
24962
diff
changeset
|
5523 \ { 'filename': 'F1', 'lnum': 20, 'end_lnum': 25, 'col': 4, |
f4aa891a5ab8
patch 8.2.3019: location list only has the start position.
Bram Moolenaar <Bram@vim.org>
parents:
24962
diff
changeset
|
5524 \ 'end_col': 8, 'text': 'blue'}, |
f4aa891a5ab8
patch 8.2.3019: location list only has the start position.
Bram Moolenaar <Bram@vim.org>
parents:
24962
diff
changeset
|
5525 \ ]) |
f4aa891a5ab8
patch 8.2.3019: location list only has the start position.
Bram Moolenaar <Bram@vim.org>
parents:
24962
diff
changeset
|
5526 |
20631
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5527 Xwindow |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5528 call assert_equal('F1-L10C2-green', getline(1)) |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5529 call assert_equal('F1-L20C4-blue', getline(2)) |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5530 Xclose |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5531 set quickfixtextfunc&vim |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5532 Xwindow |
24964
f4aa891a5ab8
patch 8.2.3019: location list only has the start position.
Bram Moolenaar <Bram@vim.org>
parents:
24962
diff
changeset
|
5533 call assert_equal('F1|10 col 2-7| green', getline(1)) |
f4aa891a5ab8
patch 8.2.3019: location list only has the start position.
Bram Moolenaar <Bram@vim.org>
parents:
24962
diff
changeset
|
5534 call assert_equal('F1|20-25 col 4-8| blue', getline(2)) |
20631
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5535 Xclose |
27873
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
5536 |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
5537 set efm=%f:%l:%c:%m |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
5538 set quickfixtextfunc=Tqfexpr |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
5539 " Update the list with only the cwindow |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
5540 Xwindow |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
5541 only |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
5542 call g:Xsetlist([ |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
5543 \ { 'filename': 'F2', 'lnum': 20, 'col': 2, |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
5544 \ 'end_col': 7, 'text': 'red'} |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
5545 \ ]) |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
5546 call assert_equal(['F2-L20C2-red'], getline(1, '$')) |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
5547 new |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
5548 Xclose |
20631
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5549 set efm& |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5550 set quickfixtextfunc& |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5551 |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5552 " Test for per list 'quickfixtextfunc' setting |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5553 func PerQfText(info) |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5554 if a:info.quickfix |
20814
f23c6543a54d
patch 8.2.0959: using 'quickfixtextfunc' is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5555 let qfl = getqflist({'id' : a:info.id, 'items' : 1}).items |
20631
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5556 else |
20814
f23c6543a54d
patch 8.2.0959: using 'quickfixtextfunc' is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5557 let qfl = getloclist(a:info.winid, {'id' : a:info.id, 'items' : 1}).items |
20631
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5558 endif |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5559 if empty(qfl) |
20814
f23c6543a54d
patch 8.2.0959: using 'quickfixtextfunc' is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5560 return [] |
20631
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5561 endif |
20814
f23c6543a54d
patch 8.2.0959: using 'quickfixtextfunc' is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5562 let l = [] |
f23c6543a54d
patch 8.2.0959: using 'quickfixtextfunc' is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5563 for idx in range(a:info.start_idx - 1, a:info.end_idx - 1) |
f23c6543a54d
patch 8.2.0959: using 'quickfixtextfunc' is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5564 call add(l, 'Line ' .. qfl[idx].lnum .. ', Col ' .. qfl[idx].col) |
f23c6543a54d
patch 8.2.0959: using 'quickfixtextfunc' is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5565 endfor |
f23c6543a54d
patch 8.2.0959: using 'quickfixtextfunc' is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5566 return l |
20631
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5567 endfunc |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5568 set quickfixtextfunc=Tqfexpr |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5569 call g:Xsetlist([], ' ', {'quickfixtextfunc' : "PerQfText"}) |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5570 Xaddexpr ['F1:10:2:green', 'F1:20:4:blue'] |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5571 Xwindow |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5572 call assert_equal('Line 10, Col 2', getline(1)) |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5573 call assert_equal('Line 20, Col 4', getline(2)) |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5574 Xclose |
21409
2c40e60017a8
patch 8.2.1255: cannot use a lambda with quickfix functions
Bram Moolenaar <Bram@vim.org>
parents:
21265
diff
changeset
|
5575 call assert_equal(function('PerQfText'), |
2c40e60017a8
patch 8.2.1255: cannot use a lambda with quickfix functions
Bram Moolenaar <Bram@vim.org>
parents:
21265
diff
changeset
|
5576 \ g:Xgetlist({'quickfixtextfunc' : 1}).quickfixtextfunc) |
20762
68170c89e355
patch 8.2.0933: 'quickfixtextfunc' does not get window ID of location list
Bram Moolenaar <Bram@vim.org>
parents:
20729
diff
changeset
|
5577 " Add entries to the list when the quickfix buffer is hidden |
68170c89e355
patch 8.2.0933: 'quickfixtextfunc' does not get window ID of location list
Bram Moolenaar <Bram@vim.org>
parents:
20729
diff
changeset
|
5578 Xaddexpr ['F1:30:6:red'] |
68170c89e355
patch 8.2.0933: 'quickfixtextfunc' does not get window ID of location list
Bram Moolenaar <Bram@vim.org>
parents:
20729
diff
changeset
|
5579 Xwindow |
68170c89e355
patch 8.2.0933: 'quickfixtextfunc' does not get window ID of location list
Bram Moolenaar <Bram@vim.org>
parents:
20729
diff
changeset
|
5580 call assert_equal('Line 30, Col 6', getline(3)) |
68170c89e355
patch 8.2.0933: 'quickfixtextfunc' does not get window ID of location list
Bram Moolenaar <Bram@vim.org>
parents:
20729
diff
changeset
|
5581 Xclose |
20631
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5582 call g:Xsetlist([], 'r', {'quickfixtextfunc' : ''}) |
21409
2c40e60017a8
patch 8.2.1255: cannot use a lambda with quickfix functions
Bram Moolenaar <Bram@vim.org>
parents:
21265
diff
changeset
|
5583 call assert_equal('', g:Xgetlist({'quickfixtextfunc' : 1}).quickfixtextfunc) |
20631
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5584 set quickfixtextfunc& |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5585 delfunc PerQfText |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5586 |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5587 " Non-existing function |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5588 set quickfixtextfunc=Tabc |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5589 call assert_fails("Xexpr ['F1:10:2:green', 'F1:20:4:blue']", 'E117:') |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5590 call assert_fails("Xwindow", 'E117:') |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5591 Xclose |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5592 set quickfixtextfunc& |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5593 |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5594 " set option to a non-function |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5595 set quickfixtextfunc=[10,\ 20] |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5596 call assert_fails("Xexpr ['F1:10:2:green', 'F1:20:4:blue']", 'E117:') |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5597 call assert_fails("Xwindow", 'E117:') |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5598 Xclose |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5599 set quickfixtextfunc& |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5600 |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5601 " set option to a function with different set of arguments |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5602 func Xqftext(a, b, c) |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5603 return a:a .. a:b .. a:c |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5604 endfunc |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5605 set quickfixtextfunc=Xqftext |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5606 call assert_fails("Xexpr ['F1:10:2:green', 'F1:20:4:blue']", 'E119:') |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5607 call assert_fails("Xwindow", 'E119:') |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5608 Xclose |
20814
f23c6543a54d
patch 8.2.0959: using 'quickfixtextfunc' is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5609 |
f23c6543a54d
patch 8.2.0959: using 'quickfixtextfunc' is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5610 " set option to a function that returns a list with non-strings |
f23c6543a54d
patch 8.2.0959: using 'quickfixtextfunc' is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5611 func Xqftext2(d) |
f23c6543a54d
patch 8.2.0959: using 'quickfixtextfunc' is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5612 return ['one', [], 'two'] |
f23c6543a54d
patch 8.2.0959: using 'quickfixtextfunc' is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5613 endfunc |
f23c6543a54d
patch 8.2.0959: using 'quickfixtextfunc' is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5614 set quickfixtextfunc=Xqftext2 |
f23c6543a54d
patch 8.2.0959: using 'quickfixtextfunc' is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5615 call assert_fails("Xexpr ['F1:10:2:green', 'F1:20:4:blue', 'F1:30:6:red']", |
f23c6543a54d
patch 8.2.0959: using 'quickfixtextfunc' is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5616 \ 'E730:') |
f23c6543a54d
patch 8.2.0959: using 'quickfixtextfunc' is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5617 call assert_fails('Xwindow', 'E730:') |
21409
2c40e60017a8
patch 8.2.1255: cannot use a lambda with quickfix functions
Bram Moolenaar <Bram@vim.org>
parents:
21265
diff
changeset
|
5618 call assert_equal(['one', 'F1|20 col 4| blue', 'F1|30 col 6| red'], |
2c40e60017a8
patch 8.2.1255: cannot use a lambda with quickfix functions
Bram Moolenaar <Bram@vim.org>
parents:
21265
diff
changeset
|
5619 \ getline(1, '$')) |
20814
f23c6543a54d
patch 8.2.0959: using 'quickfixtextfunc' is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5620 Xclose |
f23c6543a54d
patch 8.2.0959: using 'quickfixtextfunc' is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5621 |
20631
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5622 set quickfixtextfunc& |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5623 delfunc Xqftext |
20814
f23c6543a54d
patch 8.2.0959: using 'quickfixtextfunc' is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20768
diff
changeset
|
5624 delfunc Xqftext2 |
21409
2c40e60017a8
patch 8.2.1255: cannot use a lambda with quickfix functions
Bram Moolenaar <Bram@vim.org>
parents:
21265
diff
changeset
|
5625 |
2c40e60017a8
patch 8.2.1255: cannot use a lambda with quickfix functions
Bram Moolenaar <Bram@vim.org>
parents:
21265
diff
changeset
|
5626 " set the global option to a lambda function |
2c40e60017a8
patch 8.2.1255: cannot use a lambda with quickfix functions
Bram Moolenaar <Bram@vim.org>
parents:
21265
diff
changeset
|
5627 set quickfixtextfunc={d\ ->\ map(g:Xgetlist({'id'\ :\ d.id,\ 'items'\ :\ 1}).items[d.start_idx-1:d.end_idx-1],\ 'v:val.text')} |
2c40e60017a8
patch 8.2.1255: cannot use a lambda with quickfix functions
Bram Moolenaar <Bram@vim.org>
parents:
21265
diff
changeset
|
5628 Xexpr ['F1:10:2:green', 'F1:20:4:blue'] |
2c40e60017a8
patch 8.2.1255: cannot use a lambda with quickfix functions
Bram Moolenaar <Bram@vim.org>
parents:
21265
diff
changeset
|
5629 Xwindow |
2c40e60017a8
patch 8.2.1255: cannot use a lambda with quickfix functions
Bram Moolenaar <Bram@vim.org>
parents:
21265
diff
changeset
|
5630 call assert_equal(['green', 'blue'], getline(1, '$')) |
2c40e60017a8
patch 8.2.1255: cannot use a lambda with quickfix functions
Bram Moolenaar <Bram@vim.org>
parents:
21265
diff
changeset
|
5631 Xclose |
2c40e60017a8
patch 8.2.1255: cannot use a lambda with quickfix functions
Bram Moolenaar <Bram@vim.org>
parents:
21265
diff
changeset
|
5632 call assert_equal("{d -> map(g:Xgetlist({'id' : d.id, 'items' : 1}).items[d.start_idx-1:d.end_idx-1], 'v:val.text')}", &quickfixtextfunc) |
2c40e60017a8
patch 8.2.1255: cannot use a lambda with quickfix functions
Bram Moolenaar <Bram@vim.org>
parents:
21265
diff
changeset
|
5633 set quickfixtextfunc& |
2c40e60017a8
patch 8.2.1255: cannot use a lambda with quickfix functions
Bram Moolenaar <Bram@vim.org>
parents:
21265
diff
changeset
|
5634 |
2c40e60017a8
patch 8.2.1255: cannot use a lambda with quickfix functions
Bram Moolenaar <Bram@vim.org>
parents:
21265
diff
changeset
|
5635 " use a lambda function that returns an empty list |
2c40e60017a8
patch 8.2.1255: cannot use a lambda with quickfix functions
Bram Moolenaar <Bram@vim.org>
parents:
21265
diff
changeset
|
5636 set quickfixtextfunc={d\ ->\ []} |
2c40e60017a8
patch 8.2.1255: cannot use a lambda with quickfix functions
Bram Moolenaar <Bram@vim.org>
parents:
21265
diff
changeset
|
5637 Xexpr ['F1:10:2:green', 'F1:20:4:blue'] |
2c40e60017a8
patch 8.2.1255: cannot use a lambda with quickfix functions
Bram Moolenaar <Bram@vim.org>
parents:
21265
diff
changeset
|
5638 Xwindow |
2c40e60017a8
patch 8.2.1255: cannot use a lambda with quickfix functions
Bram Moolenaar <Bram@vim.org>
parents:
21265
diff
changeset
|
5639 call assert_equal(['F1|10 col 2| green', 'F1|20 col 4| blue'], |
2c40e60017a8
patch 8.2.1255: cannot use a lambda with quickfix functions
Bram Moolenaar <Bram@vim.org>
parents:
21265
diff
changeset
|
5640 \ getline(1, '$')) |
2c40e60017a8
patch 8.2.1255: cannot use a lambda with quickfix functions
Bram Moolenaar <Bram@vim.org>
parents:
21265
diff
changeset
|
5641 Xclose |
2c40e60017a8
patch 8.2.1255: cannot use a lambda with quickfix functions
Bram Moolenaar <Bram@vim.org>
parents:
21265
diff
changeset
|
5642 set quickfixtextfunc& |
2c40e60017a8
patch 8.2.1255: cannot use a lambda with quickfix functions
Bram Moolenaar <Bram@vim.org>
parents:
21265
diff
changeset
|
5643 |
2c40e60017a8
patch 8.2.1255: cannot use a lambda with quickfix functions
Bram Moolenaar <Bram@vim.org>
parents:
21265
diff
changeset
|
5644 " use a lambda function that returns a list with empty strings |
2c40e60017a8
patch 8.2.1255: cannot use a lambda with quickfix functions
Bram Moolenaar <Bram@vim.org>
parents:
21265
diff
changeset
|
5645 set quickfixtextfunc={d\ ->\ ['',\ '']} |
2c40e60017a8
patch 8.2.1255: cannot use a lambda with quickfix functions
Bram Moolenaar <Bram@vim.org>
parents:
21265
diff
changeset
|
5646 Xexpr ['F1:10:2:green', 'F1:20:4:blue'] |
2c40e60017a8
patch 8.2.1255: cannot use a lambda with quickfix functions
Bram Moolenaar <Bram@vim.org>
parents:
21265
diff
changeset
|
5647 Xwindow |
2c40e60017a8
patch 8.2.1255: cannot use a lambda with quickfix functions
Bram Moolenaar <Bram@vim.org>
parents:
21265
diff
changeset
|
5648 call assert_equal(['F1|10 col 2| green', 'F1|20 col 4| blue'], |
2c40e60017a8
patch 8.2.1255: cannot use a lambda with quickfix functions
Bram Moolenaar <Bram@vim.org>
parents:
21265
diff
changeset
|
5649 \ getline(1, '$')) |
2c40e60017a8
patch 8.2.1255: cannot use a lambda with quickfix functions
Bram Moolenaar <Bram@vim.org>
parents:
21265
diff
changeset
|
5650 Xclose |
2c40e60017a8
patch 8.2.1255: cannot use a lambda with quickfix functions
Bram Moolenaar <Bram@vim.org>
parents:
21265
diff
changeset
|
5651 set quickfixtextfunc& |
2c40e60017a8
patch 8.2.1255: cannot use a lambda with quickfix functions
Bram Moolenaar <Bram@vim.org>
parents:
21265
diff
changeset
|
5652 |
2c40e60017a8
patch 8.2.1255: cannot use a lambda with quickfix functions
Bram Moolenaar <Bram@vim.org>
parents:
21265
diff
changeset
|
5653 " set the per-quickfix list text function to a lambda function |
2c40e60017a8
patch 8.2.1255: cannot use a lambda with quickfix functions
Bram Moolenaar <Bram@vim.org>
parents:
21265
diff
changeset
|
5654 call g:Xsetlist([], ' ', |
2c40e60017a8
patch 8.2.1255: cannot use a lambda with quickfix functions
Bram Moolenaar <Bram@vim.org>
parents:
21265
diff
changeset
|
5655 \ {'quickfixtextfunc' : |
2c40e60017a8
patch 8.2.1255: cannot use a lambda with quickfix functions
Bram Moolenaar <Bram@vim.org>
parents:
21265
diff
changeset
|
5656 \ {d -> map(g:Xgetlist({'id' : d.id, 'items' : 1}).items[d.start_idx-1:d.end_idx-1], |
2c40e60017a8
patch 8.2.1255: cannot use a lambda with quickfix functions
Bram Moolenaar <Bram@vim.org>
parents:
21265
diff
changeset
|
5657 \ "'Line ' .. v:val.lnum .. ', Col ' .. v:val.col")}}) |
2c40e60017a8
patch 8.2.1255: cannot use a lambda with quickfix functions
Bram Moolenaar <Bram@vim.org>
parents:
21265
diff
changeset
|
5658 Xaddexpr ['F1:10:2:green', 'F1:20:4:blue'] |
2c40e60017a8
patch 8.2.1255: cannot use a lambda with quickfix functions
Bram Moolenaar <Bram@vim.org>
parents:
21265
diff
changeset
|
5659 Xwindow |
2c40e60017a8
patch 8.2.1255: cannot use a lambda with quickfix functions
Bram Moolenaar <Bram@vim.org>
parents:
21265
diff
changeset
|
5660 call assert_equal('Line 10, Col 2', getline(1)) |
2c40e60017a8
patch 8.2.1255: cannot use a lambda with quickfix functions
Bram Moolenaar <Bram@vim.org>
parents:
21265
diff
changeset
|
5661 call assert_equal('Line 20, Col 4', getline(2)) |
2c40e60017a8
patch 8.2.1255: cannot use a lambda with quickfix functions
Bram Moolenaar <Bram@vim.org>
parents:
21265
diff
changeset
|
5662 Xclose |
2c40e60017a8
patch 8.2.1255: cannot use a lambda with quickfix functions
Bram Moolenaar <Bram@vim.org>
parents:
21265
diff
changeset
|
5663 call assert_match("function('<lambda>\\d\\+')", string(g:Xgetlist({'quickfixtextfunc' : 1}).quickfixtextfunc)) |
2c40e60017a8
patch 8.2.1255: cannot use a lambda with quickfix functions
Bram Moolenaar <Bram@vim.org>
parents:
21265
diff
changeset
|
5664 call g:Xsetlist([], 'f') |
20631
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5665 endfunc |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5666 |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5667 func Test_qftextfunc() |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5668 call Xtest_qftextfunc('c') |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5669 call Xtest_qftextfunc('l') |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5670 endfunc |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20263
diff
changeset
|
5671 |
26518
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5672 func Test_qftextfunc_callback() |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5673 let lines =<< trim END |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5674 set efm=%f:%l:%c:%m |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5675 |
26526
33d680d372aa
patch 8.2.3792: setting *func options insufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
26518
diff
changeset
|
5676 #" Test for using a function name |
33d680d372aa
patch 8.2.3792: setting *func options insufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
26518
diff
changeset
|
5677 LET &qftf = 'g:Tqfexpr' |
33d680d372aa
patch 8.2.3792: setting *func options insufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
26518
diff
changeset
|
5678 cexpr "F0:0:0:L0" |
33d680d372aa
patch 8.2.3792: setting *func options insufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
26518
diff
changeset
|
5679 copen |
33d680d372aa
patch 8.2.3792: setting *func options insufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
26518
diff
changeset
|
5680 call assert_equal('F0-L0C0-L0', getline(1)) |
33d680d372aa
patch 8.2.3792: setting *func options insufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
26518
diff
changeset
|
5681 cclose |
33d680d372aa
patch 8.2.3792: setting *func options insufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
26518
diff
changeset
|
5682 |
26518
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5683 #" Test for using a function() |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5684 set qftf=function('g:Tqfexpr') |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5685 cexpr "F1:1:1:L1" |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5686 copen |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5687 call assert_equal('F1-L1C1-L1', getline(1)) |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5688 cclose |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5689 |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5690 #" Using a funcref variable to set 'quickfixtextfunc' |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5691 VAR Fn = function('g:Tqfexpr') |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5692 LET &qftf = Fn |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5693 cexpr "F2:2:2:L2" |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5694 copen |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5695 call assert_equal('F2-L2C2-L2', getline(1)) |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5696 cclose |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5697 |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5698 #" Using string(funcref_variable) to set 'quickfixtextfunc' |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5699 LET Fn = function('g:Tqfexpr') |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5700 LET &qftf = string(Fn) |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5701 cexpr "F3:3:3:L3" |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5702 copen |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5703 call assert_equal('F3-L3C3-L3', getline(1)) |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5704 cclose |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5705 |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5706 #" Test for using a funcref() |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5707 set qftf=funcref('g:Tqfexpr') |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5708 cexpr "F4:4:4:L4" |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5709 copen |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5710 call assert_equal('F4-L4C4-L4', getline(1)) |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5711 cclose |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5712 |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5713 #" Using a funcref variable to set 'quickfixtextfunc' |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5714 LET Fn = funcref('g:Tqfexpr') |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5715 LET &qftf = Fn |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5716 cexpr "F5:5:5:L5" |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5717 copen |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5718 call assert_equal('F5-L5C5-L5', getline(1)) |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5719 cclose |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5720 |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5721 #" Using a string(funcref_variable) to set 'quickfixtextfunc' |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5722 LET Fn = funcref('g:Tqfexpr') |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5723 LET &qftf = string(Fn) |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5724 cexpr "F5:5:5:L5" |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5725 copen |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5726 call assert_equal('F5-L5C5-L5', getline(1)) |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5727 cclose |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5728 |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5729 #" Test for using a lambda function with set |
27457
4c16acb2525f
patch 8.2.4257: Vim9: finding global function without g: prefix inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
26618
diff
changeset
|
5730 VAR optval = "LSTART a LMIDDLE g:Tqfexpr(a) LEND" |
26518
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5731 LET optval = substitute(optval, ' ', '\\ ', 'g') |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5732 exe "set qftf=" .. optval |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5733 cexpr "F6:6:6:L6" |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5734 copen |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5735 call assert_equal('F6-L6C6-L6', getline(1)) |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5736 cclose |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5737 |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5738 #" Set 'quickfixtextfunc' to a lambda expression |
27457
4c16acb2525f
patch 8.2.4257: Vim9: finding global function without g: prefix inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
26618
diff
changeset
|
5739 LET &qftf = LSTART a LMIDDLE g:Tqfexpr(a) LEND |
26518
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5740 cexpr "F7:7:7:L7" |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5741 copen |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5742 call assert_equal('F7-L7C7-L7', getline(1)) |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5743 cclose |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5744 |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5745 #" Set 'quickfixtextfunc' to string(lambda_expression) |
27457
4c16acb2525f
patch 8.2.4257: Vim9: finding global function without g: prefix inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
26618
diff
changeset
|
5746 LET &qftf = "LSTART a LMIDDLE g:Tqfexpr(a) LEND" |
26518
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5747 cexpr "F8:8:8:L8" |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5748 copen |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5749 call assert_equal('F8-L8C8-L8', getline(1)) |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5750 cclose |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5751 |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5752 #" Set 'quickfixtextfunc' to a variable with a lambda expression |
27457
4c16acb2525f
patch 8.2.4257: Vim9: finding global function without g: prefix inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
26618
diff
changeset
|
5753 VAR Lambda = LSTART a LMIDDLE g:Tqfexpr(a) LEND |
26518
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5754 LET &qftf = Lambda |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5755 cexpr "F9:9:9:L9" |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5756 copen |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5757 call assert_equal('F9-L9C9-L9', getline(1)) |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5758 cclose |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5759 |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5760 #" Set 'quickfixtextfunc' to a string(variable with a lambda expression) |
27457
4c16acb2525f
patch 8.2.4257: Vim9: finding global function without g: prefix inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
26618
diff
changeset
|
5761 LET Lambda = LSTART a LMIDDLE g:Tqfexpr(a) LEND |
26518
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5762 LET &qftf = string(Lambda) |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5763 cexpr "F9:9:9:L9" |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5764 copen |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5765 call assert_equal('F9-L9C9-L9', getline(1)) |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5766 cclose |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5767 END |
27457
4c16acb2525f
patch 8.2.4257: Vim9: finding global function without g: prefix inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
26618
diff
changeset
|
5768 call v9.CheckLegacyAndVim9Success(lines) |
26518
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5769 |
26618
b531c26f728b
patch 8.2.3838: cannot use script-local function for setting *func options
Bram Moolenaar <Bram@vim.org>
parents:
26568
diff
changeset
|
5770 " Test for using a script-local function name |
b531c26f728b
patch 8.2.3838: cannot use script-local function for setting *func options
Bram Moolenaar <Bram@vim.org>
parents:
26568
diff
changeset
|
5771 func s:TqfFunc2(info) |
b531c26f728b
patch 8.2.3838: cannot use script-local function for setting *func options
Bram Moolenaar <Bram@vim.org>
parents:
26568
diff
changeset
|
5772 let g:TqfFunc2Args = [a:info.start_idx, a:info.end_idx] |
b531c26f728b
patch 8.2.3838: cannot use script-local function for setting *func options
Bram Moolenaar <Bram@vim.org>
parents:
26568
diff
changeset
|
5773 return '' |
b531c26f728b
patch 8.2.3838: cannot use script-local function for setting *func options
Bram Moolenaar <Bram@vim.org>
parents:
26568
diff
changeset
|
5774 endfunc |
b531c26f728b
patch 8.2.3838: cannot use script-local function for setting *func options
Bram Moolenaar <Bram@vim.org>
parents:
26568
diff
changeset
|
5775 let g:TqfFunc2Args = [] |
b531c26f728b
patch 8.2.3838: cannot use script-local function for setting *func options
Bram Moolenaar <Bram@vim.org>
parents:
26568
diff
changeset
|
5776 set quickfixtextfunc=s:TqfFunc2 |
b531c26f728b
patch 8.2.3838: cannot use script-local function for setting *func options
Bram Moolenaar <Bram@vim.org>
parents:
26568
diff
changeset
|
5777 cexpr "F10:10:10:L10" |
b531c26f728b
patch 8.2.3838: cannot use script-local function for setting *func options
Bram Moolenaar <Bram@vim.org>
parents:
26568
diff
changeset
|
5778 cclose |
b531c26f728b
patch 8.2.3838: cannot use script-local function for setting *func options
Bram Moolenaar <Bram@vim.org>
parents:
26568
diff
changeset
|
5779 call assert_equal([1, 1], g:TqfFunc2Args) |
b531c26f728b
patch 8.2.3838: cannot use script-local function for setting *func options
Bram Moolenaar <Bram@vim.org>
parents:
26568
diff
changeset
|
5780 |
b531c26f728b
patch 8.2.3838: cannot use script-local function for setting *func options
Bram Moolenaar <Bram@vim.org>
parents:
26568
diff
changeset
|
5781 let &quickfixtextfunc = 's:TqfFunc2' |
b531c26f728b
patch 8.2.3838: cannot use script-local function for setting *func options
Bram Moolenaar <Bram@vim.org>
parents:
26568
diff
changeset
|
5782 cexpr "F11:11:11:L11" |
b531c26f728b
patch 8.2.3838: cannot use script-local function for setting *func options
Bram Moolenaar <Bram@vim.org>
parents:
26568
diff
changeset
|
5783 cclose |
b531c26f728b
patch 8.2.3838: cannot use script-local function for setting *func options
Bram Moolenaar <Bram@vim.org>
parents:
26568
diff
changeset
|
5784 call assert_equal([1, 1], g:TqfFunc2Args) |
b531c26f728b
patch 8.2.3838: cannot use script-local function for setting *func options
Bram Moolenaar <Bram@vim.org>
parents:
26568
diff
changeset
|
5785 delfunc s:TqfFunc2 |
b531c26f728b
patch 8.2.3838: cannot use script-local function for setting *func options
Bram Moolenaar <Bram@vim.org>
parents:
26568
diff
changeset
|
5786 |
26518
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5787 " set 'quickfixtextfunc' to a partial with dict. This used to cause a crash. |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5788 func SetQftfFunc() |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5789 let params = {'qftf': function('g:DictQftfFunc')} |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5790 let &quickfixtextfunc = params.qftf |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5791 endfunc |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5792 func g:DictQftfFunc(_) dict |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5793 endfunc |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5794 call SetQftfFunc() |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5795 new |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5796 call SetQftfFunc() |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5797 bw |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5798 call test_garbagecollect_now() |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5799 new |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5800 set qftf= |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5801 wincmd w |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5802 set qftf= |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5803 :%bw! |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5804 |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5805 " set per-quickfix list 'quickfixtextfunc' to a partial with dict. This used |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5806 " to cause a crash. |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5807 let &qftf = '' |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5808 func SetLocalQftfFunc() |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5809 let params = {'qftf': function('g:DictQftfFunc')} |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5810 call setqflist([], 'a', {'quickfixtextfunc' : params.qftf}) |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5811 endfunc |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5812 call SetLocalQftfFunc() |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5813 call test_garbagecollect_now() |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5814 call setqflist([], 'a', {'quickfixtextfunc' : ''}) |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5815 delfunc g:DictQftfFunc |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5816 delfunc SetQftfFunc |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5817 delfunc SetLocalQftfFunc |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5818 set efm& |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5819 endfunc |
13ba00ef7687
patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents:
26464
diff
changeset
|
5820 |
24962
437b8be91993
patch 8.2.3018: 'quickfixtextfunc' formatting is lost when switching buffers
Bram Moolenaar <Bram@vim.org>
parents:
24590
diff
changeset
|
5821 " Test for updating a location list for some other window and check that |
437b8be91993
patch 8.2.3018: 'quickfixtextfunc' formatting is lost when switching buffers
Bram Moolenaar <Bram@vim.org>
parents:
24590
diff
changeset
|
5822 " 'qftextfunc' uses the correct location list. |
437b8be91993
patch 8.2.3018: 'quickfixtextfunc' formatting is lost when switching buffers
Bram Moolenaar <Bram@vim.org>
parents:
24590
diff
changeset
|
5823 func Test_qftextfunc_other_loclist() |
437b8be91993
patch 8.2.3018: 'quickfixtextfunc' formatting is lost when switching buffers
Bram Moolenaar <Bram@vim.org>
parents:
24590
diff
changeset
|
5824 %bw! |
437b8be91993
patch 8.2.3018: 'quickfixtextfunc' formatting is lost when switching buffers
Bram Moolenaar <Bram@vim.org>
parents:
24590
diff
changeset
|
5825 call setloclist(0, [], 'f') |
437b8be91993
patch 8.2.3018: 'quickfixtextfunc' formatting is lost when switching buffers
Bram Moolenaar <Bram@vim.org>
parents:
24590
diff
changeset
|
5826 |
437b8be91993
patch 8.2.3018: 'quickfixtextfunc' formatting is lost when switching buffers
Bram Moolenaar <Bram@vim.org>
parents:
24590
diff
changeset
|
5827 " create a window and a location list for it and open the location list |
437b8be91993
patch 8.2.3018: 'quickfixtextfunc' formatting is lost when switching buffers
Bram Moolenaar <Bram@vim.org>
parents:
24590
diff
changeset
|
5828 " window |
437b8be91993
patch 8.2.3018: 'quickfixtextfunc' formatting is lost when switching buffers
Bram Moolenaar <Bram@vim.org>
parents:
24590
diff
changeset
|
5829 lexpr ['F1:10:12:one', 'F1:20:14:two'] |
437b8be91993
patch 8.2.3018: 'quickfixtextfunc' formatting is lost when switching buffers
Bram Moolenaar <Bram@vim.org>
parents:
24590
diff
changeset
|
5830 let w1_id = win_getid() |
437b8be91993
patch 8.2.3018: 'quickfixtextfunc' formatting is lost when switching buffers
Bram Moolenaar <Bram@vim.org>
parents:
24590
diff
changeset
|
5831 call setloclist(0, [], ' ', |
437b8be91993
patch 8.2.3018: 'quickfixtextfunc' formatting is lost when switching buffers
Bram Moolenaar <Bram@vim.org>
parents:
24590
diff
changeset
|
5832 \ {'lines': ['F1:10:12:one', 'F1:20:14:two'], |
437b8be91993
patch 8.2.3018: 'quickfixtextfunc' formatting is lost when switching buffers
Bram Moolenaar <Bram@vim.org>
parents:
24590
diff
changeset
|
5833 \ 'quickfixtextfunc': |
437b8be91993
patch 8.2.3018: 'quickfixtextfunc' formatting is lost when switching buffers
Bram Moolenaar <Bram@vim.org>
parents:
24590
diff
changeset
|
5834 \ {d -> map(getloclist(d.winid, {'id' : d.id, |
437b8be91993
patch 8.2.3018: 'quickfixtextfunc' formatting is lost when switching buffers
Bram Moolenaar <Bram@vim.org>
parents:
24590
diff
changeset
|
5835 \ 'items' : 1}).items[d.start_idx-1:d.end_idx-1], |
437b8be91993
patch 8.2.3018: 'quickfixtextfunc' formatting is lost when switching buffers
Bram Moolenaar <Bram@vim.org>
parents:
24590
diff
changeset
|
5836 \ "'Line ' .. v:val.lnum .. ', Col ' .. v:val.col")}}) |
437b8be91993
patch 8.2.3018: 'quickfixtextfunc' formatting is lost when switching buffers
Bram Moolenaar <Bram@vim.org>
parents:
24590
diff
changeset
|
5837 lwindow |
437b8be91993
patch 8.2.3018: 'quickfixtextfunc' formatting is lost when switching buffers
Bram Moolenaar <Bram@vim.org>
parents:
24590
diff
changeset
|
5838 let w2_id = win_getid() |
437b8be91993
patch 8.2.3018: 'quickfixtextfunc' formatting is lost when switching buffers
Bram Moolenaar <Bram@vim.org>
parents:
24590
diff
changeset
|
5839 |
437b8be91993
patch 8.2.3018: 'quickfixtextfunc' formatting is lost when switching buffers
Bram Moolenaar <Bram@vim.org>
parents:
24590
diff
changeset
|
5840 " create another window and a location list for it and open the location |
437b8be91993
patch 8.2.3018: 'quickfixtextfunc' formatting is lost when switching buffers
Bram Moolenaar <Bram@vim.org>
parents:
24590
diff
changeset
|
5841 " list window |
437b8be91993
patch 8.2.3018: 'quickfixtextfunc' formatting is lost when switching buffers
Bram Moolenaar <Bram@vim.org>
parents:
24590
diff
changeset
|
5842 topleft new |
437b8be91993
patch 8.2.3018: 'quickfixtextfunc' formatting is lost when switching buffers
Bram Moolenaar <Bram@vim.org>
parents:
24590
diff
changeset
|
5843 let w3_id = win_getid() |
437b8be91993
patch 8.2.3018: 'quickfixtextfunc' formatting is lost when switching buffers
Bram Moolenaar <Bram@vim.org>
parents:
24590
diff
changeset
|
5844 call setloclist(0, [], ' ', |
437b8be91993
patch 8.2.3018: 'quickfixtextfunc' formatting is lost when switching buffers
Bram Moolenaar <Bram@vim.org>
parents:
24590
diff
changeset
|
5845 \ {'lines': ['F2:30:32:eleven', 'F2:40:34:twelve'], |
437b8be91993
patch 8.2.3018: 'quickfixtextfunc' formatting is lost when switching buffers
Bram Moolenaar <Bram@vim.org>
parents:
24590
diff
changeset
|
5846 \ 'quickfixtextfunc': |
437b8be91993
patch 8.2.3018: 'quickfixtextfunc' formatting is lost when switching buffers
Bram Moolenaar <Bram@vim.org>
parents:
24590
diff
changeset
|
5847 \ {d -> map(getloclist(d.winid, {'id' : d.id, |
437b8be91993
patch 8.2.3018: 'quickfixtextfunc' formatting is lost when switching buffers
Bram Moolenaar <Bram@vim.org>
parents:
24590
diff
changeset
|
5848 \ 'items' : 1}).items[d.start_idx-1:d.end_idx-1], |
437b8be91993
patch 8.2.3018: 'quickfixtextfunc' formatting is lost when switching buffers
Bram Moolenaar <Bram@vim.org>
parents:
24590
diff
changeset
|
5849 \ "'Ligne ' .. v:val.lnum .. ', Colonne ' .. v:val.col")}}) |
437b8be91993
patch 8.2.3018: 'quickfixtextfunc' formatting is lost when switching buffers
Bram Moolenaar <Bram@vim.org>
parents:
24590
diff
changeset
|
5850 lwindow |
437b8be91993
patch 8.2.3018: 'quickfixtextfunc' formatting is lost when switching buffers
Bram Moolenaar <Bram@vim.org>
parents:
24590
diff
changeset
|
5851 let w4_id = win_getid() |
437b8be91993
patch 8.2.3018: 'quickfixtextfunc' formatting is lost when switching buffers
Bram Moolenaar <Bram@vim.org>
parents:
24590
diff
changeset
|
5852 |
437b8be91993
patch 8.2.3018: 'quickfixtextfunc' formatting is lost when switching buffers
Bram Moolenaar <Bram@vim.org>
parents:
24590
diff
changeset
|
5853 topleft new |
437b8be91993
patch 8.2.3018: 'quickfixtextfunc' formatting is lost when switching buffers
Bram Moolenaar <Bram@vim.org>
parents:
24590
diff
changeset
|
5854 lexpr ['F3:50:52:green', 'F3:60:54:blue'] |
437b8be91993
patch 8.2.3018: 'quickfixtextfunc' formatting is lost when switching buffers
Bram Moolenaar <Bram@vim.org>
parents:
24590
diff
changeset
|
5855 let w5_id = win_getid() |
437b8be91993
patch 8.2.3018: 'quickfixtextfunc' formatting is lost when switching buffers
Bram Moolenaar <Bram@vim.org>
parents:
24590
diff
changeset
|
5856 |
437b8be91993
patch 8.2.3018: 'quickfixtextfunc' formatting is lost when switching buffers
Bram Moolenaar <Bram@vim.org>
parents:
24590
diff
changeset
|
5857 " change the location list for some other window |
437b8be91993
patch 8.2.3018: 'quickfixtextfunc' formatting is lost when switching buffers
Bram Moolenaar <Bram@vim.org>
parents:
24590
diff
changeset
|
5858 call setloclist(0, [], 'r', {'lines': ['F3:55:56:aaa', 'F3:57:58:bbb']}) |
437b8be91993
patch 8.2.3018: 'quickfixtextfunc' formatting is lost when switching buffers
Bram Moolenaar <Bram@vim.org>
parents:
24590
diff
changeset
|
5859 call setloclist(w1_id, [], 'r', {'lines': ['F1:62:63:bbb', 'F1:64:65:ccc']}) |
437b8be91993
patch 8.2.3018: 'quickfixtextfunc' formatting is lost when switching buffers
Bram Moolenaar <Bram@vim.org>
parents:
24590
diff
changeset
|
5860 call setloclist(w3_id, [], 'r', {'lines': ['F2:76:77:ddd', 'F2:78:79:eee']}) |
437b8be91993
patch 8.2.3018: 'quickfixtextfunc' formatting is lost when switching buffers
Bram Moolenaar <Bram@vim.org>
parents:
24590
diff
changeset
|
5861 call assert_equal(['Line 62, Col 63', 'Line 64, Col 65'], |
437b8be91993
patch 8.2.3018: 'quickfixtextfunc' formatting is lost when switching buffers
Bram Moolenaar <Bram@vim.org>
parents:
24590
diff
changeset
|
5862 \ getbufline(winbufnr(w2_id), 1, '$')) |
437b8be91993
patch 8.2.3018: 'quickfixtextfunc' formatting is lost when switching buffers
Bram Moolenaar <Bram@vim.org>
parents:
24590
diff
changeset
|
5863 call assert_equal(['Ligne 76, Colonne 77', 'Ligne 78, Colonne 79'], |
437b8be91993
patch 8.2.3018: 'quickfixtextfunc' formatting is lost when switching buffers
Bram Moolenaar <Bram@vim.org>
parents:
24590
diff
changeset
|
5864 \ getbufline(winbufnr(w4_id), 1, '$')) |
437b8be91993
patch 8.2.3018: 'quickfixtextfunc' formatting is lost when switching buffers
Bram Moolenaar <Bram@vim.org>
parents:
24590
diff
changeset
|
5865 call setloclist(w2_id, [], 'r', {'lines': ['F1:32:33:fff', 'F1:34:35:ggg']}) |
437b8be91993
patch 8.2.3018: 'quickfixtextfunc' formatting is lost when switching buffers
Bram Moolenaar <Bram@vim.org>
parents:
24590
diff
changeset
|
5866 call setloclist(w4_id, [], 'r', {'lines': ['F2:46:47:hhh', 'F2:48:49:jjj']}) |
437b8be91993
patch 8.2.3018: 'quickfixtextfunc' formatting is lost when switching buffers
Bram Moolenaar <Bram@vim.org>
parents:
24590
diff
changeset
|
5867 call assert_equal(['Line 32, Col 33', 'Line 34, Col 35'], |
437b8be91993
patch 8.2.3018: 'quickfixtextfunc' formatting is lost when switching buffers
Bram Moolenaar <Bram@vim.org>
parents:
24590
diff
changeset
|
5868 \ getbufline(winbufnr(w2_id), 1, '$')) |
437b8be91993
patch 8.2.3018: 'quickfixtextfunc' formatting is lost when switching buffers
Bram Moolenaar <Bram@vim.org>
parents:
24590
diff
changeset
|
5869 call assert_equal(['Ligne 46, Colonne 47', 'Ligne 48, Colonne 49'], |
437b8be91993
patch 8.2.3018: 'quickfixtextfunc' formatting is lost when switching buffers
Bram Moolenaar <Bram@vim.org>
parents:
24590
diff
changeset
|
5870 \ getbufline(winbufnr(w4_id), 1, '$')) |
437b8be91993
patch 8.2.3018: 'quickfixtextfunc' formatting is lost when switching buffers
Bram Moolenaar <Bram@vim.org>
parents:
24590
diff
changeset
|
5871 |
437b8be91993
patch 8.2.3018: 'quickfixtextfunc' formatting is lost when switching buffers
Bram Moolenaar <Bram@vim.org>
parents:
24590
diff
changeset
|
5872 call win_gotoid(w5_id) |
437b8be91993
patch 8.2.3018: 'quickfixtextfunc' formatting is lost when switching buffers
Bram Moolenaar <Bram@vim.org>
parents:
24590
diff
changeset
|
5873 lwindow |
437b8be91993
patch 8.2.3018: 'quickfixtextfunc' formatting is lost when switching buffers
Bram Moolenaar <Bram@vim.org>
parents:
24590
diff
changeset
|
5874 call assert_equal(['F3|55 col 56| aaa', 'F3|57 col 58| bbb'], |
437b8be91993
patch 8.2.3018: 'quickfixtextfunc' formatting is lost when switching buffers
Bram Moolenaar <Bram@vim.org>
parents:
24590
diff
changeset
|
5875 \ getline(1, '$')) |
437b8be91993
patch 8.2.3018: 'quickfixtextfunc' formatting is lost when switching buffers
Bram Moolenaar <Bram@vim.org>
parents:
24590
diff
changeset
|
5876 %bw! |
437b8be91993
patch 8.2.3018: 'quickfixtextfunc' formatting is lost when switching buffers
Bram Moolenaar <Bram@vim.org>
parents:
24590
diff
changeset
|
5877 endfunc |
437b8be91993
patch 8.2.3018: 'quickfixtextfunc' formatting is lost when switching buffers
Bram Moolenaar <Bram@vim.org>
parents:
24590
diff
changeset
|
5878 |
20764
3c61d8ec36af
patch 8.2.0934: lhelpgrep twice in help window doesn't jump to the help topic
Bram Moolenaar <Bram@vim.org>
parents:
20762
diff
changeset
|
5879 " Running :lhelpgrep command more than once in a help window, doesn't jump to |
3c61d8ec36af
patch 8.2.0934: lhelpgrep twice in help window doesn't jump to the help topic
Bram Moolenaar <Bram@vim.org>
parents:
20762
diff
changeset
|
5880 " the help topic |
3c61d8ec36af
patch 8.2.0934: lhelpgrep twice in help window doesn't jump to the help topic
Bram Moolenaar <Bram@vim.org>
parents:
20762
diff
changeset
|
5881 func Test_lhelpgrep_from_help_window() |
3c61d8ec36af
patch 8.2.0934: lhelpgrep twice in help window doesn't jump to the help topic
Bram Moolenaar <Bram@vim.org>
parents:
20762
diff
changeset
|
5882 call mkdir('Xtestdir/doc', 'p') |
3c61d8ec36af
patch 8.2.0934: lhelpgrep twice in help window doesn't jump to the help topic
Bram Moolenaar <Bram@vim.org>
parents:
20762
diff
changeset
|
5883 call writefile(['window'], 'Xtestdir/doc/a.txt') |
3c61d8ec36af
patch 8.2.0934: lhelpgrep twice in help window doesn't jump to the help topic
Bram Moolenaar <Bram@vim.org>
parents:
20762
diff
changeset
|
5884 call writefile(['buffer'], 'Xtestdir/doc/b.txt') |
3c61d8ec36af
patch 8.2.0934: lhelpgrep twice in help window doesn't jump to the help topic
Bram Moolenaar <Bram@vim.org>
parents:
20762
diff
changeset
|
5885 let save_rtp = &rtp |
3c61d8ec36af
patch 8.2.0934: lhelpgrep twice in help window doesn't jump to the help topic
Bram Moolenaar <Bram@vim.org>
parents:
20762
diff
changeset
|
5886 let &rtp = 'Xtestdir' |
3c61d8ec36af
patch 8.2.0934: lhelpgrep twice in help window doesn't jump to the help topic
Bram Moolenaar <Bram@vim.org>
parents:
20762
diff
changeset
|
5887 lhelpgrep window |
3c61d8ec36af
patch 8.2.0934: lhelpgrep twice in help window doesn't jump to the help topic
Bram Moolenaar <Bram@vim.org>
parents:
20762
diff
changeset
|
5888 lhelpgrep buffer |
3c61d8ec36af
patch 8.2.0934: lhelpgrep twice in help window doesn't jump to the help topic
Bram Moolenaar <Bram@vim.org>
parents:
20762
diff
changeset
|
5889 call assert_equal('b.txt', fnamemodify(@%, ":p:t")) |
3c61d8ec36af
patch 8.2.0934: lhelpgrep twice in help window doesn't jump to the help topic
Bram Moolenaar <Bram@vim.org>
parents:
20762
diff
changeset
|
5890 lhelpgrep window |
3c61d8ec36af
patch 8.2.0934: lhelpgrep twice in help window doesn't jump to the help topic
Bram Moolenaar <Bram@vim.org>
parents:
20762
diff
changeset
|
5891 call assert_equal('a.txt', fnamemodify(@%, ":p:t")) |
3c61d8ec36af
patch 8.2.0934: lhelpgrep twice in help window doesn't jump to the help topic
Bram Moolenaar <Bram@vim.org>
parents:
20762
diff
changeset
|
5892 let &rtp = save_rtp |
3c61d8ec36af
patch 8.2.0934: lhelpgrep twice in help window doesn't jump to the help topic
Bram Moolenaar <Bram@vim.org>
parents:
20762
diff
changeset
|
5893 call delete('Xtestdir', 'rf') |
3c61d8ec36af
patch 8.2.0934: lhelpgrep twice in help window doesn't jump to the help topic
Bram Moolenaar <Bram@vim.org>
parents:
20762
diff
changeset
|
5894 new | only! |
3c61d8ec36af
patch 8.2.0934: lhelpgrep twice in help window doesn't jump to the help topic
Bram Moolenaar <Bram@vim.org>
parents:
20762
diff
changeset
|
5895 endfunc |
3c61d8ec36af
patch 8.2.0934: lhelpgrep twice in help window doesn't jump to the help topic
Bram Moolenaar <Bram@vim.org>
parents:
20762
diff
changeset
|
5896 |
21741
baccf9e06efe
patch 8.2.1420: test 49 is old style
Bram Moolenaar <Bram@vim.org>
parents:
21668
diff
changeset
|
5897 " Test for the crash fixed by 7.3.715 |
baccf9e06efe
patch 8.2.1420: test 49 is old style
Bram Moolenaar <Bram@vim.org>
parents:
21668
diff
changeset
|
5898 func Test_setloclist_crash() |
baccf9e06efe
patch 8.2.1420: test 49 is old style
Bram Moolenaar <Bram@vim.org>
parents:
21668
diff
changeset
|
5899 %bw! |
baccf9e06efe
patch 8.2.1420: test 49 is old style
Bram Moolenaar <Bram@vim.org>
parents:
21668
diff
changeset
|
5900 let g:BufNum = bufnr() |
baccf9e06efe
patch 8.2.1420: test 49 is old style
Bram Moolenaar <Bram@vim.org>
parents:
21668
diff
changeset
|
5901 augroup QF_Test |
baccf9e06efe
patch 8.2.1420: test 49 is old style
Bram Moolenaar <Bram@vim.org>
parents:
21668
diff
changeset
|
5902 au! |
baccf9e06efe
patch 8.2.1420: test 49 is old style
Bram Moolenaar <Bram@vim.org>
parents:
21668
diff
changeset
|
5903 au BufUnload * call setloclist(0, [{'bufnr':g:BufNum, 'lnum':1, 'col':1, 'text': 'tango down'}]) |
baccf9e06efe
patch 8.2.1420: test 49 is old style
Bram Moolenaar <Bram@vim.org>
parents:
21668
diff
changeset
|
5904 augroup END |
baccf9e06efe
patch 8.2.1420: test 49 is old style
Bram Moolenaar <Bram@vim.org>
parents:
21668
diff
changeset
|
5905 |
baccf9e06efe
patch 8.2.1420: test 49 is old style
Bram Moolenaar <Bram@vim.org>
parents:
21668
diff
changeset
|
5906 try |
baccf9e06efe
patch 8.2.1420: test 49 is old style
Bram Moolenaar <Bram@vim.org>
parents:
21668
diff
changeset
|
5907 lvimgrep /.*/ *.mak |
baccf9e06efe
patch 8.2.1420: test 49 is old style
Bram Moolenaar <Bram@vim.org>
parents:
21668
diff
changeset
|
5908 catch /E926:/ |
baccf9e06efe
patch 8.2.1420: test 49 is old style
Bram Moolenaar <Bram@vim.org>
parents:
21668
diff
changeset
|
5909 endtry |
baccf9e06efe
patch 8.2.1420: test 49 is old style
Bram Moolenaar <Bram@vim.org>
parents:
21668
diff
changeset
|
5910 call assert_equal('tango down', getloclist(0, {'items' : 0}).items[0].text) |
baccf9e06efe
patch 8.2.1420: test 49 is old style
Bram Moolenaar <Bram@vim.org>
parents:
21668
diff
changeset
|
5911 call assert_equal(1, getloclist(0, {'size' : 0}).size) |
baccf9e06efe
patch 8.2.1420: test 49 is old style
Bram Moolenaar <Bram@vim.org>
parents:
21668
diff
changeset
|
5912 |
baccf9e06efe
patch 8.2.1420: test 49 is old style
Bram Moolenaar <Bram@vim.org>
parents:
21668
diff
changeset
|
5913 augroup QF_Test |
baccf9e06efe
patch 8.2.1420: test 49 is old style
Bram Moolenaar <Bram@vim.org>
parents:
21668
diff
changeset
|
5914 au! |
baccf9e06efe
patch 8.2.1420: test 49 is old style
Bram Moolenaar <Bram@vim.org>
parents:
21668
diff
changeset
|
5915 augroup END |
baccf9e06efe
patch 8.2.1420: test 49 is old style
Bram Moolenaar <Bram@vim.org>
parents:
21668
diff
changeset
|
5916 unlet g:BufNum |
baccf9e06efe
patch 8.2.1420: test 49 is old style
Bram Moolenaar <Bram@vim.org>
parents:
21668
diff
changeset
|
5917 %bw! |
baccf9e06efe
patch 8.2.1420: test 49 is old style
Bram Moolenaar <Bram@vim.org>
parents:
21668
diff
changeset
|
5918 endfunc |
baccf9e06efe
patch 8.2.1420: test 49 is old style
Bram Moolenaar <Bram@vim.org>
parents:
21668
diff
changeset
|
5919 |
22870
69b48d2822ec
patch 8.2.1982: quickfix window now updated when adding invalid entries
Bram Moolenaar <Bram@vim.org>
parents:
22788
diff
changeset
|
5920 " Test for adding an invalid entry with the quickfix window open and making |
69b48d2822ec
patch 8.2.1982: quickfix window now updated when adding invalid entries
Bram Moolenaar <Bram@vim.org>
parents:
22788
diff
changeset
|
5921 " sure that the window contents are not changed |
69b48d2822ec
patch 8.2.1982: quickfix window now updated when adding invalid entries
Bram Moolenaar <Bram@vim.org>
parents:
22788
diff
changeset
|
5922 func Test_add_invalid_entry_with_qf_window() |
69b48d2822ec
patch 8.2.1982: quickfix window now updated when adding invalid entries
Bram Moolenaar <Bram@vim.org>
parents:
22788
diff
changeset
|
5923 call setqflist([], 'f') |
69b48d2822ec
patch 8.2.1982: quickfix window now updated when adding invalid entries
Bram Moolenaar <Bram@vim.org>
parents:
22788
diff
changeset
|
5924 cexpr "Xfile1:10:aa" |
69b48d2822ec
patch 8.2.1982: quickfix window now updated when adding invalid entries
Bram Moolenaar <Bram@vim.org>
parents:
22788
diff
changeset
|
5925 copen |
69b48d2822ec
patch 8.2.1982: quickfix window now updated when adding invalid entries
Bram Moolenaar <Bram@vim.org>
parents:
22788
diff
changeset
|
5926 call setqflist(['bb'], 'a') |
69b48d2822ec
patch 8.2.1982: quickfix window now updated when adding invalid entries
Bram Moolenaar <Bram@vim.org>
parents:
22788
diff
changeset
|
5927 call assert_equal(1, line('$')) |
69b48d2822ec
patch 8.2.1982: quickfix window now updated when adding invalid entries
Bram Moolenaar <Bram@vim.org>
parents:
22788
diff
changeset
|
5928 call assert_equal(['Xfile1|10| aa'], getline(1, '$')) |
24976
fd205e78e163
patch 8.2.3025: not enough tests for quickfix end_col and end_lnum
Bram Moolenaar <Bram@vim.org>
parents:
24964
diff
changeset
|
5929 call assert_equal([{'lnum': 10 , 'end_lnum': 0 , 'bufnr': bufnr('Xfile1') , 'col': 0 , 'end_col': 0 , 'pattern': '' , 'valid': 1 , 'vcol': 0 , 'nr': -1 , 'type': '' , 'module': '' , 'text': 'aa'}] , getqflist()) |
fd205e78e163
patch 8.2.3025: not enough tests for quickfix end_col and end_lnum
Bram Moolenaar <Bram@vim.org>
parents:
24964
diff
changeset
|
5930 |
fd205e78e163
patch 8.2.3025: not enough tests for quickfix end_col and end_lnum
Bram Moolenaar <Bram@vim.org>
parents:
24964
diff
changeset
|
5931 call setqflist([{'lnum': 10 , 'bufnr': bufnr('Xfile1') , 'col': 0 , 'pattern': '' , 'valid': 1 , 'vcol': 0 , 'nr': -1 , 'type': '' , 'module': '' , 'text': 'aa'}] , 'r') |
fd205e78e163
patch 8.2.3025: not enough tests for quickfix end_col and end_lnum
Bram Moolenaar <Bram@vim.org>
parents:
24964
diff
changeset
|
5932 call assert_equal(1 , line('$')) |
fd205e78e163
patch 8.2.3025: not enough tests for quickfix end_col and end_lnum
Bram Moolenaar <Bram@vim.org>
parents:
24964
diff
changeset
|
5933 call assert_equal(['Xfile1|10| aa'] , getline(1 , '$')) |
fd205e78e163
patch 8.2.3025: not enough tests for quickfix end_col and end_lnum
Bram Moolenaar <Bram@vim.org>
parents:
24964
diff
changeset
|
5934 call assert_equal([{'lnum': 10 , 'end_lnum': 0 , 'bufnr': bufnr('Xfile1') , 'col': 0 , 'end_col': 0 , 'pattern': '' , 'valid': 1 , 'vcol': 0 , 'nr': -1 , 'type': '' , 'module': '' , 'text': 'aa'}] , getqflist()) |
fd205e78e163
patch 8.2.3025: not enough tests for quickfix end_col and end_lnum
Bram Moolenaar <Bram@vim.org>
parents:
24964
diff
changeset
|
5935 |
fd205e78e163
patch 8.2.3025: not enough tests for quickfix end_col and end_lnum
Bram Moolenaar <Bram@vim.org>
parents:
24964
diff
changeset
|
5936 call setqflist([{'lnum': 10 , 'end_lnum': 0 , 'bufnr': bufnr('Xfile1') , 'col': 0 , 'end_col': 0 , 'pattern': '' , 'valid': 1 , 'vcol': 0 , 'nr': -1 , 'type': '' , 'module': '' , 'text': 'aa'}] , 'r') |
fd205e78e163
patch 8.2.3025: not enough tests for quickfix end_col and end_lnum
Bram Moolenaar <Bram@vim.org>
parents:
24964
diff
changeset
|
5937 call assert_equal(1 , line('$')) |
fd205e78e163
patch 8.2.3025: not enough tests for quickfix end_col and end_lnum
Bram Moolenaar <Bram@vim.org>
parents:
24964
diff
changeset
|
5938 call assert_equal(['Xfile1|10| aa'] , getline(1 , '$')) |
fd205e78e163
patch 8.2.3025: not enough tests for quickfix end_col and end_lnum
Bram Moolenaar <Bram@vim.org>
parents:
24964
diff
changeset
|
5939 call assert_equal([{'lnum': 10 , 'end_lnum': 0 , 'bufnr': bufnr('Xfile1') , 'col': 0 , 'end_col': 0 , 'pattern': '' , 'valid': 1 , 'vcol': 0 , 'nr': -1 , 'type': '' , 'module': '' , 'text': 'aa'}] , getqflist()) |
fd205e78e163
patch 8.2.3025: not enough tests for quickfix end_col and end_lnum
Bram Moolenaar <Bram@vim.org>
parents:
24964
diff
changeset
|
5940 |
fd205e78e163
patch 8.2.3025: not enough tests for quickfix end_col and end_lnum
Bram Moolenaar <Bram@vim.org>
parents:
24964
diff
changeset
|
5941 call setqflist([{'lnum': 10 , 'end_lnum': -123 , 'bufnr': bufnr('Xfile1') , 'col': 0 , 'end_col': -456 , 'pattern': '' , 'valid': 1 , 'vcol': 0 , 'nr': -1 , 'type': '' , 'module': '' , 'text': 'aa'}] , 'r') |
fd205e78e163
patch 8.2.3025: not enough tests for quickfix end_col and end_lnum
Bram Moolenaar <Bram@vim.org>
parents:
24964
diff
changeset
|
5942 call assert_equal(1 , line('$')) |
fd205e78e163
patch 8.2.3025: not enough tests for quickfix end_col and end_lnum
Bram Moolenaar <Bram@vim.org>
parents:
24964
diff
changeset
|
5943 call assert_equal(['Xfile1|10| aa'] , getline(1 , '$')) |
fd205e78e163
patch 8.2.3025: not enough tests for quickfix end_col and end_lnum
Bram Moolenaar <Bram@vim.org>
parents:
24964
diff
changeset
|
5944 call assert_equal([{'lnum': 10 , 'end_lnum': -123 , 'bufnr': bufnr('Xfile1') , 'col': 0 , 'end_col': -456 , 'pattern': '' , 'valid': 1 , 'vcol': 0 , 'nr': -1 , 'type': '' , 'module': '' , 'text': 'aa'}] , getqflist()) |
fd205e78e163
patch 8.2.3025: not enough tests for quickfix end_col and end_lnum
Bram Moolenaar <Bram@vim.org>
parents:
24964
diff
changeset
|
5945 |
fd205e78e163
patch 8.2.3025: not enough tests for quickfix end_col and end_lnum
Bram Moolenaar <Bram@vim.org>
parents:
24964
diff
changeset
|
5946 call setqflist([{'lnum': 10 , 'end_lnum': -123 , 'bufnr': bufnr('Xfile1') , 'col': 666 , 'end_col': 0 , 'pattern': '' , 'valid': 1 , 'vcol': 0 , 'nr': -1 , 'type': '' , 'module': '' , 'text': 'aa'}] , 'r') |
fd205e78e163
patch 8.2.3025: not enough tests for quickfix end_col and end_lnum
Bram Moolenaar <Bram@vim.org>
parents:
24964
diff
changeset
|
5947 call assert_equal(1 , line('$')) |
fd205e78e163
patch 8.2.3025: not enough tests for quickfix end_col and end_lnum
Bram Moolenaar <Bram@vim.org>
parents:
24964
diff
changeset
|
5948 call assert_equal(['Xfile1|10 col 666| aa'] , getline(1 , '$')) |
fd205e78e163
patch 8.2.3025: not enough tests for quickfix end_col and end_lnum
Bram Moolenaar <Bram@vim.org>
parents:
24964
diff
changeset
|
5949 call assert_equal([{'lnum': 10 , 'end_lnum': -123 , 'bufnr': bufnr('Xfile1') , 'col': 666 , 'end_col': 0 , 'pattern': '' , 'valid': 1 , 'vcol': 0 , 'nr': -1 , 'type': '' , 'module': '' , 'text': 'aa'}] , getqflist()) |
fd205e78e163
patch 8.2.3025: not enough tests for quickfix end_col and end_lnum
Bram Moolenaar <Bram@vim.org>
parents:
24964
diff
changeset
|
5950 |
fd205e78e163
patch 8.2.3025: not enough tests for quickfix end_col and end_lnum
Bram Moolenaar <Bram@vim.org>
parents:
24964
diff
changeset
|
5951 call setqflist([{'lnum': 10 , 'end_lnum': -123 , 'bufnr': bufnr('Xfile1') , 'col': 666 , 'end_col': -456 , 'pattern': '' , 'valid': 1 , 'vcol': 0 , 'nr': -1 , 'type': '' , 'module': '' , 'text': 'aa'}] , 'r') |
fd205e78e163
patch 8.2.3025: not enough tests for quickfix end_col and end_lnum
Bram Moolenaar <Bram@vim.org>
parents:
24964
diff
changeset
|
5952 call assert_equal(1 , line('$')) |
fd205e78e163
patch 8.2.3025: not enough tests for quickfix end_col and end_lnum
Bram Moolenaar <Bram@vim.org>
parents:
24964
diff
changeset
|
5953 call assert_equal(['Xfile1|10 col 666| aa'] , getline(1 , '$')) |
fd205e78e163
patch 8.2.3025: not enough tests for quickfix end_col and end_lnum
Bram Moolenaar <Bram@vim.org>
parents:
24964
diff
changeset
|
5954 call assert_equal([{'lnum': 10 , 'end_lnum': -123 , 'bufnr': bufnr('Xfile1') , 'col': 666 , 'end_col': -456 , 'pattern': '' , 'valid': 1 , 'vcol': 0 , 'nr': -1 , 'type': '' , 'module': '' , 'text': 'aa'}] , getqflist()) |
fd205e78e163
patch 8.2.3025: not enough tests for quickfix end_col and end_lnum
Bram Moolenaar <Bram@vim.org>
parents:
24964
diff
changeset
|
5955 |
fd205e78e163
patch 8.2.3025: not enough tests for quickfix end_col and end_lnum
Bram Moolenaar <Bram@vim.org>
parents:
24964
diff
changeset
|
5956 call setqflist([{'lnum': 10 , 'end_lnum': -123 , 'bufnr': bufnr('Xfile1') , 'col': 666 , 'end_col': 222 , 'pattern': '' , 'valid': 1 , 'vcol': 0 , 'nr': -1 , 'type': '' , 'module': '' , 'text': 'aa'}] , 'r') |
fd205e78e163
patch 8.2.3025: not enough tests for quickfix end_col and end_lnum
Bram Moolenaar <Bram@vim.org>
parents:
24964
diff
changeset
|
5957 call assert_equal(1 , line('$')) |
fd205e78e163
patch 8.2.3025: not enough tests for quickfix end_col and end_lnum
Bram Moolenaar <Bram@vim.org>
parents:
24964
diff
changeset
|
5958 call assert_equal(['Xfile1|10 col 666-222| aa'] , getline(1 , '$')) |
fd205e78e163
patch 8.2.3025: not enough tests for quickfix end_col and end_lnum
Bram Moolenaar <Bram@vim.org>
parents:
24964
diff
changeset
|
5959 call assert_equal([{'lnum': 10 , 'end_lnum': -123 , 'bufnr': bufnr('Xfile1') , 'col': 666 , 'end_col': 222 , 'pattern': '' , 'valid': 1 , 'vcol': 0 , 'nr': -1 , 'type': '' , 'module': '' , 'text': 'aa'}] , getqflist()) |
fd205e78e163
patch 8.2.3025: not enough tests for quickfix end_col and end_lnum
Bram Moolenaar <Bram@vim.org>
parents:
24964
diff
changeset
|
5960 |
fd205e78e163
patch 8.2.3025: not enough tests for quickfix end_col and end_lnum
Bram Moolenaar <Bram@vim.org>
parents:
24964
diff
changeset
|
5961 call setqflist([{'lnum': 10 , 'end_lnum': 6 , 'bufnr': bufnr('Xfile1') , 'col': 666 , 'end_col': 222 , 'pattern': '' , 'valid': 1 , 'vcol': 0 , 'nr': -1 , 'type': '' , 'module': '' , 'text': 'aa'}] , 'r') |
fd205e78e163
patch 8.2.3025: not enough tests for quickfix end_col and end_lnum
Bram Moolenaar <Bram@vim.org>
parents:
24964
diff
changeset
|
5962 call assert_equal(1 , line('$')) |
fd205e78e163
patch 8.2.3025: not enough tests for quickfix end_col and end_lnum
Bram Moolenaar <Bram@vim.org>
parents:
24964
diff
changeset
|
5963 call assert_equal(['Xfile1|10-6 col 666-222| aa'] , getline(1 , '$')) |
fd205e78e163
patch 8.2.3025: not enough tests for quickfix end_col and end_lnum
Bram Moolenaar <Bram@vim.org>
parents:
24964
diff
changeset
|
5964 call assert_equal([{'lnum': 10 , 'end_lnum': 6 , 'bufnr': bufnr('Xfile1') , 'col': 666 , 'end_col': 222 , 'pattern': '' , 'valid': 1 , 'vcol': 0 , 'nr': -1 , 'type': '' , 'module': '' , 'text': 'aa'}] , getqflist()) |
22870
69b48d2822ec
patch 8.2.1982: quickfix window now updated when adding invalid entries
Bram Moolenaar <Bram@vim.org>
parents:
22788
diff
changeset
|
5965 cclose |
69b48d2822ec
patch 8.2.1982: quickfix window now updated when adding invalid entries
Bram Moolenaar <Bram@vim.org>
parents:
22788
diff
changeset
|
5966 endfunc |
69b48d2822ec
patch 8.2.1982: quickfix window now updated when adding invalid entries
Bram Moolenaar <Bram@vim.org>
parents:
22788
diff
changeset
|
5967 |
22979
fab8455af19c
patch 8.2.2036: buffer messed up if creating the quickfix window fails
Bram Moolenaar <Bram@vim.org>
parents:
22874
diff
changeset
|
5968 " Test for very weird problem: autocommand causes a failure, resulting opening |
fab8455af19c
patch 8.2.2036: buffer messed up if creating the quickfix window fails
Bram Moolenaar <Bram@vim.org>
parents:
22874
diff
changeset
|
5969 " the quickfix window to fail. This still splits the window, but otherwise |
fab8455af19c
patch 8.2.2036: buffer messed up if creating the quickfix window fails
Bram Moolenaar <Bram@vim.org>
parents:
22874
diff
changeset
|
5970 " should not mess up buffers. |
fab8455af19c
patch 8.2.2036: buffer messed up if creating the quickfix window fails
Bram Moolenaar <Bram@vim.org>
parents:
22874
diff
changeset
|
5971 func Test_quickfix_window_fails_to_open() |
fab8455af19c
patch 8.2.2036: buffer messed up if creating the quickfix window fails
Bram Moolenaar <Bram@vim.org>
parents:
22874
diff
changeset
|
5972 CheckScreendump |
fab8455af19c
patch 8.2.2036: buffer messed up if creating the quickfix window fails
Bram Moolenaar <Bram@vim.org>
parents:
22874
diff
changeset
|
5973 |
fab8455af19c
patch 8.2.2036: buffer messed up if creating the quickfix window fails
Bram Moolenaar <Bram@vim.org>
parents:
22874
diff
changeset
|
5974 let lines =<< trim END |
fab8455af19c
patch 8.2.2036: buffer messed up if creating the quickfix window fails
Bram Moolenaar <Bram@vim.org>
parents:
22874
diff
changeset
|
5975 anything |
fab8455af19c
patch 8.2.2036: buffer messed up if creating the quickfix window fails
Bram Moolenaar <Bram@vim.org>
parents:
22874
diff
changeset
|
5976 try |
fab8455af19c
patch 8.2.2036: buffer messed up if creating the quickfix window fails
Bram Moolenaar <Bram@vim.org>
parents:
22874
diff
changeset
|
5977 anything |
fab8455af19c
patch 8.2.2036: buffer messed up if creating the quickfix window fails
Bram Moolenaar <Bram@vim.org>
parents:
22874
diff
changeset
|
5978 endtry |
fab8455af19c
patch 8.2.2036: buffer messed up if creating the quickfix window fails
Bram Moolenaar <Bram@vim.org>
parents:
22874
diff
changeset
|
5979 END |
fab8455af19c
patch 8.2.2036: buffer messed up if creating the quickfix window fails
Bram Moolenaar <Bram@vim.org>
parents:
22874
diff
changeset
|
5980 call writefile(lines, 'XquickfixFails') |
fab8455af19c
patch 8.2.2036: buffer messed up if creating the quickfix window fails
Bram Moolenaar <Bram@vim.org>
parents:
22874
diff
changeset
|
5981 |
fab8455af19c
patch 8.2.2036: buffer messed up if creating the quickfix window fails
Bram Moolenaar <Bram@vim.org>
parents:
22874
diff
changeset
|
5982 let lines =<< trim END |
fab8455af19c
patch 8.2.2036: buffer messed up if creating the quickfix window fails
Bram Moolenaar <Bram@vim.org>
parents:
22874
diff
changeset
|
5983 split XquickfixFails |
fab8455af19c
patch 8.2.2036: buffer messed up if creating the quickfix window fails
Bram Moolenaar <Bram@vim.org>
parents:
22874
diff
changeset
|
5984 silent vimgrep anything % |
fab8455af19c
patch 8.2.2036: buffer messed up if creating the quickfix window fails
Bram Moolenaar <Bram@vim.org>
parents:
22874
diff
changeset
|
5985 normal o |
fab8455af19c
patch 8.2.2036: buffer messed up if creating the quickfix window fails
Bram Moolenaar <Bram@vim.org>
parents:
22874
diff
changeset
|
5986 au BufLeave * ++once source XquickfixFails |
fab8455af19c
patch 8.2.2036: buffer messed up if creating the quickfix window fails
Bram Moolenaar <Bram@vim.org>
parents:
22874
diff
changeset
|
5987 " This will trigger the autocommand, which causes an error, what follows |
fab8455af19c
patch 8.2.2036: buffer messed up if creating the quickfix window fails
Bram Moolenaar <Bram@vim.org>
parents:
22874
diff
changeset
|
5988 " is aborted but the window was already split. |
fab8455af19c
patch 8.2.2036: buffer messed up if creating the quickfix window fails
Bram Moolenaar <Bram@vim.org>
parents:
22874
diff
changeset
|
5989 silent! cwindow |
fab8455af19c
patch 8.2.2036: buffer messed up if creating the quickfix window fails
Bram Moolenaar <Bram@vim.org>
parents:
22874
diff
changeset
|
5990 END |
fab8455af19c
patch 8.2.2036: buffer messed up if creating the quickfix window fails
Bram Moolenaar <Bram@vim.org>
parents:
22874
diff
changeset
|
5991 call writefile(lines, 'XtestWinFails') |
fab8455af19c
patch 8.2.2036: buffer messed up if creating the quickfix window fails
Bram Moolenaar <Bram@vim.org>
parents:
22874
diff
changeset
|
5992 let buf = RunVimInTerminal('-S XtestWinFails', #{rows: 13}) |
fab8455af19c
patch 8.2.2036: buffer messed up if creating the quickfix window fails
Bram Moolenaar <Bram@vim.org>
parents:
22874
diff
changeset
|
5993 call VerifyScreenDump(buf, 'Test_quickfix_window_fails', {}) |
fab8455af19c
patch 8.2.2036: buffer messed up if creating the quickfix window fails
Bram Moolenaar <Bram@vim.org>
parents:
22874
diff
changeset
|
5994 |
fab8455af19c
patch 8.2.2036: buffer messed up if creating the quickfix window fails
Bram Moolenaar <Bram@vim.org>
parents:
22874
diff
changeset
|
5995 " clean up |
fab8455af19c
patch 8.2.2036: buffer messed up if creating the quickfix window fails
Bram Moolenaar <Bram@vim.org>
parents:
22874
diff
changeset
|
5996 call term_sendkeys(buf, ":bwipe!\<CR>") |
fab8455af19c
patch 8.2.2036: buffer messed up if creating the quickfix window fails
Bram Moolenaar <Bram@vim.org>
parents:
22874
diff
changeset
|
5997 call term_wait(buf) |
fab8455af19c
patch 8.2.2036: buffer messed up if creating the quickfix window fails
Bram Moolenaar <Bram@vim.org>
parents:
22874
diff
changeset
|
5998 call StopVimInTerminal(buf) |
fab8455af19c
patch 8.2.2036: buffer messed up if creating the quickfix window fails
Bram Moolenaar <Bram@vim.org>
parents:
22874
diff
changeset
|
5999 call delete('XtestWinFails') |
fab8455af19c
patch 8.2.2036: buffer messed up if creating the quickfix window fails
Bram Moolenaar <Bram@vim.org>
parents:
22874
diff
changeset
|
6000 call delete('XquickfixFails') |
fab8455af19c
patch 8.2.2036: buffer messed up if creating the quickfix window fails
Bram Moolenaar <Bram@vim.org>
parents:
22874
diff
changeset
|
6001 endfunc |
fab8455af19c
patch 8.2.2036: buffer messed up if creating the quickfix window fails
Bram Moolenaar <Bram@vim.org>
parents:
22874
diff
changeset
|
6002 |
23092
c713358da074
patch 8.2.2092: Vim9: unpredictable errors for script tests
Bram Moolenaar <Bram@vim.org>
parents:
23045
diff
changeset
|
6003 " Test for updating the quickfix buffer whenever the associated quickfix list |
23045
450d6e4992e1
patch 8.2.2069: the quickfix window is not updated after setqflist()
Bram Moolenaar <Bram@vim.org>
parents:
22979
diff
changeset
|
6004 " is changed. |
450d6e4992e1
patch 8.2.2069: the quickfix window is not updated after setqflist()
Bram Moolenaar <Bram@vim.org>
parents:
22979
diff
changeset
|
6005 func Xqfbuf_update(cchar) |
450d6e4992e1
patch 8.2.2069: the quickfix window is not updated after setqflist()
Bram Moolenaar <Bram@vim.org>
parents:
22979
diff
changeset
|
6006 call s:setup_commands(a:cchar) |
450d6e4992e1
patch 8.2.2069: the quickfix window is not updated after setqflist()
Bram Moolenaar <Bram@vim.org>
parents:
22979
diff
changeset
|
6007 |
450d6e4992e1
patch 8.2.2069: the quickfix window is not updated after setqflist()
Bram Moolenaar <Bram@vim.org>
parents:
22979
diff
changeset
|
6008 Xexpr "F1:1:line1" |
450d6e4992e1
patch 8.2.2069: the quickfix window is not updated after setqflist()
Bram Moolenaar <Bram@vim.org>
parents:
22979
diff
changeset
|
6009 Xopen |
450d6e4992e1
patch 8.2.2069: the quickfix window is not updated after setqflist()
Bram Moolenaar <Bram@vim.org>
parents:
22979
diff
changeset
|
6010 call assert_equal(['F1|1| line1'], getline(1, '$')) |
450d6e4992e1
patch 8.2.2069: the quickfix window is not updated after setqflist()
Bram Moolenaar <Bram@vim.org>
parents:
22979
diff
changeset
|
6011 call assert_equal(1, g:Xgetlist({'changedtick' : 0}).changedtick) |
450d6e4992e1
patch 8.2.2069: the quickfix window is not updated after setqflist()
Bram Moolenaar <Bram@vim.org>
parents:
22979
diff
changeset
|
6012 |
450d6e4992e1
patch 8.2.2069: the quickfix window is not updated after setqflist()
Bram Moolenaar <Bram@vim.org>
parents:
22979
diff
changeset
|
6013 " Test setqflist() using the 'lines' key in 'what' |
450d6e4992e1
patch 8.2.2069: the quickfix window is not updated after setqflist()
Bram Moolenaar <Bram@vim.org>
parents:
22979
diff
changeset
|
6014 " add a new entry |
450d6e4992e1
patch 8.2.2069: the quickfix window is not updated after setqflist()
Bram Moolenaar <Bram@vim.org>
parents:
22979
diff
changeset
|
6015 call g:Xsetlist([], 'a', {'lines' : ['F2:2: line2']}) |
450d6e4992e1
patch 8.2.2069: the quickfix window is not updated after setqflist()
Bram Moolenaar <Bram@vim.org>
parents:
22979
diff
changeset
|
6016 call assert_equal(['F1|1| line1', 'F2|2| line2'], getline(1, '$')) |
450d6e4992e1
patch 8.2.2069: the quickfix window is not updated after setqflist()
Bram Moolenaar <Bram@vim.org>
parents:
22979
diff
changeset
|
6017 call assert_equal(2, g:Xgetlist({'changedtick' : 0}).changedtick) |
450d6e4992e1
patch 8.2.2069: the quickfix window is not updated after setqflist()
Bram Moolenaar <Bram@vim.org>
parents:
22979
diff
changeset
|
6018 " replace all the entries with a single entry |
450d6e4992e1
patch 8.2.2069: the quickfix window is not updated after setqflist()
Bram Moolenaar <Bram@vim.org>
parents:
22979
diff
changeset
|
6019 call g:Xsetlist([], 'r', {'lines' : ['F3:3: line3']}) |
450d6e4992e1
patch 8.2.2069: the quickfix window is not updated after setqflist()
Bram Moolenaar <Bram@vim.org>
parents:
22979
diff
changeset
|
6020 call assert_equal(['F3|3| line3'], getline(1, '$')) |
450d6e4992e1
patch 8.2.2069: the quickfix window is not updated after setqflist()
Bram Moolenaar <Bram@vim.org>
parents:
22979
diff
changeset
|
6021 call assert_equal(3, g:Xgetlist({'changedtick' : 0}).changedtick) |
450d6e4992e1
patch 8.2.2069: the quickfix window is not updated after setqflist()
Bram Moolenaar <Bram@vim.org>
parents:
22979
diff
changeset
|
6022 " remove all the entries |
450d6e4992e1
patch 8.2.2069: the quickfix window is not updated after setqflist()
Bram Moolenaar <Bram@vim.org>
parents:
22979
diff
changeset
|
6023 call g:Xsetlist([], 'r', {'lines' : []}) |
450d6e4992e1
patch 8.2.2069: the quickfix window is not updated after setqflist()
Bram Moolenaar <Bram@vim.org>
parents:
22979
diff
changeset
|
6024 call assert_equal([''], getline(1, '$')) |
450d6e4992e1
patch 8.2.2069: the quickfix window is not updated after setqflist()
Bram Moolenaar <Bram@vim.org>
parents:
22979
diff
changeset
|
6025 call assert_equal(4, g:Xgetlist({'changedtick' : 0}).changedtick) |
450d6e4992e1
patch 8.2.2069: the quickfix window is not updated after setqflist()
Bram Moolenaar <Bram@vim.org>
parents:
22979
diff
changeset
|
6026 " add a new list |
450d6e4992e1
patch 8.2.2069: the quickfix window is not updated after setqflist()
Bram Moolenaar <Bram@vim.org>
parents:
22979
diff
changeset
|
6027 call g:Xsetlist([], ' ', {'lines' : ['F4:4: line4']}) |
450d6e4992e1
patch 8.2.2069: the quickfix window is not updated after setqflist()
Bram Moolenaar <Bram@vim.org>
parents:
22979
diff
changeset
|
6028 call assert_equal(['F4|4| line4'], getline(1, '$')) |
450d6e4992e1
patch 8.2.2069: the quickfix window is not updated after setqflist()
Bram Moolenaar <Bram@vim.org>
parents:
22979
diff
changeset
|
6029 call assert_equal(1, g:Xgetlist({'changedtick' : 0}).changedtick) |
450d6e4992e1
patch 8.2.2069: the quickfix window is not updated after setqflist()
Bram Moolenaar <Bram@vim.org>
parents:
22979
diff
changeset
|
6030 |
450d6e4992e1
patch 8.2.2069: the quickfix window is not updated after setqflist()
Bram Moolenaar <Bram@vim.org>
parents:
22979
diff
changeset
|
6031 " Test setqflist() using the 'items' key in 'what' |
450d6e4992e1
patch 8.2.2069: the quickfix window is not updated after setqflist()
Bram Moolenaar <Bram@vim.org>
parents:
22979
diff
changeset
|
6032 " add a new entry |
450d6e4992e1
patch 8.2.2069: the quickfix window is not updated after setqflist()
Bram Moolenaar <Bram@vim.org>
parents:
22979
diff
changeset
|
6033 call g:Xsetlist([], 'a', {'items' : [{'filename' : 'F5', 'lnum' : 5, 'text' : 'line5'}]}) |
450d6e4992e1
patch 8.2.2069: the quickfix window is not updated after setqflist()
Bram Moolenaar <Bram@vim.org>
parents:
22979
diff
changeset
|
6034 call assert_equal(['F4|4| line4', 'F5|5| line5'], getline(1, '$')) |
450d6e4992e1
patch 8.2.2069: the quickfix window is not updated after setqflist()
Bram Moolenaar <Bram@vim.org>
parents:
22979
diff
changeset
|
6035 call assert_equal(2, g:Xgetlist({'changedtick' : 0}).changedtick) |
450d6e4992e1
patch 8.2.2069: the quickfix window is not updated after setqflist()
Bram Moolenaar <Bram@vim.org>
parents:
22979
diff
changeset
|
6036 " replace all the entries with a single entry |
450d6e4992e1
patch 8.2.2069: the quickfix window is not updated after setqflist()
Bram Moolenaar <Bram@vim.org>
parents:
22979
diff
changeset
|
6037 call g:Xsetlist([], 'r', {'items' : [{'filename' : 'F6', 'lnum' : 6, 'text' : 'line6'}]}) |
450d6e4992e1
patch 8.2.2069: the quickfix window is not updated after setqflist()
Bram Moolenaar <Bram@vim.org>
parents:
22979
diff
changeset
|
6038 call assert_equal(['F6|6| line6'], getline(1, '$')) |
450d6e4992e1
patch 8.2.2069: the quickfix window is not updated after setqflist()
Bram Moolenaar <Bram@vim.org>
parents:
22979
diff
changeset
|
6039 call assert_equal(3, g:Xgetlist({'changedtick' : 0}).changedtick) |
450d6e4992e1
patch 8.2.2069: the quickfix window is not updated after setqflist()
Bram Moolenaar <Bram@vim.org>
parents:
22979
diff
changeset
|
6040 " remove all the entries |
450d6e4992e1
patch 8.2.2069: the quickfix window is not updated after setqflist()
Bram Moolenaar <Bram@vim.org>
parents:
22979
diff
changeset
|
6041 call g:Xsetlist([], 'r', {'items' : []}) |
450d6e4992e1
patch 8.2.2069: the quickfix window is not updated after setqflist()
Bram Moolenaar <Bram@vim.org>
parents:
22979
diff
changeset
|
6042 call assert_equal([''], getline(1, '$')) |
450d6e4992e1
patch 8.2.2069: the quickfix window is not updated after setqflist()
Bram Moolenaar <Bram@vim.org>
parents:
22979
diff
changeset
|
6043 call assert_equal(4, g:Xgetlist({'changedtick' : 0}).changedtick) |
450d6e4992e1
patch 8.2.2069: the quickfix window is not updated after setqflist()
Bram Moolenaar <Bram@vim.org>
parents:
22979
diff
changeset
|
6044 " add a new list |
450d6e4992e1
patch 8.2.2069: the quickfix window is not updated after setqflist()
Bram Moolenaar <Bram@vim.org>
parents:
22979
diff
changeset
|
6045 call g:Xsetlist([], ' ', {'items' : [{'filename' : 'F7', 'lnum' : 7, 'text' : 'line7'}]}) |
450d6e4992e1
patch 8.2.2069: the quickfix window is not updated after setqflist()
Bram Moolenaar <Bram@vim.org>
parents:
22979
diff
changeset
|
6046 call assert_equal(['F7|7| line7'], getline(1, '$')) |
450d6e4992e1
patch 8.2.2069: the quickfix window is not updated after setqflist()
Bram Moolenaar <Bram@vim.org>
parents:
22979
diff
changeset
|
6047 call assert_equal(1, g:Xgetlist({'changedtick' : 0}).changedtick) |
450d6e4992e1
patch 8.2.2069: the quickfix window is not updated after setqflist()
Bram Moolenaar <Bram@vim.org>
parents:
22979
diff
changeset
|
6048 |
450d6e4992e1
patch 8.2.2069: the quickfix window is not updated after setqflist()
Bram Moolenaar <Bram@vim.org>
parents:
22979
diff
changeset
|
6049 call g:Xsetlist([], ' ', {}) |
450d6e4992e1
patch 8.2.2069: the quickfix window is not updated after setqflist()
Bram Moolenaar <Bram@vim.org>
parents:
22979
diff
changeset
|
6050 call assert_equal([''], getline(1, '$')) |
450d6e4992e1
patch 8.2.2069: the quickfix window is not updated after setqflist()
Bram Moolenaar <Bram@vim.org>
parents:
22979
diff
changeset
|
6051 call assert_equal(1, g:Xgetlist({'changedtick' : 0}).changedtick) |
450d6e4992e1
patch 8.2.2069: the quickfix window is not updated after setqflist()
Bram Moolenaar <Bram@vim.org>
parents:
22979
diff
changeset
|
6052 |
450d6e4992e1
patch 8.2.2069: the quickfix window is not updated after setqflist()
Bram Moolenaar <Bram@vim.org>
parents:
22979
diff
changeset
|
6053 Xclose |
450d6e4992e1
patch 8.2.2069: the quickfix window is not updated after setqflist()
Bram Moolenaar <Bram@vim.org>
parents:
22979
diff
changeset
|
6054 endfunc |
450d6e4992e1
patch 8.2.2069: the quickfix window is not updated after setqflist()
Bram Moolenaar <Bram@vim.org>
parents:
22979
diff
changeset
|
6055 |
450d6e4992e1
patch 8.2.2069: the quickfix window is not updated after setqflist()
Bram Moolenaar <Bram@vim.org>
parents:
22979
diff
changeset
|
6056 func Test_qfbuf_update() |
450d6e4992e1
patch 8.2.2069: the quickfix window is not updated after setqflist()
Bram Moolenaar <Bram@vim.org>
parents:
22979
diff
changeset
|
6057 call Xqfbuf_update('c') |
450d6e4992e1
patch 8.2.2069: the quickfix window is not updated after setqflist()
Bram Moolenaar <Bram@vim.org>
parents:
22979
diff
changeset
|
6058 call Xqfbuf_update('l') |
450d6e4992e1
patch 8.2.2069: the quickfix window is not updated after setqflist()
Bram Moolenaar <Bram@vim.org>
parents:
22979
diff
changeset
|
6059 endfunc |
450d6e4992e1
patch 8.2.2069: the quickfix window is not updated after setqflist()
Bram Moolenaar <Bram@vim.org>
parents:
22979
diff
changeset
|
6060 |
24059
24887299c5ff
patch 8.2.2571: test may leave file behind
Bram Moolenaar <Bram@vim.org>
parents:
23938
diff
changeset
|
6061 func Test_vimgrep_noswapfile() |
24887299c5ff
patch 8.2.2571: test may leave file behind
Bram Moolenaar <Bram@vim.org>
parents:
23938
diff
changeset
|
6062 set noswapfile |
24887299c5ff
patch 8.2.2571: test may leave file behind
Bram Moolenaar <Bram@vim.org>
parents:
23938
diff
changeset
|
6063 call writefile(['one', 'two', 'three'], 'Xgreppie') |
24887299c5ff
patch 8.2.2571: test may leave file behind
Bram Moolenaar <Bram@vim.org>
parents:
23938
diff
changeset
|
6064 vimgrep two Xgreppie |
24887299c5ff
patch 8.2.2571: test may leave file behind
Bram Moolenaar <Bram@vim.org>
parents:
23938
diff
changeset
|
6065 call assert_equal('two', getline('.')) |
24887299c5ff
patch 8.2.2571: test may leave file behind
Bram Moolenaar <Bram@vim.org>
parents:
23938
diff
changeset
|
6066 |
24887299c5ff
patch 8.2.2571: test may leave file behind
Bram Moolenaar <Bram@vim.org>
parents:
23938
diff
changeset
|
6067 call delete('Xgreppie') |
24887299c5ff
patch 8.2.2571: test may leave file behind
Bram Moolenaar <Bram@vim.org>
parents:
23938
diff
changeset
|
6068 set swapfile |
24887299c5ff
patch 8.2.2571: test may leave file behind
Bram Moolenaar <Bram@vim.org>
parents:
23938
diff
changeset
|
6069 endfunc |
24887299c5ff
patch 8.2.2571: test may leave file behind
Bram Moolenaar <Bram@vim.org>
parents:
23938
diff
changeset
|
6070 |
24547
192058cad081
patch 8.2.2813: cannot grep using fuzzy matching
Bram Moolenaar <Bram@vim.org>
parents:
24059
diff
changeset
|
6071 " Test for the :vimgrep 'f' flag (fuzzy match) |
192058cad081
patch 8.2.2813: cannot grep using fuzzy matching
Bram Moolenaar <Bram@vim.org>
parents:
24059
diff
changeset
|
6072 func Xvimgrep_fuzzy_match(cchar) |
192058cad081
patch 8.2.2813: cannot grep using fuzzy matching
Bram Moolenaar <Bram@vim.org>
parents:
24059
diff
changeset
|
6073 call s:setup_commands(a:cchar) |
192058cad081
patch 8.2.2813: cannot grep using fuzzy matching
Bram Moolenaar <Bram@vim.org>
parents:
24059
diff
changeset
|
6074 |
192058cad081
patch 8.2.2813: cannot grep using fuzzy matching
Bram Moolenaar <Bram@vim.org>
parents:
24059
diff
changeset
|
6075 Xvimgrep /three one/f Xfile* |
192058cad081
patch 8.2.2813: cannot grep using fuzzy matching
Bram Moolenaar <Bram@vim.org>
parents:
24059
diff
changeset
|
6076 let l = g:Xgetlist() |
192058cad081
patch 8.2.2813: cannot grep using fuzzy matching
Bram Moolenaar <Bram@vim.org>
parents:
24059
diff
changeset
|
6077 call assert_equal(2, len(l)) |
192058cad081
patch 8.2.2813: cannot grep using fuzzy matching
Bram Moolenaar <Bram@vim.org>
parents:
24059
diff
changeset
|
6078 call assert_equal(['Xfile1', 1, 9, 'one two three'], |
192058cad081
patch 8.2.2813: cannot grep using fuzzy matching
Bram Moolenaar <Bram@vim.org>
parents:
24059
diff
changeset
|
6079 \ [bufname(l[0].bufnr), l[0].lnum, l[0].col, l[0].text]) |
192058cad081
patch 8.2.2813: cannot grep using fuzzy matching
Bram Moolenaar <Bram@vim.org>
parents:
24059
diff
changeset
|
6080 call assert_equal(['Xfile2', 2, 1, 'three one two'], |
192058cad081
patch 8.2.2813: cannot grep using fuzzy matching
Bram Moolenaar <Bram@vim.org>
parents:
24059
diff
changeset
|
6081 \ [bufname(l[1].bufnr), l[1].lnum, l[1].col, l[1].text]) |
192058cad081
patch 8.2.2813: cannot grep using fuzzy matching
Bram Moolenaar <Bram@vim.org>
parents:
24059
diff
changeset
|
6082 |
192058cad081
patch 8.2.2813: cannot grep using fuzzy matching
Bram Moolenaar <Bram@vim.org>
parents:
24059
diff
changeset
|
6083 Xvimgrep /the/f Xfile* |
192058cad081
patch 8.2.2813: cannot grep using fuzzy matching
Bram Moolenaar <Bram@vim.org>
parents:
24059
diff
changeset
|
6084 let l = g:Xgetlist() |
192058cad081
patch 8.2.2813: cannot grep using fuzzy matching
Bram Moolenaar <Bram@vim.org>
parents:
24059
diff
changeset
|
6085 call assert_equal(3, len(l)) |
192058cad081
patch 8.2.2813: cannot grep using fuzzy matching
Bram Moolenaar <Bram@vim.org>
parents:
24059
diff
changeset
|
6086 call assert_equal(['Xfile1', 1, 9, 'one two three'], |
192058cad081
patch 8.2.2813: cannot grep using fuzzy matching
Bram Moolenaar <Bram@vim.org>
parents:
24059
diff
changeset
|
6087 \ [bufname(l[0].bufnr), l[0].lnum, l[0].col, l[0].text]) |
192058cad081
patch 8.2.2813: cannot grep using fuzzy matching
Bram Moolenaar <Bram@vim.org>
parents:
24059
diff
changeset
|
6088 call assert_equal(['Xfile2', 2, 1, 'three one two'], |
192058cad081
patch 8.2.2813: cannot grep using fuzzy matching
Bram Moolenaar <Bram@vim.org>
parents:
24059
diff
changeset
|
6089 \ [bufname(l[1].bufnr), l[1].lnum, l[1].col, l[1].text]) |
192058cad081
patch 8.2.2813: cannot grep using fuzzy matching
Bram Moolenaar <Bram@vim.org>
parents:
24059
diff
changeset
|
6090 call assert_equal(['Xfile2', 4, 4, 'aaathreeaaa'], |
192058cad081
patch 8.2.2813: cannot grep using fuzzy matching
Bram Moolenaar <Bram@vim.org>
parents:
24059
diff
changeset
|
6091 \ [bufname(l[2].bufnr), l[2].lnum, l[2].col, l[2].text]) |
192058cad081
patch 8.2.2813: cannot grep using fuzzy matching
Bram Moolenaar <Bram@vim.org>
parents:
24059
diff
changeset
|
6092 |
192058cad081
patch 8.2.2813: cannot grep using fuzzy matching
Bram Moolenaar <Bram@vim.org>
parents:
24059
diff
changeset
|
6093 Xvimgrep /aaa/fg Xfile* |
192058cad081
patch 8.2.2813: cannot grep using fuzzy matching
Bram Moolenaar <Bram@vim.org>
parents:
24059
diff
changeset
|
6094 let l = g:Xgetlist() |
192058cad081
patch 8.2.2813: cannot grep using fuzzy matching
Bram Moolenaar <Bram@vim.org>
parents:
24059
diff
changeset
|
6095 call assert_equal(4, len(l)) |
192058cad081
patch 8.2.2813: cannot grep using fuzzy matching
Bram Moolenaar <Bram@vim.org>
parents:
24059
diff
changeset
|
6096 call assert_equal(['Xfile1', 2, 1, 'aaaaaa'], |
192058cad081
patch 8.2.2813: cannot grep using fuzzy matching
Bram Moolenaar <Bram@vim.org>
parents:
24059
diff
changeset
|
6097 \ [bufname(l[0].bufnr), l[0].lnum, l[0].col, l[0].text]) |
192058cad081
patch 8.2.2813: cannot grep using fuzzy matching
Bram Moolenaar <Bram@vim.org>
parents:
24059
diff
changeset
|
6098 call assert_equal(['Xfile1', 2, 4, 'aaaaaa'], |
192058cad081
patch 8.2.2813: cannot grep using fuzzy matching
Bram Moolenaar <Bram@vim.org>
parents:
24059
diff
changeset
|
6099 \ [bufname(l[1].bufnr), l[1].lnum, l[1].col, l[1].text]) |
192058cad081
patch 8.2.2813: cannot grep using fuzzy matching
Bram Moolenaar <Bram@vim.org>
parents:
24059
diff
changeset
|
6100 call assert_equal(['Xfile2', 4, 1, 'aaathreeaaa'], |
192058cad081
patch 8.2.2813: cannot grep using fuzzy matching
Bram Moolenaar <Bram@vim.org>
parents:
24059
diff
changeset
|
6101 \ [bufname(l[2].bufnr), l[2].lnum, l[2].col, l[2].text]) |
192058cad081
patch 8.2.2813: cannot grep using fuzzy matching
Bram Moolenaar <Bram@vim.org>
parents:
24059
diff
changeset
|
6102 call assert_equal(['Xfile2', 4, 9, 'aaathreeaaa'], |
192058cad081
patch 8.2.2813: cannot grep using fuzzy matching
Bram Moolenaar <Bram@vim.org>
parents:
24059
diff
changeset
|
6103 \ [bufname(l[3].bufnr), l[3].lnum, l[3].col, l[3].text]) |
192058cad081
patch 8.2.2813: cannot grep using fuzzy matching
Bram Moolenaar <Bram@vim.org>
parents:
24059
diff
changeset
|
6104 |
192058cad081
patch 8.2.2813: cannot grep using fuzzy matching
Bram Moolenaar <Bram@vim.org>
parents:
24059
diff
changeset
|
6105 call assert_fails('Xvimgrep /xyz/fg Xfile*', 'E480:') |
192058cad081
patch 8.2.2813: cannot grep using fuzzy matching
Bram Moolenaar <Bram@vim.org>
parents:
24059
diff
changeset
|
6106 endfunc |
192058cad081
patch 8.2.2813: cannot grep using fuzzy matching
Bram Moolenaar <Bram@vim.org>
parents:
24059
diff
changeset
|
6107 |
192058cad081
patch 8.2.2813: cannot grep using fuzzy matching
Bram Moolenaar <Bram@vim.org>
parents:
24059
diff
changeset
|
6108 func Test_vimgrep_fuzzy_match() |
192058cad081
patch 8.2.2813: cannot grep using fuzzy matching
Bram Moolenaar <Bram@vim.org>
parents:
24059
diff
changeset
|
6109 call writefile(['one two three', 'aaaaaa'], 'Xfile1') |
192058cad081
patch 8.2.2813: cannot grep using fuzzy matching
Bram Moolenaar <Bram@vim.org>
parents:
24059
diff
changeset
|
6110 call writefile(['one', 'three one two', 'two', 'aaathreeaaa'], 'Xfile2') |
192058cad081
patch 8.2.2813: cannot grep using fuzzy matching
Bram Moolenaar <Bram@vim.org>
parents:
24059
diff
changeset
|
6111 call Xvimgrep_fuzzy_match('c') |
192058cad081
patch 8.2.2813: cannot grep using fuzzy matching
Bram Moolenaar <Bram@vim.org>
parents:
24059
diff
changeset
|
6112 call Xvimgrep_fuzzy_match('l') |
192058cad081
patch 8.2.2813: cannot grep using fuzzy matching
Bram Moolenaar <Bram@vim.org>
parents:
24059
diff
changeset
|
6113 call delete('Xfile1') |
192058cad081
patch 8.2.2813: cannot grep using fuzzy matching
Bram Moolenaar <Bram@vim.org>
parents:
24059
diff
changeset
|
6114 call delete('Xfile2') |
192058cad081
patch 8.2.2813: cannot grep using fuzzy matching
Bram Moolenaar <Bram@vim.org>
parents:
24059
diff
changeset
|
6115 endfunc |
192058cad081
patch 8.2.2813: cannot grep using fuzzy matching
Bram Moolenaar <Bram@vim.org>
parents:
24059
diff
changeset
|
6116 |
25254
5127844b909b
patch 8.2.3163: location list window may open a wrong file
Bram Moolenaar <Bram@vim.org>
parents:
24976
diff
changeset
|
6117 func Test_locationlist_open_in_newtab() |
5127844b909b
patch 8.2.3163: location list window may open a wrong file
Bram Moolenaar <Bram@vim.org>
parents:
24976
diff
changeset
|
6118 call s:create_test_file('Xqftestfile1') |
5127844b909b
patch 8.2.3163: location list window may open a wrong file
Bram Moolenaar <Bram@vim.org>
parents:
24976
diff
changeset
|
6119 call s:create_test_file('Xqftestfile2') |
5127844b909b
patch 8.2.3163: location list window may open a wrong file
Bram Moolenaar <Bram@vim.org>
parents:
24976
diff
changeset
|
6120 call s:create_test_file('Xqftestfile3') |
5127844b909b
patch 8.2.3163: location list window may open a wrong file
Bram Moolenaar <Bram@vim.org>
parents:
24976
diff
changeset
|
6121 |
5127844b909b
patch 8.2.3163: location list window may open a wrong file
Bram Moolenaar <Bram@vim.org>
parents:
24976
diff
changeset
|
6122 %bwipe! |
5127844b909b
patch 8.2.3163: location list window may open a wrong file
Bram Moolenaar <Bram@vim.org>
parents:
24976
diff
changeset
|
6123 |
28421
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
6124 let lines =<< trim END |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
6125 Xqftestfile1:5:Line5 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
6126 Xqftestfile2:10:Line10 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
6127 Xqftestfile3:16:Line16 |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
6128 END |
0e4097e7a714
patch 8.2.4735: quickfix tests can be a bit hard to read
Bram Moolenaar <Bram@vim.org>
parents:
28183
diff
changeset
|
6129 lgetexpr lines |
25254
5127844b909b
patch 8.2.3163: location list window may open a wrong file
Bram Moolenaar <Bram@vim.org>
parents:
24976
diff
changeset
|
6130 |
5127844b909b
patch 8.2.3163: location list window may open a wrong file
Bram Moolenaar <Bram@vim.org>
parents:
24976
diff
changeset
|
6131 silent! llast |
5127844b909b
patch 8.2.3163: location list window may open a wrong file
Bram Moolenaar <Bram@vim.org>
parents:
24976
diff
changeset
|
6132 call assert_equal(1, tabpagenr('$')) |
5127844b909b
patch 8.2.3163: location list window may open a wrong file
Bram Moolenaar <Bram@vim.org>
parents:
24976
diff
changeset
|
6133 call assert_equal('Xqftestfile3', bufname()) |
5127844b909b
patch 8.2.3163: location list window may open a wrong file
Bram Moolenaar <Bram@vim.org>
parents:
24976
diff
changeset
|
6134 |
5127844b909b
patch 8.2.3163: location list window may open a wrong file
Bram Moolenaar <Bram@vim.org>
parents:
24976
diff
changeset
|
6135 set switchbuf=newtab |
5127844b909b
patch 8.2.3163: location list window may open a wrong file
Bram Moolenaar <Bram@vim.org>
parents:
24976
diff
changeset
|
6136 |
5127844b909b
patch 8.2.3163: location list window may open a wrong file
Bram Moolenaar <Bram@vim.org>
parents:
24976
diff
changeset
|
6137 silent! lfirst |
5127844b909b
patch 8.2.3163: location list window may open a wrong file
Bram Moolenaar <Bram@vim.org>
parents:
24976
diff
changeset
|
6138 call assert_equal(2, tabpagenr('$')) |
5127844b909b
patch 8.2.3163: location list window may open a wrong file
Bram Moolenaar <Bram@vim.org>
parents:
24976
diff
changeset
|
6139 call assert_equal('Xqftestfile1', bufname()) |
5127844b909b
patch 8.2.3163: location list window may open a wrong file
Bram Moolenaar <Bram@vim.org>
parents:
24976
diff
changeset
|
6140 |
5127844b909b
patch 8.2.3163: location list window may open a wrong file
Bram Moolenaar <Bram@vim.org>
parents:
24976
diff
changeset
|
6141 silent! lnext |
5127844b909b
patch 8.2.3163: location list window may open a wrong file
Bram Moolenaar <Bram@vim.org>
parents:
24976
diff
changeset
|
6142 call assert_equal(3, tabpagenr('$')) |
5127844b909b
patch 8.2.3163: location list window may open a wrong file
Bram Moolenaar <Bram@vim.org>
parents:
24976
diff
changeset
|
6143 call assert_equal('Xqftestfile2', bufname()) |
5127844b909b
patch 8.2.3163: location list window may open a wrong file
Bram Moolenaar <Bram@vim.org>
parents:
24976
diff
changeset
|
6144 |
5127844b909b
patch 8.2.3163: location list window may open a wrong file
Bram Moolenaar <Bram@vim.org>
parents:
24976
diff
changeset
|
6145 call delete('Xqftestfile1') |
5127844b909b
patch 8.2.3163: location list window may open a wrong file
Bram Moolenaar <Bram@vim.org>
parents:
24976
diff
changeset
|
6146 call delete('Xqftestfile2') |
5127844b909b
patch 8.2.3163: location list window may open a wrong file
Bram Moolenaar <Bram@vim.org>
parents:
24976
diff
changeset
|
6147 call delete('Xqftestfile3') |
5127844b909b
patch 8.2.3163: location list window may open a wrong file
Bram Moolenaar <Bram@vim.org>
parents:
24976
diff
changeset
|
6148 set switchbuf&vim |
5127844b909b
patch 8.2.3163: location list window may open a wrong file
Bram Moolenaar <Bram@vim.org>
parents:
24976
diff
changeset
|
6149 |
5127844b909b
patch 8.2.3163: location list window may open a wrong file
Bram Moolenaar <Bram@vim.org>
parents:
24976
diff
changeset
|
6150 %bwipe! |
5127844b909b
patch 8.2.3163: location list window may open a wrong file
Bram Moolenaar <Bram@vim.org>
parents:
24976
diff
changeset
|
6151 endfunc |
5127844b909b
patch 8.2.3163: location list window may open a wrong file
Bram Moolenaar <Bram@vim.org>
parents:
24976
diff
changeset
|
6152 |
25435
6ad76124ddda
patch 8.2.3254: win_gettype() does not recognize a quickfix window
Bram Moolenaar <Bram@vim.org>
parents:
25254
diff
changeset
|
6153 " Test for win_gettype() in quickfix and location list windows |
6ad76124ddda
patch 8.2.3254: win_gettype() does not recognize a quickfix window
Bram Moolenaar <Bram@vim.org>
parents:
25254
diff
changeset
|
6154 func Test_win_gettype() |
6ad76124ddda
patch 8.2.3254: win_gettype() does not recognize a quickfix window
Bram Moolenaar <Bram@vim.org>
parents:
25254
diff
changeset
|
6155 copen |
6ad76124ddda
patch 8.2.3254: win_gettype() does not recognize a quickfix window
Bram Moolenaar <Bram@vim.org>
parents:
25254
diff
changeset
|
6156 call assert_equal("quickfix", win_gettype()) |
6ad76124ddda
patch 8.2.3254: win_gettype() does not recognize a quickfix window
Bram Moolenaar <Bram@vim.org>
parents:
25254
diff
changeset
|
6157 let wid = win_getid() |
6ad76124ddda
patch 8.2.3254: win_gettype() does not recognize a quickfix window
Bram Moolenaar <Bram@vim.org>
parents:
25254
diff
changeset
|
6158 wincmd p |
6ad76124ddda
patch 8.2.3254: win_gettype() does not recognize a quickfix window
Bram Moolenaar <Bram@vim.org>
parents:
25254
diff
changeset
|
6159 call assert_equal("quickfix", win_gettype(wid)) |
6ad76124ddda
patch 8.2.3254: win_gettype() does not recognize a quickfix window
Bram Moolenaar <Bram@vim.org>
parents:
25254
diff
changeset
|
6160 cclose |
6ad76124ddda
patch 8.2.3254: win_gettype() does not recognize a quickfix window
Bram Moolenaar <Bram@vim.org>
parents:
25254
diff
changeset
|
6161 lexpr '' |
6ad76124ddda
patch 8.2.3254: win_gettype() does not recognize a quickfix window
Bram Moolenaar <Bram@vim.org>
parents:
25254
diff
changeset
|
6162 lopen |
6ad76124ddda
patch 8.2.3254: win_gettype() does not recognize a quickfix window
Bram Moolenaar <Bram@vim.org>
parents:
25254
diff
changeset
|
6163 call assert_equal("loclist", win_gettype()) |
6ad76124ddda
patch 8.2.3254: win_gettype() does not recognize a quickfix window
Bram Moolenaar <Bram@vim.org>
parents:
25254
diff
changeset
|
6164 let wid = win_getid() |
6ad76124ddda
patch 8.2.3254: win_gettype() does not recognize a quickfix window
Bram Moolenaar <Bram@vim.org>
parents:
25254
diff
changeset
|
6165 wincmd p |
6ad76124ddda
patch 8.2.3254: win_gettype() does not recognize a quickfix window
Bram Moolenaar <Bram@vim.org>
parents:
25254
diff
changeset
|
6166 call assert_equal("loclist", win_gettype(wid)) |
6ad76124ddda
patch 8.2.3254: win_gettype() does not recognize a quickfix window
Bram Moolenaar <Bram@vim.org>
parents:
25254
diff
changeset
|
6167 lclose |
6ad76124ddda
patch 8.2.3254: win_gettype() does not recognize a quickfix window
Bram Moolenaar <Bram@vim.org>
parents:
25254
diff
changeset
|
6168 endfunc |
6ad76124ddda
patch 8.2.3254: win_gettype() does not recognize a quickfix window
Bram Moolenaar <Bram@vim.org>
parents:
25254
diff
changeset
|
6169 |
26364
baf0d27eb024
patch 8.2.3713: MS-Windows: no error if vimgrep pattern is not matching
Bram Moolenaar <Bram@vim.org>
parents:
26211
diff
changeset
|
6170 fun Test_vimgrep_nomatch() |
baf0d27eb024
patch 8.2.3713: MS-Windows: no error if vimgrep pattern is not matching
Bram Moolenaar <Bram@vim.org>
parents:
26211
diff
changeset
|
6171 call XexprTests('c') |
baf0d27eb024
patch 8.2.3713: MS-Windows: no error if vimgrep pattern is not matching
Bram Moolenaar <Bram@vim.org>
parents:
26211
diff
changeset
|
6172 call g:Xsetlist([{'lnum':10,'text':'Line1'}]) |
baf0d27eb024
patch 8.2.3713: MS-Windows: no error if vimgrep pattern is not matching
Bram Moolenaar <Bram@vim.org>
parents:
26211
diff
changeset
|
6173 copen |
baf0d27eb024
patch 8.2.3713: MS-Windows: no error if vimgrep pattern is not matching
Bram Moolenaar <Bram@vim.org>
parents:
26211
diff
changeset
|
6174 if has("win32") |
baf0d27eb024
patch 8.2.3713: MS-Windows: no error if vimgrep pattern is not matching
Bram Moolenaar <Bram@vim.org>
parents:
26211
diff
changeset
|
6175 call assert_fails('vimgrep foo *.zzz', 'E479:') |
baf0d27eb024
patch 8.2.3713: MS-Windows: no error if vimgrep pattern is not matching
Bram Moolenaar <Bram@vim.org>
parents:
26211
diff
changeset
|
6176 let expected = [{'lnum': 10, 'bufnr': 0, 'end_lnum': 0, 'pattern': '', 'valid': 0, 'vcol': 0, 'nr': 0, 'module': '', 'type': '', 'end_col': 0, 'col': 0, 'text': 'Line1'}] |
baf0d27eb024
patch 8.2.3713: MS-Windows: no error if vimgrep pattern is not matching
Bram Moolenaar <Bram@vim.org>
parents:
26211
diff
changeset
|
6177 else |
baf0d27eb024
patch 8.2.3713: MS-Windows: no error if vimgrep pattern is not matching
Bram Moolenaar <Bram@vim.org>
parents:
26211
diff
changeset
|
6178 call assert_fails('vimgrep foo *.zzz', 'E480:') |
baf0d27eb024
patch 8.2.3713: MS-Windows: no error if vimgrep pattern is not matching
Bram Moolenaar <Bram@vim.org>
parents:
26211
diff
changeset
|
6179 let expected = [] |
baf0d27eb024
patch 8.2.3713: MS-Windows: no error if vimgrep pattern is not matching
Bram Moolenaar <Bram@vim.org>
parents:
26211
diff
changeset
|
6180 endif |
baf0d27eb024
patch 8.2.3713: MS-Windows: no error if vimgrep pattern is not matching
Bram Moolenaar <Bram@vim.org>
parents:
26211
diff
changeset
|
6181 call assert_equal(expected, getqflist()) |
baf0d27eb024
patch 8.2.3713: MS-Windows: no error if vimgrep pattern is not matching
Bram Moolenaar <Bram@vim.org>
parents:
26211
diff
changeset
|
6182 cclose |
baf0d27eb024
patch 8.2.3713: MS-Windows: no error if vimgrep pattern is not matching
Bram Moolenaar <Bram@vim.org>
parents:
26211
diff
changeset
|
6183 endfunc |
baf0d27eb024
patch 8.2.3713: MS-Windows: no error if vimgrep pattern is not matching
Bram Moolenaar <Bram@vim.org>
parents:
26211
diff
changeset
|
6184 |
26458
824fe105f5b9
patch 8.2.3759: quickfix buffer becomes hidden while still in a window
Bram Moolenaar <Bram@vim.org>
parents:
26364
diff
changeset
|
6185 " Test for opening the quickfix window in two tab pages and then closing one |
824fe105f5b9
patch 8.2.3759: quickfix buffer becomes hidden while still in a window
Bram Moolenaar <Bram@vim.org>
parents:
26364
diff
changeset
|
6186 " of the quickfix windows. This should not make the quickfix buffer unlisted. |
824fe105f5b9
patch 8.2.3759: quickfix buffer becomes hidden while still in a window
Bram Moolenaar <Bram@vim.org>
parents:
26364
diff
changeset
|
6187 " (github issue #9300). |
824fe105f5b9
patch 8.2.3759: quickfix buffer becomes hidden while still in a window
Bram Moolenaar <Bram@vim.org>
parents:
26364
diff
changeset
|
6188 func Test_two_qf_windows() |
824fe105f5b9
patch 8.2.3759: quickfix buffer becomes hidden while still in a window
Bram Moolenaar <Bram@vim.org>
parents:
26364
diff
changeset
|
6189 cexpr "F1:1:line1" |
824fe105f5b9
patch 8.2.3759: quickfix buffer becomes hidden while still in a window
Bram Moolenaar <Bram@vim.org>
parents:
26364
diff
changeset
|
6190 copen |
824fe105f5b9
patch 8.2.3759: quickfix buffer becomes hidden while still in a window
Bram Moolenaar <Bram@vim.org>
parents:
26364
diff
changeset
|
6191 tabnew |
824fe105f5b9
patch 8.2.3759: quickfix buffer becomes hidden while still in a window
Bram Moolenaar <Bram@vim.org>
parents:
26364
diff
changeset
|
6192 copen |
824fe105f5b9
patch 8.2.3759: quickfix buffer becomes hidden while still in a window
Bram Moolenaar <Bram@vim.org>
parents:
26364
diff
changeset
|
6193 call assert_true(&buflisted) |
824fe105f5b9
patch 8.2.3759: quickfix buffer becomes hidden while still in a window
Bram Moolenaar <Bram@vim.org>
parents:
26364
diff
changeset
|
6194 cclose |
824fe105f5b9
patch 8.2.3759: quickfix buffer becomes hidden while still in a window
Bram Moolenaar <Bram@vim.org>
parents:
26364
diff
changeset
|
6195 tabfirst |
824fe105f5b9
patch 8.2.3759: quickfix buffer becomes hidden while still in a window
Bram Moolenaar <Bram@vim.org>
parents:
26364
diff
changeset
|
6196 call assert_true(&buflisted) |
824fe105f5b9
patch 8.2.3759: quickfix buffer becomes hidden while still in a window
Bram Moolenaar <Bram@vim.org>
parents:
26364
diff
changeset
|
6197 let bnum = bufnr() |
824fe105f5b9
patch 8.2.3759: quickfix buffer becomes hidden while still in a window
Bram Moolenaar <Bram@vim.org>
parents:
26364
diff
changeset
|
6198 cclose |
824fe105f5b9
patch 8.2.3759: quickfix buffer becomes hidden while still in a window
Bram Moolenaar <Bram@vim.org>
parents:
26364
diff
changeset
|
6199 " if all the quickfix windows are closed, then buffer should be unlisted. |
824fe105f5b9
patch 8.2.3759: quickfix buffer becomes hidden while still in a window
Bram Moolenaar <Bram@vim.org>
parents:
26364
diff
changeset
|
6200 call assert_false(buflisted(bnum)) |
824fe105f5b9
patch 8.2.3759: quickfix buffer becomes hidden while still in a window
Bram Moolenaar <Bram@vim.org>
parents:
26364
diff
changeset
|
6201 %bw! |
824fe105f5b9
patch 8.2.3759: quickfix buffer becomes hidden while still in a window
Bram Moolenaar <Bram@vim.org>
parents:
26364
diff
changeset
|
6202 |
824fe105f5b9
patch 8.2.3759: quickfix buffer becomes hidden while still in a window
Bram Moolenaar <Bram@vim.org>
parents:
26364
diff
changeset
|
6203 " Repeat the test for a location list |
824fe105f5b9
patch 8.2.3759: quickfix buffer becomes hidden while still in a window
Bram Moolenaar <Bram@vim.org>
parents:
26364
diff
changeset
|
6204 lexpr "F2:2:line2" |
824fe105f5b9
patch 8.2.3759: quickfix buffer becomes hidden while still in a window
Bram Moolenaar <Bram@vim.org>
parents:
26364
diff
changeset
|
6205 lopen |
824fe105f5b9
patch 8.2.3759: quickfix buffer becomes hidden while still in a window
Bram Moolenaar <Bram@vim.org>
parents:
26364
diff
changeset
|
6206 let bnum = bufnr() |
824fe105f5b9
patch 8.2.3759: quickfix buffer becomes hidden while still in a window
Bram Moolenaar <Bram@vim.org>
parents:
26364
diff
changeset
|
6207 tabnew |
824fe105f5b9
patch 8.2.3759: quickfix buffer becomes hidden while still in a window
Bram Moolenaar <Bram@vim.org>
parents:
26364
diff
changeset
|
6208 exe "buffer" bnum |
824fe105f5b9
patch 8.2.3759: quickfix buffer becomes hidden while still in a window
Bram Moolenaar <Bram@vim.org>
parents:
26364
diff
changeset
|
6209 tabfirst |
824fe105f5b9
patch 8.2.3759: quickfix buffer becomes hidden while still in a window
Bram Moolenaar <Bram@vim.org>
parents:
26364
diff
changeset
|
6210 lclose |
824fe105f5b9
patch 8.2.3759: quickfix buffer becomes hidden while still in a window
Bram Moolenaar <Bram@vim.org>
parents:
26364
diff
changeset
|
6211 tablast |
824fe105f5b9
patch 8.2.3759: quickfix buffer becomes hidden while still in a window
Bram Moolenaar <Bram@vim.org>
parents:
26364
diff
changeset
|
6212 call assert_true(buflisted(bnum)) |
824fe105f5b9
patch 8.2.3759: quickfix buffer becomes hidden while still in a window
Bram Moolenaar <Bram@vim.org>
parents:
26364
diff
changeset
|
6213 tabclose |
824fe105f5b9
patch 8.2.3759: quickfix buffer becomes hidden while still in a window
Bram Moolenaar <Bram@vim.org>
parents:
26364
diff
changeset
|
6214 lopen |
824fe105f5b9
patch 8.2.3759: quickfix buffer becomes hidden while still in a window
Bram Moolenaar <Bram@vim.org>
parents:
26364
diff
changeset
|
6215 call assert_true(buflisted(bnum)) |
824fe105f5b9
patch 8.2.3759: quickfix buffer becomes hidden while still in a window
Bram Moolenaar <Bram@vim.org>
parents:
26364
diff
changeset
|
6216 lclose |
824fe105f5b9
patch 8.2.3759: quickfix buffer becomes hidden while still in a window
Bram Moolenaar <Bram@vim.org>
parents:
26364
diff
changeset
|
6217 call assert_false(buflisted(bnum)) |
824fe105f5b9
patch 8.2.3759: quickfix buffer becomes hidden while still in a window
Bram Moolenaar <Bram@vim.org>
parents:
26364
diff
changeset
|
6218 %bw! |
824fe105f5b9
patch 8.2.3759: quickfix buffer becomes hidden while still in a window
Bram Moolenaar <Bram@vim.org>
parents:
26364
diff
changeset
|
6219 endfunc |
824fe105f5b9
patch 8.2.3759: quickfix buffer becomes hidden while still in a window
Bram Moolenaar <Bram@vim.org>
parents:
26364
diff
changeset
|
6220 |
27507
b8a5de86e9d1
patch 8.2.4281: using freed memory with :lopen and :bwipe
Bram Moolenaar <Bram@vim.org>
parents:
27457
diff
changeset
|
6221 " Weird sequence of commands that caused entering a wiped-out buffer |
b8a5de86e9d1
patch 8.2.4281: using freed memory with :lopen and :bwipe
Bram Moolenaar <Bram@vim.org>
parents:
27457
diff
changeset
|
6222 func Test_lopen_bwipe() |
b8a5de86e9d1
patch 8.2.4281: using freed memory with :lopen and :bwipe
Bram Moolenaar <Bram@vim.org>
parents:
27457
diff
changeset
|
6223 func R() |
b8a5de86e9d1
patch 8.2.4281: using freed memory with :lopen and :bwipe
Bram Moolenaar <Bram@vim.org>
parents:
27457
diff
changeset
|
6224 silent! tab lopen |
b8a5de86e9d1
patch 8.2.4281: using freed memory with :lopen and :bwipe
Bram Moolenaar <Bram@vim.org>
parents:
27457
diff
changeset
|
6225 e x |
b8a5de86e9d1
patch 8.2.4281: using freed memory with :lopen and :bwipe
Bram Moolenaar <Bram@vim.org>
parents:
27457
diff
changeset
|
6226 silent! lfile |
b8a5de86e9d1
patch 8.2.4281: using freed memory with :lopen and :bwipe
Bram Moolenaar <Bram@vim.org>
parents:
27457
diff
changeset
|
6227 endfunc |
b8a5de86e9d1
patch 8.2.4281: using freed memory with :lopen and :bwipe
Bram Moolenaar <Bram@vim.org>
parents:
27457
diff
changeset
|
6228 |
b8a5de86e9d1
patch 8.2.4281: using freed memory with :lopen and :bwipe
Bram Moolenaar <Bram@vim.org>
parents:
27457
diff
changeset
|
6229 cal R() |
b8a5de86e9d1
patch 8.2.4281: using freed memory with :lopen and :bwipe
Bram Moolenaar <Bram@vim.org>
parents:
27457
diff
changeset
|
6230 cal R() |
b8a5de86e9d1
patch 8.2.4281: using freed memory with :lopen and :bwipe
Bram Moolenaar <Bram@vim.org>
parents:
27457
diff
changeset
|
6231 cal R() |
b8a5de86e9d1
patch 8.2.4281: using freed memory with :lopen and :bwipe
Bram Moolenaar <Bram@vim.org>
parents:
27457
diff
changeset
|
6232 bw! |
b8a5de86e9d1
patch 8.2.4281: using freed memory with :lopen and :bwipe
Bram Moolenaar <Bram@vim.org>
parents:
27457
diff
changeset
|
6233 delfunc R |
b8a5de86e9d1
patch 8.2.4281: using freed memory with :lopen and :bwipe
Bram Moolenaar <Bram@vim.org>
parents:
27457
diff
changeset
|
6234 endfunc |
b8a5de86e9d1
patch 8.2.4281: using freed memory with :lopen and :bwipe
Bram Moolenaar <Bram@vim.org>
parents:
27457
diff
changeset
|
6235 |
27601
cb46dd386990
patch 8.2.4327: may end up with no current buffer
Bram Moolenaar <Bram@vim.org>
parents:
27507
diff
changeset
|
6236 " Another sequence of commands that caused all buffers to be wiped out |
cb46dd386990
patch 8.2.4327: may end up with no current buffer
Bram Moolenaar <Bram@vim.org>
parents:
27507
diff
changeset
|
6237 func Test_lopen_bwipe_all() |
cb46dd386990
patch 8.2.4327: may end up with no current buffer
Bram Moolenaar <Bram@vim.org>
parents:
27507
diff
changeset
|
6238 let lines =<< trim END |
cb46dd386990
patch 8.2.4327: may end up with no current buffer
Bram Moolenaar <Bram@vim.org>
parents:
27507
diff
changeset
|
6239 func R() |
cb46dd386990
patch 8.2.4327: may end up with no current buffer
Bram Moolenaar <Bram@vim.org>
parents:
27507
diff
changeset
|
6240 silent! tab lopen |
cb46dd386990
patch 8.2.4327: may end up with no current buffer
Bram Moolenaar <Bram@vim.org>
parents:
27507
diff
changeset
|
6241 e foo |
cb46dd386990
patch 8.2.4327: may end up with no current buffer
Bram Moolenaar <Bram@vim.org>
parents:
27507
diff
changeset
|
6242 silent! lfile |
cb46dd386990
patch 8.2.4327: may end up with no current buffer
Bram Moolenaar <Bram@vim.org>
parents:
27507
diff
changeset
|
6243 endfunc |
cb46dd386990
patch 8.2.4327: may end up with no current buffer
Bram Moolenaar <Bram@vim.org>
parents:
27507
diff
changeset
|
6244 cal R() |
cb46dd386990
patch 8.2.4327: may end up with no current buffer
Bram Moolenaar <Bram@vim.org>
parents:
27507
diff
changeset
|
6245 exe "norm \<C-W>\<C-V>0" |
cb46dd386990
patch 8.2.4327: may end up with no current buffer
Bram Moolenaar <Bram@vim.org>
parents:
27507
diff
changeset
|
6246 cal R() |
cb46dd386990
patch 8.2.4327: may end up with no current buffer
Bram Moolenaar <Bram@vim.org>
parents:
27507
diff
changeset
|
6247 bwipe |
cb46dd386990
patch 8.2.4327: may end up with no current buffer
Bram Moolenaar <Bram@vim.org>
parents:
27507
diff
changeset
|
6248 |
cb46dd386990
patch 8.2.4327: may end up with no current buffer
Bram Moolenaar <Bram@vim.org>
parents:
27507
diff
changeset
|
6249 call writefile(['done'], 'Xresult') |
cb46dd386990
patch 8.2.4327: may end up with no current buffer
Bram Moolenaar <Bram@vim.org>
parents:
27507
diff
changeset
|
6250 qall! |
cb46dd386990
patch 8.2.4327: may end up with no current buffer
Bram Moolenaar <Bram@vim.org>
parents:
27507
diff
changeset
|
6251 END |
cb46dd386990
patch 8.2.4327: may end up with no current buffer
Bram Moolenaar <Bram@vim.org>
parents:
27507
diff
changeset
|
6252 call writefile(lines, 'Xscript') |
cb46dd386990
patch 8.2.4327: may end up with no current buffer
Bram Moolenaar <Bram@vim.org>
parents:
27507
diff
changeset
|
6253 if RunVim([], [], '-u NONE -n -X -Z -e -m -s -S Xscript') |
cb46dd386990
patch 8.2.4327: may end up with no current buffer
Bram Moolenaar <Bram@vim.org>
parents:
27507
diff
changeset
|
6254 call assert_equal(['done'], readfile('Xresult')) |
cb46dd386990
patch 8.2.4327: may end up with no current buffer
Bram Moolenaar <Bram@vim.org>
parents:
27507
diff
changeset
|
6255 endif |
cb46dd386990
patch 8.2.4327: may end up with no current buffer
Bram Moolenaar <Bram@vim.org>
parents:
27507
diff
changeset
|
6256 |
cb46dd386990
patch 8.2.4327: may end up with no current buffer
Bram Moolenaar <Bram@vim.org>
parents:
27507
diff
changeset
|
6257 call delete('Xscript') |
cb46dd386990
patch 8.2.4327: may end up with no current buffer
Bram Moolenaar <Bram@vim.org>
parents:
27507
diff
changeset
|
6258 call delete('Xresult') |
cb46dd386990
patch 8.2.4327: may end up with no current buffer
Bram Moolenaar <Bram@vim.org>
parents:
27507
diff
changeset
|
6259 endfunc |
cb46dd386990
patch 8.2.4327: may end up with no current buffer
Bram Moolenaar <Bram@vim.org>
parents:
27507
diff
changeset
|
6260 |
27873
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6261 " Test for calling setqflist() function recursively |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6262 func Test_recursive_setqflist() |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6263 augroup QF_Test |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6264 au! |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6265 autocmd BufWinEnter quickfix call setqflist([], 'r') |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6266 augroup END |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6267 |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6268 copen |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6269 call assert_fails("call setqflist([], 'a')", 'E952:') |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6270 |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6271 augroup QF_Test |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6272 au! |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6273 augroup END |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6274 %bw! |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6275 endfunc |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6276 |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6277 " Test for failure to create a new window when selecting a file from the |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6278 " quickfix window |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6279 func Test_cwindow_newwin_fails() |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6280 cgetexpr ["Xfile1:10:L10", "Xfile1:20:L20"] |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6281 cwindow |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6282 only |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6283 let qf_wid = win_getid() |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6284 " create the maximum number of scratch windows |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6285 let hor_win_count = (&lines - 1)/2 |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6286 let hor_split_count = hor_win_count - 1 |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6287 for s in range(1, hor_split_count) | new | set buftype=nofile | endfor |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6288 call win_gotoid(qf_wid) |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6289 call assert_fails('exe "normal \<CR>"', 'E36:') |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6290 %bw! |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6291 endfunc |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6292 |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6293 " Test for updating the location list when only the location list window is |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6294 " present and the corresponding file window is closed. |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6295 func Test_loclist_update_with_llwin_only() |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6296 %bw! |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6297 new |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6298 wincmd w |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6299 lexpr ["Xfile1:1:Line1"] |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6300 lopen |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6301 wincmd p |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6302 close |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6303 call setloclist(2, [], 'r', {'lines': ["Xtest2:2:Line2"]}) |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6304 call assert_equal(['Xtest2|2| Line2'], getbufline(winbufnr(2), 1, '$')) |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6305 %bw! |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6306 endfunc |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6307 |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6308 " Test for getting the quickfix list after a buffer with an error is wiped out |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6309 func Test_getqflist_wiped_out_buffer() |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6310 %bw! |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6311 cexpr ["Xtest1:34:Wiped out"] |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6312 let bnum = bufnr('Xtest1') |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6313 call assert_equal(bnum, getqflist()[0].bufnr) |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6314 bw Xtest1 |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6315 call assert_equal(0, getqflist()[0].bufnr) |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6316 %bw! |
d1af65b322d0
patch 8.2.4462: not enough testing for quickfix code
Bram Moolenaar <Bram@vim.org>
parents:
27855
diff
changeset
|
6317 endfunc |
27507
b8a5de86e9d1
patch 8.2.4281: using freed memory with :lopen and :bwipe
Bram Moolenaar <Bram@vim.org>
parents:
27457
diff
changeset
|
6318 |
28183
2b595cee4c85
patch 8.2.4617: no completion for :scriptnames
Bram Moolenaar <Bram@vim.org>
parents:
27897
diff
changeset
|
6319 " Test for the status message that is displayed when opening a new quickfix |
2b595cee4c85
patch 8.2.4617: no completion for :scriptnames
Bram Moolenaar <Bram@vim.org>
parents:
27897
diff
changeset
|
6320 " list |
2b595cee4c85
patch 8.2.4617: no completion for :scriptnames
Bram Moolenaar <Bram@vim.org>
parents:
27897
diff
changeset
|
6321 func Test_qflist_statusmsg() |
2b595cee4c85
patch 8.2.4617: no completion for :scriptnames
Bram Moolenaar <Bram@vim.org>
parents:
27897
diff
changeset
|
6322 cexpr "1\n2" |
2b595cee4c85
patch 8.2.4617: no completion for :scriptnames
Bram Moolenaar <Bram@vim.org>
parents:
27897
diff
changeset
|
6323 cexpr "1\n2\n3\ntest_quickfix.vim:1:msg" |
2b595cee4c85
patch 8.2.4617: no completion for :scriptnames
Bram Moolenaar <Bram@vim.org>
parents:
27897
diff
changeset
|
6324 call assert_equal('(4 of 4): msg', v:statusmsg) |
2b595cee4c85
patch 8.2.4617: no completion for :scriptnames
Bram Moolenaar <Bram@vim.org>
parents:
27897
diff
changeset
|
6325 call setqflist([], 'f') |
2b595cee4c85
patch 8.2.4617: no completion for :scriptnames
Bram Moolenaar <Bram@vim.org>
parents:
27897
diff
changeset
|
6326 %bw! |
2b595cee4c85
patch 8.2.4617: no completion for :scriptnames
Bram Moolenaar <Bram@vim.org>
parents:
27897
diff
changeset
|
6327 |
2b595cee4c85
patch 8.2.4617: no completion for :scriptnames
Bram Moolenaar <Bram@vim.org>
parents:
27897
diff
changeset
|
6328 " When creating a new quickfix list, if an autocmd changes the quickfix list |
2b595cee4c85
patch 8.2.4617: no completion for :scriptnames
Bram Moolenaar <Bram@vim.org>
parents:
27897
diff
changeset
|
6329 " in the stack, then an error message should be displayed. |
2b595cee4c85
patch 8.2.4617: no completion for :scriptnames
Bram Moolenaar <Bram@vim.org>
parents:
27897
diff
changeset
|
6330 augroup QF_Test |
2b595cee4c85
patch 8.2.4617: no completion for :scriptnames
Bram Moolenaar <Bram@vim.org>
parents:
27897
diff
changeset
|
6331 au! |
2b595cee4c85
patch 8.2.4617: no completion for :scriptnames
Bram Moolenaar <Bram@vim.org>
parents:
27897
diff
changeset
|
6332 au BufEnter test_quickfix.vim colder |
2b595cee4c85
patch 8.2.4617: no completion for :scriptnames
Bram Moolenaar <Bram@vim.org>
parents:
27897
diff
changeset
|
6333 augroup END |
2b595cee4c85
patch 8.2.4617: no completion for :scriptnames
Bram Moolenaar <Bram@vim.org>
parents:
27897
diff
changeset
|
6334 cexpr "1\n2" |
2b595cee4c85
patch 8.2.4617: no completion for :scriptnames
Bram Moolenaar <Bram@vim.org>
parents:
27897
diff
changeset
|
6335 call assert_fails('cexpr "1\n2\n3\ntest_quickfix.vim:1:msg"', 'E925:') |
2b595cee4c85
patch 8.2.4617: no completion for :scriptnames
Bram Moolenaar <Bram@vim.org>
parents:
27897
diff
changeset
|
6336 call setqflist([], 'f') |
2b595cee4c85
patch 8.2.4617: no completion for :scriptnames
Bram Moolenaar <Bram@vim.org>
parents:
27897
diff
changeset
|
6337 augroup QF_Test |
2b595cee4c85
patch 8.2.4617: no completion for :scriptnames
Bram Moolenaar <Bram@vim.org>
parents:
27897
diff
changeset
|
6338 au! |
2b595cee4c85
patch 8.2.4617: no completion for :scriptnames
Bram Moolenaar <Bram@vim.org>
parents:
27897
diff
changeset
|
6339 augroup END |
2b595cee4c85
patch 8.2.4617: no completion for :scriptnames
Bram Moolenaar <Bram@vim.org>
parents:
27897
diff
changeset
|
6340 %bw! |
2b595cee4c85
patch 8.2.4617: no completion for :scriptnames
Bram Moolenaar <Bram@vim.org>
parents:
27897
diff
changeset
|
6341 |
2b595cee4c85
patch 8.2.4617: no completion for :scriptnames
Bram Moolenaar <Bram@vim.org>
parents:
27897
diff
changeset
|
6342 augroup QF_Test |
2b595cee4c85
patch 8.2.4617: no completion for :scriptnames
Bram Moolenaar <Bram@vim.org>
parents:
27897
diff
changeset
|
6343 au! |
2b595cee4c85
patch 8.2.4617: no completion for :scriptnames
Bram Moolenaar <Bram@vim.org>
parents:
27897
diff
changeset
|
6344 au BufEnter test_quickfix.vim caddexpr "4" |
2b595cee4c85
patch 8.2.4617: no completion for :scriptnames
Bram Moolenaar <Bram@vim.org>
parents:
27897
diff
changeset
|
6345 augroup END |
2b595cee4c85
patch 8.2.4617: no completion for :scriptnames
Bram Moolenaar <Bram@vim.org>
parents:
27897
diff
changeset
|
6346 call assert_fails('cexpr "1\n2\n3\ntest_quickfix.vim:1:msg"', 'E925:') |
2b595cee4c85
patch 8.2.4617: no completion for :scriptnames
Bram Moolenaar <Bram@vim.org>
parents:
27897
diff
changeset
|
6347 call setqflist([], 'f') |
2b595cee4c85
patch 8.2.4617: no completion for :scriptnames
Bram Moolenaar <Bram@vim.org>
parents:
27897
diff
changeset
|
6348 augroup QF_Test |
2b595cee4c85
patch 8.2.4617: no completion for :scriptnames
Bram Moolenaar <Bram@vim.org>
parents:
27897
diff
changeset
|
6349 au! |
2b595cee4c85
patch 8.2.4617: no completion for :scriptnames
Bram Moolenaar <Bram@vim.org>
parents:
27897
diff
changeset
|
6350 augroup END |
2b595cee4c85
patch 8.2.4617: no completion for :scriptnames
Bram Moolenaar <Bram@vim.org>
parents:
27897
diff
changeset
|
6351 %bw! |
2b595cee4c85
patch 8.2.4617: no completion for :scriptnames
Bram Moolenaar <Bram@vim.org>
parents:
27897
diff
changeset
|
6352 endfunc |
2b595cee4c85
patch 8.2.4617: no completion for :scriptnames
Bram Moolenaar <Bram@vim.org>
parents:
27897
diff
changeset
|
6353 |
18452
0ac9e720a56e
patch 8.1.2220: :cfile does not abort like other quickfix commands
Bram Moolenaar <Bram@vim.org>
parents:
18319
diff
changeset
|
6354 " vim: shiftwidth=2 sts=2 expandtab |