blob: 0a71b1118bb0c4f8a048cd7b200fda079509a71a [file] [log] [blame]
Bram Moolenaarae3150e2016-06-11 23:22:36 +02001" Tests for editing the command line.
2
Bram Moolenaar4facea32019-10-12 20:17:40 +02003source check.vim
4source screendump.vim
Bram Moolenaar24ebd832020-03-16 21:25:24 +01005source view_util.vim
Bram Moolenaarc82dd862020-06-07 17:30:33 +02006source shared.vim
Bram Moolenaar4facea32019-10-12 20:17:40 +02007
Bram Moolenaarae3150e2016-06-11 23:22:36 +02008func Test_complete_tab()
9 call writefile(['testfile'], 'Xtestfile')
10 call feedkeys(":e Xtest\t\r", "tx")
11 call assert_equal('testfile', getline(1))
Albert Liu6024c042021-08-27 20:59:35 +020012
13 " Pressing <Tab> after '%' completes the current file, also on MS-Windows
14 call feedkeys(":e %\t\r", "tx")
15 call assert_equal('e Xtestfile', @:)
Bram Moolenaarae3150e2016-06-11 23:22:36 +020016 call delete('Xtestfile')
17endfunc
18
19func Test_complete_list()
20 " We can't see the output, but at least we check the code runs properly.
21 call feedkeys(":e test\<C-D>\r", "tx")
22 call assert_equal('test', expand('%:t'))
Bram Moolenaar578fe942020-02-27 21:32:51 +010023
24 " If a command doesn't support completion, then CTRL-D should be literally
25 " used.
26 call feedkeys(":chistory \<C-D>\<C-B>\"\<CR>", 'xt')
27 call assert_equal("\"chistory \<C-D>", @:)
Bram Moolenaarae3150e2016-06-11 23:22:36 +020028endfunc
29
30func Test_complete_wildmenu()
Bram Moolenaar37db6422019-03-28 21:26:23 +010031 call mkdir('Xdir1/Xdir2', 'p')
32 call writefile(['testfile1'], 'Xdir1/Xtestfile1')
33 call writefile(['testfile2'], 'Xdir1/Xtestfile2')
34 call writefile(['testfile3'], 'Xdir1/Xdir2/Xtestfile3')
35 call writefile(['testfile3'], 'Xdir1/Xdir2/Xtestfile4')
Bram Moolenaarae3150e2016-06-11 23:22:36 +020036 set wildmenu
Bram Moolenaar37db6422019-03-28 21:26:23 +010037
38 " Pressing <Tab> completes, and moves to next files when pressing again.
39 call feedkeys(":e Xdir1/\<Tab>\<Tab>\<CR>", 'tx')
40 call assert_equal('testfile1', getline(1))
41 call feedkeys(":e Xdir1/\<Tab>\<Tab>\<Tab>\<CR>", 'tx')
Bram Moolenaarae3150e2016-06-11 23:22:36 +020042 call assert_equal('testfile2', getline(1))
43
Bram Moolenaar37db6422019-03-28 21:26:23 +010044 " <S-Tab> is like <Tab> but begin with the last match and then go to
45 " previous.
46 call feedkeys(":e Xdir1/Xtest\<S-Tab>\<CR>", 'tx')
47 call assert_equal('testfile2', getline(1))
48 call feedkeys(":e Xdir1/Xtest\<S-Tab>\<S-Tab>\<CR>", 'tx')
49 call assert_equal('testfile1', getline(1))
50
51 " <Left>/<Right> to move to previous/next file.
52 call feedkeys(":e Xdir1/\<Tab>\<Right>\<CR>", 'tx')
53 call assert_equal('testfile1', getline(1))
54 call feedkeys(":e Xdir1/\<Tab>\<Right>\<Right>\<CR>", 'tx')
55 call assert_equal('testfile2', getline(1))
56 call feedkeys(":e Xdir1/\<Tab>\<Right>\<Right>\<Left>\<CR>", 'tx')
57 call assert_equal('testfile1', getline(1))
58
59 " <Up>/<Down> to go up/down directories.
60 call feedkeys(":e Xdir1/\<Tab>\<Down>\<CR>", 'tx')
61 call assert_equal('testfile3', getline(1))
62 call feedkeys(":e Xdir1/\<Tab>\<Down>\<Up>\<Right>\<CR>", 'tx')
63 call assert_equal('testfile1', getline(1))
64
Bram Moolenaar3e112ac2020-12-28 13:41:53 +010065 " this fails in some Unix GUIs, not sure why
66 if !has('unix') || !has('gui_running')
67 " <C-J>/<C-K> mappings to go up/down directories when 'wildcharm' is
68 " different than 'wildchar'.
69 set wildcharm=<C-Z>
70 cnoremap <C-J> <Down><C-Z>
71 cnoremap <C-K> <Up><C-Z>
72 call feedkeys(":e Xdir1/\<Tab>\<C-J>\<CR>", 'tx')
73 call assert_equal('testfile3', getline(1))
74 call feedkeys(":e Xdir1/\<Tab>\<C-J>\<C-K>\<CR>", 'tx')
75 call assert_equal('testfile1', getline(1))
76 set wildcharm=0
77 cunmap <C-J>
78 cunmap <C-K>
79 endif
Bram Moolenaarb0ac4ea2020-12-26 12:06:54 +010080
Bram Moolenaar578fe942020-02-27 21:32:51 +010081 " Test for canceling the wild menu by adding a character
82 redrawstatus
83 call feedkeys(":e Xdir1/\<Tab>x\<C-B>\"\<CR>", 'xt')
84 call assert_equal('"e Xdir1/Xdir2/x', @:)
85
Bram Moolenaar8d588cc2020-02-25 21:47:45 +010086 " Completion using a relative path
87 cd Xdir1/Xdir2
88 call feedkeys(":e ../\<Tab>\<Right>\<Down>\<C-A>\<C-B>\"\<CR>", 'tx')
89 call assert_equal('"e Xtestfile3 Xtestfile4', @:)
90 cd -
91
Bram Moolenaar0e05de42020-03-25 22:23:46 +010092 cnoremap <expr> <F2> wildmenumode()
93 call feedkeys(":cd Xdir\<Tab>\<F2>\<C-B>\"\<CR>", 'tx')
94 call assert_equal('"cd Xdir1/1', @:)
95 cunmap <F2>
96
Bram Moolenaar37db6422019-03-28 21:26:23 +010097 " cleanup
98 %bwipe
99 call delete('Xdir1/Xdir2/Xtestfile4')
100 call delete('Xdir1/Xdir2/Xtestfile3')
101 call delete('Xdir1/Xtestfile2')
102 call delete('Xdir1/Xtestfile1')
103 call delete('Xdir1/Xdir2', 'd')
104 call delete('Xdir1', 'd')
Bram Moolenaarae3150e2016-06-11 23:22:36 +0200105 set nowildmenu
106endfunc
Bram Moolenaar4b2ce122020-11-21 21:41:41 +0100107
Bram Moolenaara60053b2020-09-03 16:50:13 +0200108func Test_wildmenu_screendump()
109 CheckScreendump
110
111 let lines =<< trim [SCRIPT]
112 set wildmenu hlsearch
113 [SCRIPT]
114 call writefile(lines, 'XTest_wildmenu')
115
116 let buf = RunVimInTerminal('-S XTest_wildmenu', {'rows': 8})
117 call term_sendkeys(buf, ":vim\<Tab>")
118 call VerifyScreenDump(buf, 'Test_wildmenu_1', {})
119
120 call term_sendkeys(buf, "\<Tab>")
121 call VerifyScreenDump(buf, 'Test_wildmenu_2', {})
122
123 call term_sendkeys(buf, "\<Tab>")
124 call VerifyScreenDump(buf, 'Test_wildmenu_3', {})
125
Bram Moolenaar39f3b142021-02-14 12:57:36 +0100126 call term_sendkeys(buf, "\<Tab>\<Tab>")
Bram Moolenaara60053b2020-09-03 16:50:13 +0200127 call VerifyScreenDump(buf, 'Test_wildmenu_4', {})
128 call term_sendkeys(buf, "\<Esc>")
129
130 " clean up
131 call StopVimInTerminal(buf)
132 call delete('XTest_wildmenu')
133endfunc
134
Bram Moolenaarcf5fdf72017-03-02 23:05:51 +0100135func Test_map_completion()
Bram Moolenaarcf5fdf72017-03-02 23:05:51 +0100136 call feedkeys(":map <unique> <si\<Tab>\<Home>\"\<CR>", 'xt')
137 call assert_equal('"map <unique> <silent>', getreg(':'))
138 call feedkeys(":map <script> <un\<Tab>\<Home>\"\<CR>", 'xt')
139 call assert_equal('"map <script> <unique>', getreg(':'))
140 call feedkeys(":map <expr> <sc\<Tab>\<Home>\"\<CR>", 'xt')
141 call assert_equal('"map <expr> <script>', getreg(':'))
142 call feedkeys(":map <buffer> <e\<Tab>\<Home>\"\<CR>", 'xt')
143 call assert_equal('"map <buffer> <expr>', getreg(':'))
144 call feedkeys(":map <nowait> <b\<Tab>\<Home>\"\<CR>", 'xt')
145 call assert_equal('"map <nowait> <buffer>', getreg(':'))
146 call feedkeys(":map <special> <no\<Tab>\<Home>\"\<CR>", 'xt')
147 call assert_equal('"map <special> <nowait>', getreg(':'))
148 call feedkeys(":map <silent> <sp\<Tab>\<Home>\"\<CR>", 'xt')
149 call assert_equal('"map <silent> <special>', getreg(':'))
Bram Moolenaar2cb9f022019-05-03 15:13:57 +0200150
Bram Moolenaar1776a282019-05-03 16:05:41 +0200151 map <Middle>x middle
152
Bram Moolenaar2cb9f022019-05-03 15:13:57 +0200153 map ,f commaf
154 map ,g commaf
Bram Moolenaar1776a282019-05-03 16:05:41 +0200155 map <Left> left
156 map <A-Left>x shiftleft
Bram Moolenaar2cb9f022019-05-03 15:13:57 +0200157 call feedkeys(":map ,\<Tab>\<Home>\"\<CR>", 'xt')
158 call assert_equal('"map ,f', getreg(':'))
159 call feedkeys(":map ,\<Tab>\<Tab>\<Home>\"\<CR>", 'xt')
160 call assert_equal('"map ,g', getreg(':'))
Bram Moolenaar1776a282019-05-03 16:05:41 +0200161 call feedkeys(":map <L\<Tab>\<Home>\"\<CR>", 'xt')
162 call assert_equal('"map <Left>', getreg(':'))
163 call feedkeys(":map <A-Left>\<Tab>\<Home>\"\<CR>", 'xt')
Bram Moolenaar92b9e602019-05-03 16:49:25 +0200164 call assert_equal("\"map <A-Left>\<Tab>", getreg(':'))
Bram Moolenaar2cb9f022019-05-03 15:13:57 +0200165 unmap ,f
166 unmap ,g
Bram Moolenaar1776a282019-05-03 16:05:41 +0200167 unmap <Left>
168 unmap <A-Left>x
Bram Moolenaar2cb9f022019-05-03 15:13:57 +0200169
170 set cpo-=< cpo-=B cpo-=k
171 map <Left> left
172 call feedkeys(":map <L\<Tab>\<Home>\"\<CR>", 'xt')
173 call assert_equal('"map <Left>', getreg(':'))
Bram Moolenaar1776a282019-05-03 16:05:41 +0200174 call feedkeys(":map <M\<Tab>\<Home>\"\<CR>", 'xt')
Bram Moolenaar92b9e602019-05-03 16:49:25 +0200175 call assert_equal("\"map <M\<Tab>", getreg(':'))
Bram Moolenaar2cb9f022019-05-03 15:13:57 +0200176 unmap <Left>
177
178 set cpo+=<
179 map <Left> left
Bram Moolenaar61df0c72019-05-03 21:10:36 +0200180 exe "set t_k6=\<Esc>[17~"
181 call feedkeys(":map \<Esc>[17~x f6x\<CR>", 'xt')
Bram Moolenaar2cb9f022019-05-03 15:13:57 +0200182 call feedkeys(":map <L\<Tab>\<Home>\"\<CR>", 'xt')
183 call assert_equal('"map <Left>', getreg(':'))
Bram Moolenaar510671a2019-05-04 19:26:56 +0200184 if !has('gui_running')
185 call feedkeys(":map \<Esc>[17~\<Tab>\<Home>\"\<CR>", 'xt')
186 call assert_equal("\"map <F6>x", getreg(':'))
187 endif
Bram Moolenaar2cb9f022019-05-03 15:13:57 +0200188 unmap <Left>
Bram Moolenaar61df0c72019-05-03 21:10:36 +0200189 call feedkeys(":unmap \<Esc>[17~x\<CR>", 'xt')
Bram Moolenaar2cb9f022019-05-03 15:13:57 +0200190 set cpo-=<
191
192 set cpo+=B
193 map <Left> left
194 call feedkeys(":map <L\<Tab>\<Home>\"\<CR>", 'xt')
195 call assert_equal('"map <Left>', getreg(':'))
196 unmap <Left>
197 set cpo-=B
198
199 set cpo+=k
200 map <Left> left
201 call feedkeys(":map <L\<Tab>\<Home>\"\<CR>", 'xt')
202 call assert_equal('"map <Left>', getreg(':'))
203 unmap <Left>
204 set cpo-=k
Bram Moolenaar1776a282019-05-03 16:05:41 +0200205
Bram Moolenaar531be472020-09-23 22:38:05 +0200206 call assert_fails('call feedkeys(":map \\\\%(\<Tab>\<Home>\"\<CR>", "xt")', 'E53:')
207
Bram Moolenaar1776a282019-05-03 16:05:41 +0200208 unmap <Middle>x
209 set cpo&vim
Bram Moolenaarcf5fdf72017-03-02 23:05:51 +0100210endfunc
211
Bram Moolenaar15eedf12017-01-22 19:25:33 +0100212func Test_match_completion()
Bram Moolenaar15eedf12017-01-22 19:25:33 +0100213 hi Aardig ctermfg=green
214 call feedkeys(":match \<Tab>\<Home>\"\<CR>", 'xt')
215 call assert_equal('"match Aardig', getreg(':'))
216 call feedkeys(":match \<S-Tab>\<Home>\"\<CR>", 'xt')
217 call assert_equal('"match none', getreg(':'))
218endfunc
219
220func Test_highlight_completion()
Bram Moolenaar15eedf12017-01-22 19:25:33 +0100221 hi Aardig ctermfg=green
222 call feedkeys(":hi \<Tab>\<Home>\"\<CR>", 'xt')
223 call assert_equal('"hi Aardig', getreg(':'))
Bram Moolenaarea588152017-04-10 22:45:30 +0200224 call feedkeys(":hi default \<Tab>\<Home>\"\<CR>", 'xt')
225 call assert_equal('"hi default Aardig', getreg(':'))
226 call feedkeys(":hi clear Aa\<Tab>\<Home>\"\<CR>", 'xt')
227 call assert_equal('"hi clear Aardig', getreg(':'))
Bram Moolenaar15eedf12017-01-22 19:25:33 +0100228 call feedkeys(":hi li\<S-Tab>\<Home>\"\<CR>", 'xt')
229 call assert_equal('"hi link', getreg(':'))
230 call feedkeys(":hi d\<S-Tab>\<Home>\"\<CR>", 'xt')
231 call assert_equal('"hi default', getreg(':'))
232 call feedkeys(":hi c\<S-Tab>\<Home>\"\<CR>", 'xt')
233 call assert_equal('"hi clear', getreg(':'))
Bram Moolenaar75e15672020-06-28 13:10:22 +0200234 call feedkeys(":hi clear Aardig Aard\<Tab>\<C-B>\"\<CR>", 'xt')
235 call assert_equal('"hi clear Aardig Aardig', getreg(':'))
236 call feedkeys(":hi Aardig \<Tab>\<C-B>\"\<CR>", 'xt')
237 call assert_equal("\"hi Aardig \t", getreg(':'))
Bram Moolenaarc96272e2017-03-26 13:50:09 +0200238
239 " A cleared group does not show up in completions.
240 hi Anders ctermfg=green
241 call assert_equal(['Aardig', 'Anders'], getcompletion('A', 'highlight'))
242 hi clear Aardig
243 call assert_equal(['Anders'], getcompletion('A', 'highlight'))
244 hi clear Anders
245 call assert_equal([], getcompletion('A', 'highlight'))
Bram Moolenaar15eedf12017-01-22 19:25:33 +0100246endfunc
247
Bram Moolenaar75e15672020-06-28 13:10:22 +0200248" Test for command-line expansion of "hi Ni " (easter egg)
249func Test_highlight_easter_egg()
250 call test_override('ui_delay', 1)
251 call feedkeys(":hi Ni \<Tab>\<C-B>\"\<CR>", 'xt')
252 call assert_equal("\"hi Ni \<Tab>", @:)
253 call test_override('ALL', 0)
254endfunc
255
Bram Moolenaaraa4d7322016-07-09 18:50:29 +0200256func Test_getcompletion()
257 let groupcount = len(getcompletion('', 'event'))
258 call assert_true(groupcount > 0)
Bram Moolenaar4c313b12019-08-24 22:58:31 +0200259 let matchcount = len('File'->getcompletion('event'))
Bram Moolenaaraa4d7322016-07-09 18:50:29 +0200260 call assert_true(matchcount > 0)
261 call assert_true(groupcount > matchcount)
262
Bram Moolenaar0d3e24b2016-07-09 19:20:59 +0200263 if has('menu')
264 source $VIMRUNTIME/menu.vim
265 let matchcount = len(getcompletion('', 'menu'))
266 call assert_true(matchcount > 0)
267 call assert_equal(['File.'], getcompletion('File', 'menu'))
268 call assert_true(matchcount > 0)
269 let matchcount = len(getcompletion('File.', 'menu'))
270 call assert_true(matchcount > 0)
271 endif
Bram Moolenaaraa4d7322016-07-09 18:50:29 +0200272
Bram Moolenaarc1fb7632016-07-17 23:34:21 +0200273 let l = getcompletion('v:n', 'var')
274 call assert_true(index(l, 'v:null') >= 0)
Bram Moolenaarb56195e2016-07-28 22:53:37 +0200275 let l = getcompletion('v:notexists', 'var')
276 call assert_equal([], l)
Bram Moolenaarc1fb7632016-07-17 23:34:21 +0200277
Bram Moolenaarcd43eff2018-03-29 15:55:38 +0200278 args a.c b.c
279 let l = getcompletion('', 'arglist')
280 call assert_equal(['a.c', 'b.c'], l)
281 %argdelete
282
Bram Moolenaarc1fb7632016-07-17 23:34:21 +0200283 let l = getcompletion('', 'augroup')
284 call assert_true(index(l, 'END') >= 0)
Bram Moolenaarb56195e2016-07-28 22:53:37 +0200285 let l = getcompletion('blahblah', 'augroup')
286 call assert_equal([], l)
Bram Moolenaarc1fb7632016-07-17 23:34:21 +0200287
288 let l = getcompletion('', 'behave')
289 call assert_true(index(l, 'mswin') >= 0)
Bram Moolenaarb56195e2016-07-28 22:53:37 +0200290 let l = getcompletion('not', 'behave')
291 call assert_equal([], l)
Bram Moolenaarc1fb7632016-07-17 23:34:21 +0200292
293 let l = getcompletion('', 'color')
294 call assert_true(index(l, 'default') >= 0)
Bram Moolenaarb56195e2016-07-28 22:53:37 +0200295 let l = getcompletion('dirty', 'color')
296 call assert_equal([], l)
Bram Moolenaarc1fb7632016-07-17 23:34:21 +0200297
298 let l = getcompletion('', 'command')
299 call assert_true(index(l, 'sleep') >= 0)
Bram Moolenaarb56195e2016-07-28 22:53:37 +0200300 let l = getcompletion('awake', 'command')
301 call assert_equal([], l)
Bram Moolenaarc1fb7632016-07-17 23:34:21 +0200302
303 let l = getcompletion('', 'dir')
Bram Moolenaarb56195e2016-07-28 22:53:37 +0200304 call assert_true(index(l, 'samples/') >= 0)
305 let l = getcompletion('NoMatch', 'dir')
306 call assert_equal([], l)
Bram Moolenaarc1fb7632016-07-17 23:34:21 +0200307
308 let l = getcompletion('exe', 'expression')
309 call assert_true(index(l, 'executable(') >= 0)
Bram Moolenaarb56195e2016-07-28 22:53:37 +0200310 let l = getcompletion('kill', 'expression')
311 call assert_equal([], l)
Bram Moolenaarc1fb7632016-07-17 23:34:21 +0200312
313 let l = getcompletion('tag', 'function')
314 call assert_true(index(l, 'taglist(') >= 0)
Bram Moolenaarb56195e2016-07-28 22:53:37 +0200315 let l = getcompletion('paint', 'function')
316 call assert_equal([], l)
Bram Moolenaarc1fb7632016-07-17 23:34:21 +0200317
Bram Moolenaarb49edc12016-07-23 15:47:34 +0200318 let Flambda = {-> 'hello'}
319 let l = getcompletion('', 'function')
320 let l = filter(l, {i, v -> v =~ 'lambda'})
Bram Moolenaarb56195e2016-07-28 22:53:37 +0200321 call assert_equal([], l)
Bram Moolenaarb49edc12016-07-23 15:47:34 +0200322
Bram Moolenaarc1fb7632016-07-17 23:34:21 +0200323 let l = getcompletion('run', 'file')
324 call assert_true(index(l, 'runtest.vim') >= 0)
Bram Moolenaarb56195e2016-07-28 22:53:37 +0200325 let l = getcompletion('walk', 'file')
326 call assert_equal([], l)
Bram Moolenaare9d58a62016-08-13 15:07:41 +0200327 set wildignore=*.vim
328 let l = getcompletion('run', 'file', 1)
329 call assert_true(index(l, 'runtest.vim') < 0)
330 set wildignore&
Bram Moolenaarc1fb7632016-07-17 23:34:21 +0200331
332 let l = getcompletion('ha', 'filetype')
333 call assert_true(index(l, 'hamster') >= 0)
Bram Moolenaarb56195e2016-07-28 22:53:37 +0200334 let l = getcompletion('horse', 'filetype')
335 call assert_equal([], l)
Bram Moolenaarc1fb7632016-07-17 23:34:21 +0200336
337 let l = getcompletion('z', 'syntax')
338 call assert_true(index(l, 'zimbu') >= 0)
Bram Moolenaarb56195e2016-07-28 22:53:37 +0200339 let l = getcompletion('emacs', 'syntax')
340 call assert_equal([], l)
Bram Moolenaarc1fb7632016-07-17 23:34:21 +0200341
342 let l = getcompletion('jikes', 'compiler')
343 call assert_true(index(l, 'jikes') >= 0)
Bram Moolenaarb56195e2016-07-28 22:53:37 +0200344 let l = getcompletion('break', 'compiler')
345 call assert_equal([], l)
Bram Moolenaarc1fb7632016-07-17 23:34:21 +0200346
347 let l = getcompletion('last', 'help')
348 call assert_true(index(l, ':tablast') >= 0)
Bram Moolenaarb56195e2016-07-28 22:53:37 +0200349 let l = getcompletion('giveup', 'help')
350 call assert_equal([], l)
Bram Moolenaarc1fb7632016-07-17 23:34:21 +0200351
352 let l = getcompletion('time', 'option')
353 call assert_true(index(l, 'timeoutlen') >= 0)
Bram Moolenaarb56195e2016-07-28 22:53:37 +0200354 let l = getcompletion('space', 'option')
355 call assert_equal([], l)
Bram Moolenaarc1fb7632016-07-17 23:34:21 +0200356
357 let l = getcompletion('er', 'highlight')
358 call assert_true(index(l, 'ErrorMsg') >= 0)
Bram Moolenaarb56195e2016-07-28 22:53:37 +0200359 let l = getcompletion('dark', 'highlight')
360 call assert_equal([], l)
Bram Moolenaarc1fb7632016-07-17 23:34:21 +0200361
Bram Moolenaar9e507ca2016-10-15 15:39:39 +0200362 let l = getcompletion('', 'messages')
363 call assert_true(index(l, 'clear') >= 0)
364 let l = getcompletion('not', 'messages')
365 call assert_equal([], l)
366
Bram Moolenaarcae92dc2017-08-06 15:22:15 +0200367 let l = getcompletion('', 'mapclear')
368 call assert_true(index(l, '<buffer>') >= 0)
369 let l = getcompletion('not', 'mapclear')
370 call assert_equal([], l)
371
Bram Moolenaar62fe66f2018-05-22 16:58:47 +0200372 let l = getcompletion('.', 'shellcmd')
Bram Moolenaar6ab9e422018-07-28 19:20:13 +0200373 call assert_equal(['./', '../'], filter(l, 'v:val =~ "\\./"'))
Bram Moolenaar62fe66f2018-05-22 16:58:47 +0200374 call assert_equal(-1, match(l[2:], '^\.\.\?/$'))
375 let root = has('win32') ? 'C:\\' : '/'
376 let l = getcompletion(root, 'shellcmd')
377 let expected = map(filter(glob(root . '*', 0, 1),
378 \ 'isdirectory(v:val) || executable(v:val)'), 'isdirectory(v:val) ? v:val . ''/'' : v:val')
379 call assert_equal(expected, l)
380
Bram Moolenaarb650b982016-08-05 20:35:13 +0200381 if has('cscope')
382 let l = getcompletion('', 'cscope')
383 let cmds = ['add', 'find', 'help', 'kill', 'reset', 'show']
384 call assert_equal(cmds, l)
385 " using cmdline completion must not change the result
386 call feedkeys(":cscope find \<c-d>\<c-c>", 'xt')
387 let l = getcompletion('', 'cscope')
388 call assert_equal(cmds, l)
389 let keys = ['a', 'c', 'd', 'e', 'f', 'g', 'i', 's', 't']
390 let l = getcompletion('find ', 'cscope')
391 call assert_equal(keys, l)
392 endif
393
Bram Moolenaar7522f692016-08-06 14:12:50 +0200394 if has('signs')
395 sign define Testing linehl=Comment
396 let l = getcompletion('', 'sign')
397 let cmds = ['define', 'jump', 'list', 'place', 'undefine', 'unplace']
398 call assert_equal(cmds, l)
399 " using cmdline completion must not change the result
400 call feedkeys(":sign list \<c-d>\<c-c>", 'xt')
401 let l = getcompletion('', 'sign')
402 call assert_equal(cmds, l)
403 let l = getcompletion('list ', 'sign')
404 call assert_equal(['Testing'], l)
405 endif
406
Bram Moolenaar1f1fd442020-06-07 18:45:14 +0200407 " Command line completion tests
408 let l = getcompletion('cd ', 'cmdline')
409 call assert_true(index(l, 'samples/') >= 0)
410 let l = getcompletion('cd NoMatch', 'cmdline')
411 call assert_equal([], l)
412 let l = getcompletion('let v:n', 'cmdline')
413 call assert_true(index(l, 'v:null') >= 0)
414 let l = getcompletion('let v:notexists', 'cmdline')
415 call assert_equal([], l)
416 let l = getcompletion('call tag', 'cmdline')
417 call assert_true(index(l, 'taglist(') >= 0)
418 let l = getcompletion('call paint', 'cmdline')
419 call assert_equal([], l)
420
Bram Moolenaarc1fb7632016-07-17 23:34:21 +0200421 " For others test if the name is recognized.
Bram Moolenaar62fe66f2018-05-22 16:58:47 +0200422 let names = ['buffer', 'environment', 'file_in_path', 'mapping', 'tag', 'tag_listfiles', 'user']
Bram Moolenaarc1fb7632016-07-17 23:34:21 +0200423 if has('cmdline_hist')
424 call add(names, 'history')
425 endif
426 if has('gettext')
427 call add(names, 'locale')
428 endif
429 if has('profile')
430 call add(names, 'syntime')
431 endif
Bram Moolenaarc1fb7632016-07-17 23:34:21 +0200432
433 set tags=Xtags
434 call writefile(["!_TAG_FILE_ENCODING\tutf-8\t//", "word\tfile\tcmd"], 'Xtags')
435
436 for name in names
437 let matchcount = len(getcompletion('', name))
438 call assert_true(matchcount >= 0, 'No matches for ' . name)
439 endfor
440
441 call delete('Xtags')
Bram Moolenaar0331faf2019-06-15 18:40:37 +0200442 set tags&
Bram Moolenaarc1fb7632016-07-17 23:34:21 +0200443
Bram Moolenaarb7e24832020-06-24 13:37:35 +0200444 call assert_fails("call getcompletion('\\\\@!\\\\@=', 'buffer')", 'E871:')
Bram Moolenaaraa4d7322016-07-09 18:50:29 +0200445 call assert_fails('call getcompletion("", "burp")', 'E475:')
Bram Moolenaar1f1fd442020-06-07 18:45:14 +0200446 call assert_fails('call getcompletion("abc", [])', 'E475:')
Bram Moolenaaraa4d7322016-07-09 18:50:29 +0200447endfunc
Bram Moolenaar73d4e4c2016-08-27 21:55:13 +0200448
Bram Moolenaar038e09e2021-02-06 12:38:51 +0100449func Test_fullcommand()
450 let tests = {
451 \ '': '',
452 \ ':': '',
453 \ ':::': '',
454 \ ':::5': '',
455 \ 'not_a_cmd': '',
456 \ 'Check': '',
457 \ 'syntax': 'syntax',
458 \ ':syntax': 'syntax',
459 \ '::::syntax': 'syntax',
460 \ 'sy': 'syntax',
461 \ 'syn': 'syntax',
462 \ 'synt': 'syntax',
463 \ ':sy': 'syntax',
464 \ '::::sy': 'syntax',
465 \ 'match': 'match',
466 \ '2match': 'match',
467 \ '3match': 'match',
468 \ 'aboveleft': 'aboveleft',
469 \ 'abo': 'aboveleft',
470 \ 's': 'substitute',
471 \ '5s': 'substitute',
472 \ ':5s': 'substitute',
473 \ "'<,'>s": 'substitute',
474 \ ":'<,'>s": 'substitute',
475 \ 'CheckUni': 'CheckUnix',
476 \ 'CheckUnix': 'CheckUnix',
477 \ }
478
479 for [in, want] in items(tests)
480 call assert_equal(want, fullcommand(in))
481 endfor
Bram Moolenaar4c8e8c62021-05-26 19:49:09 +0200482 call assert_equal('', fullcommand(test_null_string()))
Bram Moolenaar038e09e2021-02-06 12:38:51 +0100483
484 call assert_equal('syntax', 'syn'->fullcommand())
485endfunc
486
Bram Moolenaar6ab9e422018-07-28 19:20:13 +0200487func Test_shellcmd_completion()
488 let save_path = $PATH
489
490 call mkdir('Xpathdir/Xpathsubdir', 'p')
491 call writefile([''], 'Xpathdir/Xfile.exe')
492 call setfperm('Xpathdir/Xfile.exe', 'rwx------')
493
494 " Set PATH to example directory without trailing slash.
495 let $PATH = getcwd() . '/Xpathdir'
496
497 " Test for the ":!<TAB>" case. Previously, this would include subdirs of
498 " dirs in the PATH, even though they won't be executed. We check that only
499 " subdirs of the PWD and executables from the PATH are included in the
500 " suggestions.
501 let actual = getcompletion('X', 'shellcmd')
502 let expected = map(filter(glob('*', 0, 1), 'isdirectory(v:val) && v:val[0] == "X"'), 'v:val . "/"')
503 call insert(expected, 'Xfile.exe')
504 call assert_equal(expected, actual)
505
506 call delete('Xpathdir', 'rf')
507 let $PATH = save_path
508endfunc
509
Bram Moolenaar73d4e4c2016-08-27 21:55:13 +0200510func Test_expand_star_star()
511 call mkdir('a/b', 'p')
512 call writefile(['asdfasdf'], 'a/b/fileXname')
513 call feedkeys(":find **/fileXname\<Tab>\<CR>", 'xt')
514 call assert_equal('find a/b/fileXname', getreg(':'))
Bram Moolenaar1773ddf2016-08-28 13:38:54 +0200515 bwipe!
Bram Moolenaar73d4e4c2016-08-27 21:55:13 +0200516 call delete('a', 'rf')
517endfunc
Bram Moolenaar21efc362016-12-03 14:05:49 +0100518
Bram Moolenaar59cb0412019-12-18 22:26:31 +0100519func Test_cmdline_paste()
Bram Moolenaar21efc362016-12-03 14:05:49 +0100520 let @a = "def"
521 call feedkeys(":abc \<C-R>a ghi\<C-B>\"\<CR>", 'tx')
522 call assert_equal('"abc def ghi', @:)
523
524 new
525 call setline(1, 'asdf.x /tmp/some verylongword a;b-c*d ')
526
527 call feedkeys(":aaa \<C-R>\<C-W> bbb\<C-B>\"\<CR>", 'tx')
528 call assert_equal('"aaa asdf bbb', @:)
529
530 call feedkeys("ft:aaa \<C-R>\<C-F> bbb\<C-B>\"\<CR>", 'tx')
531 call assert_equal('"aaa /tmp/some bbb', @:)
532
Bram Moolenaare2c8d832018-05-01 19:24:03 +0200533 call feedkeys(":aaa \<C-R>\<C-L> bbb\<C-B>\"\<CR>", 'tx')
534 call assert_equal('"aaa '.getline(1).' bbb', @:)
535
Bram Moolenaar21efc362016-12-03 14:05:49 +0100536 set incsearch
537 call feedkeys("fy:aaa veryl\<C-R>\<C-W> bbb\<C-B>\"\<CR>", 'tx')
538 call assert_equal('"aaa verylongword bbb', @:)
539
540 call feedkeys("f;:aaa \<C-R>\<C-A> bbb\<C-B>\"\<CR>", 'tx')
541 call assert_equal('"aaa a;b-c*d bbb', @:)
Bram Moolenaareaaa9bb2016-12-09 18:42:20 +0100542
543 call feedkeys(":\<C-\>etoupper(getline(1))\<CR>\<C-B>\"\<CR>", 'tx')
544 call assert_equal('"ASDF.X /TMP/SOME VERYLONGWORD A;B-C*D ', @:)
Bram Moolenaar21efc362016-12-03 14:05:49 +0100545 bwipe!
Bram Moolenaar72532d32018-04-07 19:09:09 +0200546
547 " Error while typing a command used to cause that it was not executed
548 " in the end.
549 new
550 try
551 call feedkeys(":file \<C-R>%Xtestfile\<CR>", 'tx')
552 catch /^Vim\%((\a\+)\)\=:E32/
553 " ignore error E32
554 endtry
555 call assert_equal("Xtestfile", bufname("%"))
Bram Moolenaar8d588cc2020-02-25 21:47:45 +0100556
Bram Moolenaar578fe942020-02-27 21:32:51 +0100557 " Try to paste an invalid register using <C-R>
558 call feedkeys(":\"one\<C-R>\<C-X>two\<CR>", 'xt')
559 call assert_equal('"onetwo', @:)
560
Bram Moolenaar91ffc8a2020-03-02 20:54:22 +0100561 " Test for pasting register containing CTRL-H using CTRL-R and CTRL-R CTRL-R
Bram Moolenaar578fe942020-02-27 21:32:51 +0100562 let @a = "xy\<C-H>z"
563 call feedkeys(":\"\<C-R>a\<CR>", 'xt')
564 call assert_equal('"xz', @:)
Bram Moolenaar91ffc8a2020-03-02 20:54:22 +0100565 call feedkeys(":\"\<C-R>\<C-R>a\<CR>", 'xt')
566 call assert_equal("\"xy\<C-H>z", @:)
Bram Moolenaar578fe942020-02-27 21:32:51 +0100567 call feedkeys(":\"\<C-R>\<C-O>a\<CR>", 'xt')
568 call assert_equal("\"xy\<C-H>z", @:)
569
Bram Moolenaar91ffc8a2020-03-02 20:54:22 +0100570 " Test for pasting register containing CTRL-V using CTRL-R and CTRL-R CTRL-R
571 let @a = "xy\<C-V>z"
572 call feedkeys(":\"\<C-R>=@a\<CR>\<cr>", 'xt')
573 call assert_equal('"xyz', @:)
574 call feedkeys(":\"\<C-R>\<C-R>=@a\<CR>\<cr>", 'xt')
575 call assert_equal("\"xy\<C-V>z", @:)
576
Bram Moolenaar578fe942020-02-27 21:32:51 +0100577 call assert_beeps('call feedkeys(":\<C-R>=\<C-R>=\<Esc>", "xt")')
578
Bram Moolenaar72532d32018-04-07 19:09:09 +0200579 bwipe!
Bram Moolenaar21efc362016-12-03 14:05:49 +0100580endfunc
Bram Moolenaareaaa9bb2016-12-09 18:42:20 +0100581
Bram Moolenaar59cb0412019-12-18 22:26:31 +0100582func Test_cmdline_remove_char()
583 let encoding_save = &encoding
Bram Moolenaareaaa9bb2016-12-09 18:42:20 +0100584
Bram Moolenaar59cb0412019-12-18 22:26:31 +0100585 for e in ['utf8', 'latin1']
586 exe 'set encoding=' . e
Bram Moolenaareaaa9bb2016-12-09 18:42:20 +0100587
Bram Moolenaar59cb0412019-12-18 22:26:31 +0100588 call feedkeys(":abc def\<S-Left>\<Del>\<C-B>\"\<CR>", 'tx')
589 call assert_equal('"abc ef', @:, e)
Bram Moolenaareaaa9bb2016-12-09 18:42:20 +0100590
Bram Moolenaar59cb0412019-12-18 22:26:31 +0100591 call feedkeys(":abc def\<S-Left>\<BS>\<C-B>\"\<CR>", 'tx')
592 call assert_equal('"abcdef', @:)
593
594 call feedkeys(":abc def ghi\<S-Left>\<C-W>\<C-B>\"\<CR>", 'tx')
595 call assert_equal('"abc ghi', @:, e)
596
597 call feedkeys(":abc def\<S-Left>\<C-U>\<C-B>\"\<CR>", 'tx')
598 call assert_equal('"def', @:, e)
599 endfor
600
601 let &encoding = encoding_save
602endfunc
603
604func Test_cmdline_keymap_ctrl_hat()
Bram Moolenaar6d91bcb2020-08-12 18:50:36 +0200605 CheckFeature keymap
Bram Moolenaar59cb0412019-12-18 22:26:31 +0100606
607 set keymap=esperanto
608 call feedkeys(":\"Jxauxdo \<C-^>Jxauxdo \<C-^>Jxauxdo\<CR>", 'tx')
609 call assert_equal('"Jxauxdo Ĵaŭdo Jxauxdo', @:)
610 set keymap=
Bram Moolenaareaaa9bb2016-12-09 18:42:20 +0100611endfunc
Bram Moolenaarfe38b492016-12-11 21:34:23 +0100612
Bram Moolenaarf1f6f3f2017-02-09 22:28:20 +0100613func Test_illegal_address1()
Bram Moolenaarfe38b492016-12-11 21:34:23 +0100614 new
615 2;'(
616 2;')
617 quit
618endfunc
Bram Moolenaarba47b512017-01-24 21:18:19 +0100619
Bram Moolenaarf1f6f3f2017-02-09 22:28:20 +0100620func Test_illegal_address2()
621 call writefile(['c', 'x', ' x', '.', '1;y'], 'Xtest.vim')
622 new
623 source Xtest.vim
624 " Trigger calling validate_cursor()
625 diffsp Xtest.vim
626 quit!
627 bwipe!
628 call delete('Xtest.vim')
629endfunc
630
Bram Moolenaarba47b512017-01-24 21:18:19 +0100631func Test_cmdline_complete_wildoptions()
632 help
633 call feedkeys(":tag /\<c-a>\<c-b>\"\<cr>", 'tx')
634 let a = join(sort(split(@:)),' ')
635 set wildoptions=tagfile
636 call feedkeys(":tag /\<c-a>\<c-b>\"\<cr>", 'tx')
637 let b = join(sort(split(@:)),' ')
638 call assert_equal(a, b)
639 bw!
640endfunc
Bram Moolenaarcbf20fb2017-02-03 21:19:04 +0100641
Bram Moolenaara33ddbb2017-03-29 21:30:04 +0200642func Test_cmdline_complete_user_cmd()
643 command! -complete=color -nargs=1 Foo :
644 call feedkeys(":Foo \<Tab>\<Home>\"\<cr>", 'tx')
645 call assert_equal('"Foo blue', @:)
646 call feedkeys(":Foo b\<Tab>\<Home>\"\<cr>", 'tx')
647 call assert_equal('"Foo blue', @:)
648 delcommand Foo
649endfunc
650
Bram Moolenaarcc390ff2020-02-29 22:06:30 +0100651func s:ScriptLocalFunction()
652 echo 'yes'
653endfunc
654
655func Test_cmdline_complete_user_func()
656 call feedkeys(":func Test_cmdline_complete_user\<Tab>\<Home>\"\<cr>", 'tx')
naohiro ono5aec7552021-08-19 21:20:41 +0200657 call assert_match('"func Test_cmdline_complete_user_', @:)
Bram Moolenaarcc390ff2020-02-29 22:06:30 +0100658 call feedkeys(":func s:ScriptL\<Tab>\<Home>\"\<cr>", 'tx')
659 call assert_match('"func <SNR>\d\+_ScriptLocalFunction', @:)
Bram Moolenaar1bb4de52021-01-13 19:48:46 +0100660
661 " g: prefix also works
662 call feedkeys(":echo g:Test_cmdline_complete_user_f\<Tab>\<Home>\"\<cr>", 'tx')
663 call assert_match('"echo g:Test_cmdline_complete_user_func', @:)
Bram Moolenaar069f9082021-08-13 17:48:25 +0200664
665 " using g: prefix does not result in just "g:" matches from a lambda
666 let Fx = { a -> a }
667 call feedkeys(":echo g:\<Tab>\<Home>\"\<cr>", 'tx')
668 call assert_match('"echo g:[A-Z]', @:)
naohiro ono5aec7552021-08-19 21:20:41 +0200669
670 " existence of script-local dict function does not break user function name
671 " completion
672 function s:a_dict_func() dict
673 endfunction
674 call feedkeys(":call Test_cmdline_complete_user\<Tab>\<Home>\"\<cr>", 'tx')
675 call assert_match('"call Test_cmdline_complete_user_', @:)
676 delfunction s:a_dict_func
Bram Moolenaarcc390ff2020-02-29 22:06:30 +0100677endfunc
678
Bram Moolenaar5f8f2d32018-06-19 19:09:09 +0200679func Test_cmdline_complete_user_names()
680 if has('unix') && executable('whoami')
681 let whoami = systemlist('whoami')[0]
682 let first_letter = whoami[0]
683 if len(first_letter) > 0
684 " Trying completion of :e ~x where x is the first letter of
685 " the user name should complete to at least the user name.
686 call feedkeys(':e ~' . first_letter . "\<c-a>\<c-B>\"\<cr>", 'tx')
687 call assert_match('^"e \~.*\<' . whoami . '\>', @:)
688 endif
Bram Moolenaar6d91bcb2020-08-12 18:50:36 +0200689 elseif has('win32')
Bram Moolenaar5f8f2d32018-06-19 19:09:09 +0200690 " Just in case: check that the system has an Administrator account.
691 let names = system('net user')
692 if names =~ 'Administrator'
693 " Trying completion of :e ~A should complete to Administrator.
Bram Moolenaar346d2a32019-01-27 20:43:41 +0100694 " There could be other names starting with "A" before Administrator.
Bram Moolenaar5f8f2d32018-06-19 19:09:09 +0200695 call feedkeys(':e ~A' . "\<c-a>\<c-B>\"\<cr>", 'tx')
Bram Moolenaar346d2a32019-01-27 20:43:41 +0100696 call assert_match('^"e \~.*Administrator', @:)
Bram Moolenaar5f8f2d32018-06-19 19:09:09 +0200697 endif
Bram Moolenaar6d91bcb2020-08-12 18:50:36 +0200698 else
699 throw 'Skipped: does not work on this platform'
Bram Moolenaar5f8f2d32018-06-19 19:09:09 +0200700 endif
701endfunc
702
Bram Moolenaar297610b2019-12-27 17:20:55 +0100703func Test_cmdline_complete_bang()
Bram Moolenaar6d91bcb2020-08-12 18:50:36 +0200704 CheckExecutable whoami
705 call feedkeys(":!whoam\<C-A>\<C-B>\"\<CR>", 'tx')
706 call assert_match('^".*\<whoami\>', @:)
Bram Moolenaar297610b2019-12-27 17:20:55 +0100707endfunc
708
Bram Moolenaar8b633132020-03-20 18:20:51 +0100709func Test_cmdline_complete_languages()
Bram Moolenaar84cf6bd2020-06-16 20:03:43 +0200710 let lang = substitute(execute('language time'), '.*"\(.*\)"$', '\1', '')
711 call assert_equal(lang, v:lc_time)
712
713 let lang = substitute(execute('language ctype'), '.*"\(.*\)"$', '\1', '')
714 call assert_equal(lang, v:ctype)
715
716 let lang = substitute(execute('language collate'), '.*"\(.*\)"$', '\1', '')
717 call assert_equal(lang, v:collate)
718
Bram Moolenaar5f8f2d32018-06-19 19:09:09 +0200719 let lang = substitute(execute('language messages'), '.*"\(.*\)"$', '\1', '')
Bram Moolenaar84cf6bd2020-06-16 20:03:43 +0200720 call assert_equal(lang, v:lang)
Bram Moolenaar5f8f2d32018-06-19 19:09:09 +0200721
722 call feedkeys(":language \<c-a>\<c-b>\"\<cr>", 'tx')
Bram Moolenaar84cf6bd2020-06-16 20:03:43 +0200723 call assert_match('^"language .*\<collate\>.*\<ctype\>.*\<messages\>.*\<time\>', @:)
Bram Moolenaar5f8f2d32018-06-19 19:09:09 +0200724
Bram Moolenaarec680282020-06-12 19:35:32 +0200725 call assert_match('^"language .*\<' . lang . '\>', @:)
Bram Moolenaar5f8f2d32018-06-19 19:09:09 +0200726
Bram Moolenaarec680282020-06-12 19:35:32 +0200727 call feedkeys(":language messages \<c-a>\<c-b>\"\<cr>", 'tx')
728 call assert_match('^"language .*\<' . lang . '\>', @:)
Bram Moolenaar5f8f2d32018-06-19 19:09:09 +0200729
Bram Moolenaarec680282020-06-12 19:35:32 +0200730 call feedkeys(":language ctype \<c-a>\<c-b>\"\<cr>", 'tx')
731 call assert_match('^"language .*\<' . lang . '\>', @:)
Bram Moolenaar5f8f2d32018-06-19 19:09:09 +0200732
Bram Moolenaarec680282020-06-12 19:35:32 +0200733 call feedkeys(":language time \<c-a>\<c-b>\"\<cr>", 'tx')
734 call assert_match('^"language .*\<' . lang . '\>', @:)
Bram Moolenaar84cf6bd2020-06-16 20:03:43 +0200735
736 call feedkeys(":language collate \<c-a>\<c-b>\"\<cr>", 'tx')
737 call assert_match('^"language .*\<' . lang . '\>', @:)
Bram Moolenaar5f8f2d32018-06-19 19:09:09 +0200738endfunc
739
Bram Moolenaar297610b2019-12-27 17:20:55 +0100740func Test_cmdline_complete_env_variable()
741 let $X_VIM_TEST_COMPLETE_ENV = 'foo'
Bram Moolenaar297610b2019-12-27 17:20:55 +0100742 call feedkeys(":edit $X_VIM_TEST_COMPLETE_E\<C-A>\<C-B>\"\<CR>", 'tx')
743 call assert_match('"edit $X_VIM_TEST_COMPLETE_ENV', @:)
Bram Moolenaar297610b2019-12-27 17:20:55 +0100744 unlet $X_VIM_TEST_COMPLETE_ENV
745endfunc
746
Bram Moolenaar4941b5e2020-12-24 17:15:53 +0100747func Test_cmdline_complete_expression()
748 let g:SomeVar = 'blah'
749 for cmd in ['exe', 'echo', 'echon', 'echomsg']
750 call feedkeys(":" .. cmd .. " SomeV\<Tab>\<C-B>\"\<CR>", 'tx')
751 call assert_match('"' .. cmd .. ' SomeVar', @:)
752 call feedkeys(":" .. cmd .. " foo SomeV\<Tab>\<C-B>\"\<CR>", 'tx')
753 call assert_match('"' .. cmd .. ' foo SomeVar', @:)
754 endfor
755 unlet g:SomeVar
756endfunc
757
Bram Moolenaar47016f52021-08-26 16:39:58 +0200758" Unique function name for completion below
759func s:WeirdFunc()
760 echo 'weird'
761endfunc
762
Bram Moolenaar24ebd832020-03-16 21:25:24 +0100763" Test for various command-line completion
764func Test_cmdline_complete_various()
765 " completion for a command starting with a comment
766 call feedkeys(": :|\"\<C-A>\<C-B>\"\<CR>", 'xt')
767 call assert_equal("\" :|\"\<C-A>", @:)
768
769 " completion for a range followed by a comment
770 call feedkeys(":1,2\"\<C-A>\<C-B>\"\<CR>", 'xt')
771 call assert_equal("\"1,2\"\<C-A>", @:)
772
773 " completion for :k command
774 call feedkeys(":ka\<C-A>\<C-B>\"\<CR>", 'xt')
775 call assert_equal("\"ka\<C-A>", @:)
776
777 " completion for short version of the :s command
778 call feedkeys(":sI \<C-A>\<C-B>\"\<CR>", 'xt')
779 call assert_equal("\"sI \<C-A>", @:)
780
781 " completion for :write command
782 call mkdir('Xdir')
783 call writefile(['one'], 'Xdir/Xfile1')
784 let save_cwd = getcwd()
785 cd Xdir
786 call feedkeys(":w >> \<C-A>\<C-B>\"\<CR>", 'xt')
787 call assert_equal("\"w >> Xfile1", @:)
788 call chdir(save_cwd)
789 call delete('Xdir', 'rf')
790
791 " completion for :w ! and :r ! commands
792 call feedkeys(":w !invalid_xyz_cmd\<C-A>\<C-B>\"\<CR>", 'xt')
793 call assert_equal("\"w !invalid_xyz_cmd", @:)
794 call feedkeys(":r !invalid_xyz_cmd\<C-A>\<C-B>\"\<CR>", 'xt')
795 call assert_equal("\"r !invalid_xyz_cmd", @:)
796
797 " completion for :>> and :<< commands
798 call feedkeys(":>>>\<C-A>\<C-B>\"\<CR>", 'xt')
799 call assert_equal("\">>>\<C-A>", @:)
800 call feedkeys(":<<<\<C-A>\<C-B>\"\<CR>", 'xt')
801 call assert_equal("\"<<<\<C-A>", @:)
802
803 " completion for command with +cmd argument
804 call feedkeys(":buffer +/pat Xabc\<C-A>\<C-B>\"\<CR>", 'xt')
805 call assert_equal("\"buffer +/pat Xabc", @:)
806 call feedkeys(":buffer +/pat\<C-A>\<C-B>\"\<CR>", 'xt')
807 call assert_equal("\"buffer +/pat\<C-A>", @:)
808
809 " completion for a command with a trailing comment
810 call feedkeys(":ls \" comment\<C-A>\<C-B>\"\<CR>", 'xt')
811 call assert_equal("\"ls \" comment\<C-A>", @:)
812
813 " completion for a command with a trailing command
814 call feedkeys(":ls | ls\<C-A>\<C-B>\"\<CR>", 'xt')
815 call assert_equal("\"ls | ls", @:)
816
817 " completion for a command with an CTRL-V escaped argument
818 call feedkeys(":ls \<C-V>\<C-V>a\<C-A>\<C-B>\"\<CR>", 'xt')
819 call assert_equal("\"ls \<C-V>a\<C-A>", @:)
820
821 " completion for a command that doesn't take additional arguments
822 call feedkeys(":all abc\<C-A>\<C-B>\"\<CR>", 'xt')
823 call assert_equal("\"all abc\<C-A>", @:)
824
825 " completion for a command with a command modifier
826 call feedkeys(":topleft new\<C-A>\<C-B>\"\<CR>", 'xt')
827 call assert_equal("\"topleft new", @:)
828
Bram Moolenaare70e12b2021-06-13 17:20:08 +0200829 " completion for vim9 and legacy commands
830 call feedkeys(":vim9 call strle\<C-A>\<C-B>\"\<CR>", 'xt')
831 call assert_equal("\"vim9 call strlen(", @:)
832 call feedkeys(":legac call strle\<C-A>\<C-B>\"\<CR>", 'xt')
833 call assert_equal("\"legac call strlen(", @:)
834
Bram Moolenaar4ee9d8e2021-06-13 18:38:48 +0200835 " completion for the :disassemble command
836 call feedkeys(":disas deb\<C-A>\<C-B>\"\<CR>", 'xt')
837 call assert_equal("\"disas debug", @:)
838 call feedkeys(":disas pro\<C-A>\<C-B>\"\<CR>", 'xt')
839 call assert_equal("\"disas profile", @:)
840 call feedkeys(":disas debug Test_cmdline_complete_var\<C-A>\<C-B>\"\<CR>", 'xt')
841 call assert_equal("\"disas debug Test_cmdline_complete_various", @:)
842 call feedkeys(":disas profile Test_cmdline_complete_var\<C-A>\<C-B>\"\<CR>", 'xt')
843 call assert_equal("\"disas profile Test_cmdline_complete_various", @:)
844
Bram Moolenaar47016f52021-08-26 16:39:58 +0200845 call feedkeys(":disas s:WeirdF\<C-A>\<C-B>\"\<CR>", 'xt')
846 call assert_match('"disas <SNR>\d\+_WeirdFunc()', @:)
847
Bram Moolenaar24ebd832020-03-16 21:25:24 +0100848 " completion for the :match command
849 call feedkeys(":match Search /pat/\<C-A>\<C-B>\"\<CR>", 'xt')
850 call assert_equal("\"match Search /pat/\<C-A>", @:)
851
852 " completion for the :s command
853 call feedkeys(":s/from/to/g\<C-A>\<C-B>\"\<CR>", 'xt')
854 call assert_equal("\"s/from/to/g\<C-A>", @:)
855
856 " completion for the :dlist command
857 call feedkeys(":dlist 10 /pat/ a\<C-A>\<C-B>\"\<CR>", 'xt')
858 call assert_equal("\"dlist 10 /pat/ a\<C-A>", @:)
859
860 " completion for the :doautocmd command
861 call feedkeys(":doautocmd User MyCmd a.c\<C-A>\<C-B>\"\<CR>", 'xt')
862 call assert_equal("\"doautocmd User MyCmd a.c\<C-A>", @:)
863
Bram Moolenaarafe8cf62020-10-05 20:07:18 +0200864 " completion of autocmd group after comma
865 call feedkeys(":doautocmd BufNew,BufEn\<C-A>\<C-B>\"\<CR>", 'xt')
866 call assert_equal("\"doautocmd BufNew,BufEnter", @:)
867
Dominique Pellebfb2bb12021-08-14 21:11:51 +0200868 " completion of file name in :doautocmd
869 call writefile([], 'Xfile1')
870 call writefile([], 'Xfile2')
871 call feedkeys(":doautocmd BufEnter Xfi\<C-A>\<C-B>\"\<CR>", 'xt')
872 call assert_equal("\"doautocmd BufEnter Xfile1 Xfile2", @:)
873 call delete('Xfile1')
874 call delete('Xfile2')
875
Bram Moolenaar24ebd832020-03-16 21:25:24 +0100876 " completion for the :augroup command
877 augroup XTest
878 augroup END
879 call feedkeys(":augroup X\<C-A>\<C-B>\"\<CR>", 'xt')
880 call assert_equal("\"augroup XTest", @:)
881 augroup! XTest
882
883 " completion for the :unlet command
884 call feedkeys(":unlet one two\<C-A>\<C-B>\"\<CR>", 'xt')
885 call assert_equal("\"unlet one two", @:)
886
887 " completion for the :bdelete command
888 call feedkeys(":bdel a b c\<C-A>\<C-B>\"\<CR>", 'xt')
889 call assert_equal("\"bdel a b c", @:)
890
891 " completion for the :mapclear command
892 call feedkeys(":mapclear \<C-A>\<C-B>\"\<CR>", 'xt')
893 call assert_equal("\"mapclear <buffer>", @:)
894
895 " completion for user defined commands with menu names
896 menu Test.foo :ls<CR>
897 com -nargs=* -complete=menu MyCmd
898 call feedkeys(":MyCmd Te\<C-A>\<C-B>\"\<CR>", 'xt')
899 call assert_equal('"MyCmd Test.', @:)
900 delcom MyCmd
901 unmenu Test
902
903 " completion for user defined commands with mappings
904 mapclear
905 map <F3> :ls<CR>
906 com -nargs=* -complete=mapping MyCmd
907 call feedkeys(":MyCmd <F\<C-A>\<C-B>\"\<CR>", 'xt')
908 call assert_equal('"MyCmd <F3>', @:)
909 mapclear
910 delcom MyCmd
911
912 " completion for :set path= with multiple backslashes
913 call feedkeys(":set path=a\\\\\\ b\<C-A>\<C-B>\"\<CR>", 'xt')
914 call assert_equal('"set path=a\\\ b', @:)
915
916 " completion for :set dir= with a backslash
917 call feedkeys(":set dir=a\\ b\<C-A>\<C-B>\"\<CR>", 'xt')
918 call assert_equal('"set dir=a\ b', @:)
919
920 " completion for the :py3 commands
921 call feedkeys(":py3\<C-A>\<C-B>\"\<CR>", 'xt')
922 call assert_equal('"py3 py3do py3file', @:)
923
Bram Moolenaardf749a22021-03-28 15:29:43 +0200924 " completion for the :vim9 commands
925 call feedkeys(":vim9\<C-A>\<C-B>\"\<CR>", 'xt')
926 call assert_equal('"vim9cmd vim9script', @:)
927
Bram Moolenaar24ebd832020-03-16 21:25:24 +0100928 " redir @" is not the start of a comment. So complete after that
929 call feedkeys(":redir @\" | cwin\t\<C-B>\"\<CR>", 'xt')
930 call assert_equal('"redir @" | cwindow', @:)
931
932 " completion after a backtick
933 call feedkeys(":e `a1b2c\t\<C-B>\"\<CR>", 'xt')
934 call assert_equal('"e `a1b2c', @:)
935
Bram Moolenaar8dfcce32020-03-18 19:32:26 +0100936 " completion for :language command with an invalid argument
937 call feedkeys(":language dummy \t\<C-B>\"\<CR>", 'xt')
938 call assert_equal("\"language dummy \t", @:)
939
940 " completion for commands after a :global command
Bram Moolenaar8b633132020-03-20 18:20:51 +0100941 call feedkeys(":g/a\\xb/clearj\t\<C-B>\"\<CR>", 'xt')
942 call assert_equal('"g/a\xb/clearjumps', @:)
Bram Moolenaar8dfcce32020-03-18 19:32:26 +0100943
944 " completion with ambiguous user defined commands
945 com TCmd1 echo 'TCmd1'
946 com TCmd2 echo 'TCmd2'
947 call feedkeys(":TCmd \t\<C-B>\"\<CR>", 'xt')
948 call assert_equal('"TCmd ', @:)
949 delcom TCmd1
950 delcom TCmd2
951
952 " completion after a range followed by a pipe (|) character
953 call feedkeys(":1,10 | chist\t\<C-B>\"\<CR>", 'xt')
954 call assert_equal('"1,10 | chistory', @:)
Bram Moolenaar9c929712020-09-07 22:05:28 +0200955
956 " use <Esc> as the 'wildchar' for completion
957 set wildchar=<Esc>
958 call feedkeys(":g/a\\xb/clearj\<Esc>\<C-B>\"\<CR>", 'xt')
959 call assert_equal('"g/a\xb/clearjumps', @:)
960 " pressing <esc> twice should cancel the command
961 call feedkeys(":chist\<Esc>\<Esc>", 'xt')
962 call assert_equal('"g/a\xb/clearjumps', @:)
963 set wildchar&
Bram Moolenaar24ebd832020-03-16 21:25:24 +0100964endfunc
965
Bram Moolenaarc312b8b2017-10-28 17:53:04 +0200966func Test_cmdline_write_alternatefile()
967 new
968 call setline('.', ['one', 'two'])
969 f foo.txt
970 new
971 f #-A
972 call assert_equal('foo.txt-A', expand('%'))
973 f #<-B.txt
974 call assert_equal('foo-B.txt', expand('%'))
975 f %<
976 call assert_equal('foo-B', expand('%'))
977 new
Bram Moolenaare2e40752020-09-04 21:18:46 +0200978 call assert_fails('f #<', 'E95:')
Bram Moolenaarc312b8b2017-10-28 17:53:04 +0200979 bw!
980 f foo-B.txt
981 f %<-A
982 call assert_equal('foo-B-A', expand('%'))
983 bw!
984 bw!
985endfunc
986
Bram Moolenaarcbf20fb2017-02-03 21:19:04 +0100987" using a leading backslash here
988set cpo+=C
989
990func Test_cmdline_search_range()
991 new
992 call setline(1, ['a', 'b', 'c', 'd'])
993 /d
994 1,\/s/b/B/
995 call assert_equal('B', getline(2))
996
997 /a
998 $
999 \?,4s/c/C/
1000 call assert_equal('C', getline(3))
1001
1002 call setline(1, ['a', 'b', 'c', 'd'])
1003 %s/c/c/
1004 1,\&s/b/B/
1005 call assert_equal('B', getline(2))
1006
Bram Moolenaarf0cee192020-02-16 13:33:56 +01001007 let @/ = 'apple'
Bram Moolenaar9b7bf9e2020-07-11 22:14:59 +02001008 call assert_fails('\/print', ['E486:.*apple'])
Bram Moolenaarf0cee192020-02-16 13:33:56 +01001009
Bram Moolenaarcbf20fb2017-02-03 21:19:04 +01001010 bwipe!
1011endfunc
1012
Bram Moolenaarf0cee192020-02-16 13:33:56 +01001013" Test for the tick mark (') in an excmd range
1014func Test_tick_mark_in_range()
1015 " If only the tick is passed as a range and no command is specified, there
1016 " should not be an error
1017 call feedkeys(":'\<CR>", 'xt')
1018 call assert_equal("'", getreg(':'))
1019 call assert_fails("',print", 'E78:')
1020endfunc
1021
1022" Test for using a line number followed by a search pattern as range
1023func Test_lnum_and_pattern_as_range()
1024 new
1025 call setline(1, ['foo 1', 'foo 2', 'foo 3'])
1026 let @" = ''
1027 2/foo/yank
1028 call assert_equal("foo 3\n", @")
1029 call assert_equal(1, line('.'))
1030 close!
1031endfunc
1032
Bram Moolenaar65189a12017-02-06 22:22:17 +01001033" Tests for getcmdline(), getcmdpos() and getcmdtype()
1034func Check_cmdline(cmdtype)
1035 call assert_equal('MyCmd a', getcmdline())
1036 call assert_equal(8, getcmdpos())
1037 call assert_equal(a:cmdtype, getcmdtype())
1038 return ''
1039endfunc
1040
Bram Moolenaar96e38a82019-09-09 18:35:33 +02001041set cpo&
1042
Bram Moolenaar65189a12017-02-06 22:22:17 +01001043func Test_getcmdtype()
1044 call feedkeys(":MyCmd a\<C-R>=Check_cmdline(':')\<CR>\<Esc>", "xt")
1045
1046 let cmdtype = ''
1047 debuggreedy
1048 call feedkeys(":debug echo 'test'\<CR>", "t")
1049 call feedkeys("let cmdtype = \<C-R>=string(getcmdtype())\<CR>\<CR>", "t")
1050 call feedkeys("cont\<CR>", "xt")
1051 0debuggreedy
1052 call assert_equal('>', cmdtype)
1053
1054 call feedkeys("/MyCmd a\<C-R>=Check_cmdline('/')\<CR>\<Esc>", "xt")
1055 call feedkeys("?MyCmd a\<C-R>=Check_cmdline('?')\<CR>\<Esc>", "xt")
1056
1057 call feedkeys(":call input('Answer?')\<CR>", "t")
Bram Moolenaar31eb1392017-02-09 21:44:03 +01001058 call feedkeys("MyCmd a\<C-R>=Check_cmdline('@')\<CR>\<C-C>", "xt")
Bram Moolenaar65189a12017-02-06 22:22:17 +01001059
1060 call feedkeys(":insert\<CR>MyCmd a\<C-R>=Check_cmdline('-')\<CR>\<Esc>", "xt")
1061
1062 cnoremap <expr> <F6> Check_cmdline('=')
1063 call feedkeys("a\<C-R>=MyCmd a\<F6>\<Esc>\<Esc>", "xt")
1064 cunmap <F6>
Bram Moolenaar8d588cc2020-02-25 21:47:45 +01001065
1066 call assert_equal('', getcmdline())
Bram Moolenaar65189a12017-02-06 22:22:17 +01001067endfunc
1068
Bram Moolenaar81612b72018-06-23 14:55:03 +02001069func Test_getcmdwintype()
Bram Moolenaar21829c52021-01-26 22:42:21 +01001070 CheckFeature cmdwin
1071
Bram Moolenaar81612b72018-06-23 14:55:03 +02001072 call feedkeys("q/:let a = getcmdwintype()\<CR>:q\<CR>", 'x!')
1073 call assert_equal('/', a)
1074
1075 call feedkeys("q?:let a = getcmdwintype()\<CR>:q\<CR>", 'x!')
1076 call assert_equal('?', a)
1077
1078 call feedkeys("q::let a = getcmdwintype()\<CR>:q\<CR>", 'x!')
1079 call assert_equal(':', a)
1080
1081 call feedkeys(":\<C-F>:let a = getcmdwintype()\<CR>:q\<CR>", 'x!')
1082 call assert_equal(':', a)
1083
1084 call assert_equal('', getcmdwintype())
1085endfunc
1086
Bram Moolenaar96e38a82019-09-09 18:35:33 +02001087func Test_getcmdwin_autocmd()
Bram Moolenaar21829c52021-01-26 22:42:21 +01001088 CheckFeature cmdwin
1089
Bram Moolenaar96e38a82019-09-09 18:35:33 +02001090 let s:seq = []
1091 augroup CmdWin
1092 au WinEnter * call add(s:seq, 'WinEnter ' .. win_getid())
1093 au WinLeave * call add(s:seq, 'WinLeave ' .. win_getid())
1094 au BufEnter * call add(s:seq, 'BufEnter ' .. bufnr())
1095 au BufLeave * call add(s:seq, 'BufLeave ' .. bufnr())
1096 au CmdWinEnter * call add(s:seq, 'CmdWinEnter ' .. win_getid())
1097 au CmdWinLeave * call add(s:seq, 'CmdWinLeave ' .. win_getid())
1098
1099 let org_winid = win_getid()
1100 let org_bufnr = bufnr()
1101 call feedkeys("q::let a = getcmdwintype()\<CR>:let s:cmd_winid = win_getid()\<CR>:let s:cmd_bufnr = bufnr()\<CR>:q\<CR>", 'x!')
1102 call assert_equal(':', a)
1103 call assert_equal([
1104 \ 'WinLeave ' .. org_winid,
1105 \ 'WinEnter ' .. s:cmd_winid,
1106 \ 'BufLeave ' .. org_bufnr,
1107 \ 'BufEnter ' .. s:cmd_bufnr,
1108 \ 'CmdWinEnter ' .. s:cmd_winid,
1109 \ 'CmdWinLeave ' .. s:cmd_winid,
1110 \ 'BufLeave ' .. s:cmd_bufnr,
1111 \ 'WinLeave ' .. s:cmd_winid,
1112 \ 'WinEnter ' .. org_winid,
1113 \ 'BufEnter ' .. org_bufnr,
1114 \ ], s:seq)
1115
1116 au!
1117 augroup END
1118endfunc
1119
Bram Moolenaar52604f22017-04-07 16:17:39 +02001120func Test_verbosefile()
1121 set verbosefile=Xlog
1122 echomsg 'foo'
1123 echomsg 'bar'
1124 set verbosefile=
1125 let log = readfile('Xlog')
1126 call assert_match("foo\nbar", join(log, "\n"))
1127 call delete('Xlog')
Bram Moolenaarad48e6c2020-04-21 22:19:45 +02001128 call mkdir('Xdir')
Bram Moolenaar9b7bf9e2020-07-11 22:14:59 +02001129 call assert_fails('set verbosefile=Xdir', ['E484:.*Xdir', 'E474:'])
Bram Moolenaarad48e6c2020-04-21 22:19:45 +02001130 call delete('Xdir', 'd')
Bram Moolenaar52604f22017-04-07 16:17:39 +02001131endfunc
1132
Bram Moolenaar4facea32019-10-12 20:17:40 +02001133func Test_verbose_option()
1134 CheckScreendump
1135
1136 let lines =<< trim [SCRIPT]
1137 command DoSomething echo 'hello' |set ts=4 |let v = '123' |echo v
1138 call feedkeys("\r", 't') " for the hit-enter prompt
1139 set verbose=20
1140 [SCRIPT]
1141 call writefile(lines, 'XTest_verbose')
1142
1143 let buf = RunVimInTerminal('-S XTest_verbose', {'rows': 12})
Bram Moolenaar6a2c5a72020-04-08 21:50:25 +02001144 call TermWait(buf, 50)
Bram Moolenaar4facea32019-10-12 20:17:40 +02001145 call term_sendkeys(buf, ":DoSomething\<CR>")
1146 call VerifyScreenDump(buf, 'Test_verbose_option_1', {})
1147
1148 " clean up
1149 call StopVimInTerminal(buf)
1150 call delete('XTest_verbose')
1151endfunc
1152
Bram Moolenaarff3be4f2018-05-12 13:18:46 +02001153func Test_setcmdpos()
1154 func InsertTextAtPos(text, pos)
1155 call assert_equal(0, setcmdpos(a:pos))
1156 return a:text
1157 endfunc
1158
1159 " setcmdpos() with position in the middle of the command line.
1160 call feedkeys(":\"12\<C-R>=InsertTextAtPos('a', 3)\<CR>b\<CR>", 'xt')
1161 call assert_equal('"1ab2', @:)
1162
1163 call feedkeys(":\"12\<C-R>\<C-R>=InsertTextAtPos('a', 3)\<CR>b\<CR>", 'xt')
1164 call assert_equal('"1b2a', @:)
1165
1166 " setcmdpos() with position beyond the end of the command line.
1167 call feedkeys(":\"12\<C-B>\<C-R>=InsertTextAtPos('a', 10)\<CR>b\<CR>", 'xt')
1168 call assert_equal('"12ab', @:)
1169
1170 " setcmdpos() returns 1 when not editing the command line.
Bram Moolenaar196b4662019-09-06 21:34:30 +02001171 call assert_equal(1, 3->setcmdpos())
Bram Moolenaarff3be4f2018-05-12 13:18:46 +02001172endfunc
1173
Bram Moolenaarc0676ba2018-12-31 21:03:02 +01001174func Test_cmdline_overstrike()
Bram Moolenaar30276f22019-01-24 17:59:39 +01001175 let encodings = ['latin1', 'utf8']
Bram Moolenaarc0676ba2018-12-31 21:03:02 +01001176 let encoding_save = &encoding
1177
1178 for e in encodings
1179 exe 'set encoding=' . e
1180
1181 " Test overstrike in the middle of the command line.
1182 call feedkeys(":\"01234\<home>\<right>\<right>ab\<right>\<insert>cd\<enter>", 'xt')
Bram Moolenaar59cb0412019-12-18 22:26:31 +01001183 call assert_equal('"0ab1cd4', @:, e)
Bram Moolenaarc0676ba2018-12-31 21:03:02 +01001184
1185 " Test overstrike going beyond end of command line.
1186 call feedkeys(":\"01234\<home>\<right>\<right>ab\<right>\<insert>cdefgh\<enter>", 'xt')
Bram Moolenaar59cb0412019-12-18 22:26:31 +01001187 call assert_equal('"0ab1cdefgh', @:, e)
Bram Moolenaarc0676ba2018-12-31 21:03:02 +01001188
1189 " Test toggling insert/overstrike a few times.
1190 call feedkeys(":\"01234\<home>\<right>ab\<right>\<insert>cd\<right>\<insert>ef\<enter>", 'xt')
Bram Moolenaar59cb0412019-12-18 22:26:31 +01001191 call assert_equal('"ab0cd3ef4', @:, e)
Bram Moolenaarc0676ba2018-12-31 21:03:02 +01001192 endfor
1193
Bram Moolenaar30276f22019-01-24 17:59:39 +01001194 " Test overstrike with multi-byte characters.
1195 call feedkeys(":\"テキストエディタ\<home>\<right>\<right>ab\<right>\<insert>cd\<enter>", 'xt')
Bram Moolenaar59cb0412019-12-18 22:26:31 +01001196 call assert_equal('"テabキcdエディタ', @:, e)
Bram Moolenaarc0676ba2018-12-31 21:03:02 +01001197
1198 let &encoding = encoding_save
1199endfunc
Bram Moolenaara046b372019-09-15 17:26:07 +02001200
1201func Test_cmdwin_bug()
Bram Moolenaar21829c52021-01-26 22:42:21 +01001202 CheckFeature cmdwin
1203
Bram Moolenaara046b372019-09-15 17:26:07 +02001204 let winid = win_getid()
1205 sp
1206 try
1207 call feedkeys("q::call win_gotoid(" .. winid .. ")\<CR>:q\<CR>", 'x!')
1208 catch /^Vim\%((\a\+)\)\=:E11/
1209 endtry
1210 bw!
1211endfunc
Bram Moolenaar52410572019-10-27 05:12:45 +01001212
Bram Moolenaar1c329c02019-10-27 20:37:35 +01001213func Test_cmdwin_restore()
Bram Moolenaar21829c52021-01-26 22:42:21 +01001214 CheckFeature cmdwin
Bram Moolenaar1c329c02019-10-27 20:37:35 +01001215 CheckScreendump
1216
1217 let lines =<< trim [SCRIPT]
1218 call setline(1, range(30))
1219 2split
1220 [SCRIPT]
1221 call writefile(lines, 'XTest_restore')
1222
1223 let buf = RunVimInTerminal('-S XTest_restore', {'rows': 12})
Bram Moolenaar6a2c5a72020-04-08 21:50:25 +02001224 call TermWait(buf, 50)
Bram Moolenaar1c329c02019-10-27 20:37:35 +01001225 call term_sendkeys(buf, "q:")
1226 call VerifyScreenDump(buf, 'Test_cmdwin_restore_1', {})
1227
1228 " normal restore
1229 call term_sendkeys(buf, ":q\<CR>")
1230 call VerifyScreenDump(buf, 'Test_cmdwin_restore_2', {})
1231
1232 " restore after setting 'lines' with one window
1233 call term_sendkeys(buf, ":close\<CR>")
1234 call term_sendkeys(buf, "q:")
1235 call term_sendkeys(buf, ":set lines=18\<CR>")
1236 call term_sendkeys(buf, ":q\<CR>")
1237 call VerifyScreenDump(buf, 'Test_cmdwin_restore_3', {})
1238
1239 " clean up
1240 call StopVimInTerminal(buf)
1241 call delete('XTest_restore')
1242endfunc
1243
Bram Moolenaare5b44862021-05-30 13:54:03 +02001244func Test_cmdwin_no_terminal()
1245 CheckFeature cmdwin
1246 CheckFeature terminal
Bram Moolenaar0b496482021-05-30 14:21:57 +02001247 CheckNotMSWindows
Bram Moolenaare5b44862021-05-30 13:54:03 +02001248
1249 let buf = RunVimInTerminal('', {'rows': 12})
1250 call TermWait(buf, 50)
1251 call term_sendkeys(buf, ":set cmdheight=2\<CR>")
1252 call term_sendkeys(buf, "q:")
1253 call term_sendkeys(buf, ":let buf = term_start(['/bin/echo'], #{hidden: 1})\<CR>")
1254 call VerifyScreenDump(buf, 'Test_cmdwin_no_terminal', {})
1255 call term_sendkeys(buf, ":q\<CR>")
1256 call StopVimInTerminal(buf)
1257endfunc
1258
Bram Moolenaar52410572019-10-27 05:12:45 +01001259func Test_buffers_lastused()
1260 " check that buffers are sorted by time when wildmode has lastused
1261 call test_settime(1550020000) " middle
1262 edit bufa
1263 enew
1264 call test_settime(1550030000) " newest
1265 edit bufb
1266 enew
1267 call test_settime(1550010000) " oldest
1268 edit bufc
1269 enew
1270 call test_settime(0)
1271 enew
1272
1273 call assert_equal(['bufa', 'bufb', 'bufc'],
1274 \ getcompletion('', 'buffer'))
1275
1276 let save_wildmode = &wildmode
1277 set wildmode=full:lastused
1278
1279 let cap = "\<c-r>=execute('let X=getcmdline()')\<cr>"
1280 call feedkeys(":b \<tab>" .. cap .. "\<esc>", 'xt')
1281 call assert_equal('b bufb', X)
1282 call feedkeys(":b \<tab>\<tab>" .. cap .. "\<esc>", 'xt')
1283 call assert_equal('b bufa', X)
1284 call feedkeys(":b \<tab>\<tab>\<tab>" .. cap .. "\<esc>", 'xt')
1285 call assert_equal('b bufc', X)
1286 enew
1287
1288 edit other
1289 call feedkeys(":b \<tab>" .. cap .. "\<esc>", 'xt')
1290 call assert_equal('b bufb', X)
1291 call feedkeys(":b \<tab>\<tab>" .. cap .. "\<esc>", 'xt')
1292 call assert_equal('b bufa', X)
1293 call feedkeys(":b \<tab>\<tab>\<tab>" .. cap .. "\<esc>", 'xt')
1294 call assert_equal('b bufc', X)
1295 enew
1296
1297 let &wildmode = save_wildmode
1298
1299 bwipeout bufa
1300 bwipeout bufb
1301 bwipeout bufc
1302endfunc
Bram Moolenaar85db5472019-12-04 15:11:08 +01001303
1304func Test_cmdwin_feedkeys()
Bram Moolenaar21829c52021-01-26 22:42:21 +01001305 CheckFeature cmdwin
1306
Bram Moolenaar85db5472019-12-04 15:11:08 +01001307 " This should not generate E488
1308 call feedkeys("q:\<CR>", 'x')
Bram Moolenaar1671f442020-03-10 07:48:13 +01001309 " Using feedkeys with q: only should automatically close the cmd window
1310 call feedkeys('q:', 'xt')
1311 call assert_equal(1, winnr('$'))
1312 call assert_equal('', getcmdwintype())
Bram Moolenaar85db5472019-12-04 15:11:08 +01001313endfunc
Bram Moolenaar309976e2019-12-05 18:16:33 +01001314
1315" Tests for the issues fixed in 7.4.441.
1316" When 'cedit' is set to Ctrl-C, opening the command window hangs Vim
1317func Test_cmdwin_cedit()
Bram Moolenaar21829c52021-01-26 22:42:21 +01001318 CheckFeature cmdwin
1319
Bram Moolenaar309976e2019-12-05 18:16:33 +01001320 exe "set cedit=\<C-c>"
1321 normal! :
1322 call assert_equal(1, winnr('$'))
1323
1324 let g:cmd_wintype = ''
1325 func CmdWinType()
1326 let g:cmd_wintype = getcmdwintype()
Bram Moolenaar00f3b4e2020-02-14 14:32:22 +01001327 let g:wintype = win_gettype()
Bram Moolenaar309976e2019-12-05 18:16:33 +01001328 return ''
1329 endfunc
1330
1331 call feedkeys("\<C-c>a\<C-R>=CmdWinType()\<CR>\<CR>")
1332 echo input('')
1333 call assert_equal('@', g:cmd_wintype)
Bram Moolenaar00f3b4e2020-02-14 14:32:22 +01001334 call assert_equal('command', g:wintype)
Bram Moolenaar309976e2019-12-05 18:16:33 +01001335
1336 set cedit&vim
1337 delfunc CmdWinType
1338endfunc
1339
Bram Moolenaar8d588cc2020-02-25 21:47:45 +01001340" Test for CmdwinEnter autocmd
1341func Test_cmdwin_autocmd()
Bram Moolenaar21829c52021-01-26 22:42:21 +01001342 CheckFeature cmdwin
1343
Bram Moolenaar8d588cc2020-02-25 21:47:45 +01001344 augroup CmdWin
1345 au!
Bram Moolenaarb63f3ca2021-01-30 21:40:03 +01001346 autocmd BufLeave * if &buftype == '' | update | endif
Bram Moolenaar8d588cc2020-02-25 21:47:45 +01001347 autocmd CmdwinEnter * startinsert
1348 augroup END
1349
1350 call assert_fails('call feedkeys("q:xyz\<CR>", "xt")', 'E492:')
1351 call assert_equal('xyz', @:)
1352
1353 augroup CmdWin
1354 au!
1355 augroup END
1356 augroup! CmdWin
1357endfunc
1358
Bram Moolenaar479950f2020-01-19 15:45:17 +01001359func Test_cmdlineclear_tabenter()
1360 CheckScreendump
1361
1362 let lines =<< trim [SCRIPT]
1363 call setline(1, range(30))
1364 [SCRIPT]
1365
1366 call writefile(lines, 'XtestCmdlineClearTabenter')
1367 let buf = RunVimInTerminal('-S XtestCmdlineClearTabenter', #{rows: 10})
Bram Moolenaar6a2c5a72020-04-08 21:50:25 +02001368 call TermWait(buf, 25)
Bram Moolenaar479950f2020-01-19 15:45:17 +01001369 " in one tab make the command line higher with CTRL-W -
1370 call term_sendkeys(buf, ":tabnew\<cr>\<C-w>-\<C-w>-gtgt")
1371 call VerifyScreenDump(buf, 'Test_cmdlineclear_tabenter', {})
1372
1373 call StopVimInTerminal(buf)
1374 call delete('XtestCmdlineClearTabenter')
1375endfunc
1376
Yegappan Lakshmanan46aa6f92021-05-19 17:15:04 +02001377" Test for expanding special keywords in cmdline
Bram Moolenaar9f6277b2020-02-11 22:04:02 +01001378func Test_cmdline_expand_special()
1379 %bwipe!
Bram Moolenaarb8bd2e62021-08-21 17:13:14 +02001380 call assert_fails('e #', 'E194:')
Bram Moolenaar9f6277b2020-02-11 22:04:02 +01001381 call assert_fails('e <afile>', 'E495:')
1382 call assert_fails('e <abuf>', 'E496:')
1383 call assert_fails('e <amatch>', 'E497:')
Yegappan Lakshmanan46aa6f92021-05-19 17:15:04 +02001384
1385 call writefile([], 'Xfile.cpp')
1386 call writefile([], 'Xfile.java')
1387 new Xfile.cpp
1388 call feedkeys(":e %:r\<C-A>\<C-B>\"\<CR>", 'xt')
1389 call assert_equal('"e Xfile.cpp Xfile.java', @:)
1390 close
1391 call delete('Xfile.cpp')
1392 call delete('Xfile.java')
Bram Moolenaar9f6277b2020-02-11 22:04:02 +01001393endfunc
1394
Bram Moolenaarf0cee192020-02-16 13:33:56 +01001395func Test_cmdwin_jump_to_win()
Bram Moolenaar21829c52021-01-26 22:42:21 +01001396 CheckFeature cmdwin
1397
Bram Moolenaarf0cee192020-02-16 13:33:56 +01001398 call assert_fails('call feedkeys("q:\<C-W>\<C-W>\<CR>", "xt")', 'E11:')
1399 new
1400 set modified
Bram Moolenaar9b7bf9e2020-07-11 22:14:59 +02001401 call assert_fails('call feedkeys("q/:qall\<CR>", "xt")', ['E37:', 'E162:'])
Bram Moolenaarf0cee192020-02-16 13:33:56 +01001402 close!
1403 call feedkeys("q/:close\<CR>", "xt")
1404 call assert_equal(1, winnr('$'))
1405 call feedkeys("q/:exit\<CR>", "xt")
1406 call assert_equal(1, winnr('$'))
Bram Moolenaar8d588cc2020-02-25 21:47:45 +01001407
1408 " opening command window twice should fail
1409 call assert_beeps('call feedkeys("q:q:\<CR>\<CR>", "xt")')
1410 call assert_equal(1, winnr('$'))
Bram Moolenaarf0cee192020-02-16 13:33:56 +01001411endfunc
1412
Bram Moolenaar9b7cce22020-06-06 15:14:08 +02001413func Test_cmdwin_interrupted()
Bram Moolenaar21829c52021-01-26 22:42:21 +01001414 CheckFeature cmdwin
Bram Moolenaar9b7cce22020-06-06 15:14:08 +02001415 CheckScreendump
1416
1417 " aborting the :smile output caused the cmdline window to use the current
1418 " buffer.
1419 let lines =<< trim [SCRIPT]
1420 au WinNew * smile
1421 [SCRIPT]
1422 call writefile(lines, 'XTest_cmdwin')
1423
1424 let buf = RunVimInTerminal('-S XTest_cmdwin', {'rows': 18})
Bram Moolenaar9b7cce22020-06-06 15:14:08 +02001425 " open cmdwin
1426 call term_sendkeys(buf, "q:")
Bram Moolenaarc82dd862020-06-07 17:30:33 +02001427 call WaitForAssert({-> assert_match('-- More --', term_getline(buf, 18))})
Bram Moolenaar9b7cce22020-06-06 15:14:08 +02001428 " quit more prompt for :smile command
1429 call term_sendkeys(buf, "q")
Bram Moolenaarc82dd862020-06-07 17:30:33 +02001430 call WaitForAssert({-> assert_match('^$', term_getline(buf, 18))})
Bram Moolenaar9b7cce22020-06-06 15:14:08 +02001431 " execute a simple command
1432 call term_sendkeys(buf, "aecho 'done'\<CR>")
1433 call VerifyScreenDump(buf, 'Test_cmdwin_interrupted', {})
1434
1435 " clean up
1436 call StopVimInTerminal(buf)
1437 call delete('XTest_cmdwin')
1438endfunc
1439
Bram Moolenaarf0cee192020-02-16 13:33:56 +01001440" Test for backtick expression in the command line
1441func Test_cmd_backtick()
1442 %argd
1443 argadd `=['a', 'b', 'c']`
1444 call assert_equal(['a', 'b', 'c'], argv())
1445 %argd
Dominique Pellebfb2bb12021-08-14 21:11:51 +02001446
1447 argadd `echo abc def`
1448 call assert_equal(['abc def'], argv())
1449 %argd
Bram Moolenaarf0cee192020-02-16 13:33:56 +01001450endfunc
1451
Bram Moolenaar818fc9a2020-02-21 17:54:45 +01001452" Test for the :! command
1453func Test_cmd_bang()
Bram Moolenaar6d91bcb2020-08-12 18:50:36 +02001454 CheckUnix
Bram Moolenaar818fc9a2020-02-21 17:54:45 +01001455
1456 let lines =<< trim [SCRIPT]
1457 " Test for no previous command
1458 call assert_fails('!!', 'E34:')
1459 set nomore
1460 " Test for cmdline expansion with :!
1461 call setline(1, 'foo!')
1462 silent !echo <cWORD> > Xfile.out
1463 call assert_equal(['foo!'], readfile('Xfile.out'))
1464 " Test for using previous command
1465 silent !echo \! !
1466 call assert_equal(['! echo foo!'], readfile('Xfile.out'))
1467 call writefile(v:errors, 'Xresult')
1468 call delete('Xfile.out')
1469 qall!
1470 [SCRIPT]
1471 call writefile(lines, 'Xscript')
1472 if RunVim([], [], '--clean -S Xscript')
1473 call assert_equal([], readfile('Xresult'))
1474 endif
1475 call delete('Xscript')
1476 call delete('Xresult')
1477endfunc
1478
Bram Moolenaare0c3c3d2020-06-04 22:46:04 +02001479" Test error: "E135: *Filter* Autocommands must not change current buffer"
1480func Test_cmd_bang_E135()
1481 new
1482 call setline(1, ['a', 'b', 'c', 'd'])
1483 augroup test_cmd_filter_E135
1484 au!
1485 autocmd FilterReadPost * help
1486 augroup END
1487 call assert_fails('2,3!echo "x"', 'E135:')
1488
1489 augroup test_cmd_filter_E135
1490 au!
1491 augroup END
1492 %bwipe!
1493endfunc
1494
Bram Moolenaar8d588cc2020-02-25 21:47:45 +01001495" Test for using ~ for home directory in cmdline completion matches
1496func Test_cmdline_expand_home()
1497 call mkdir('Xdir')
1498 call writefile([], 'Xdir/Xfile1')
1499 call writefile([], 'Xdir/Xfile2')
1500 cd Xdir
1501 let save_HOME = $HOME
1502 let $HOME = getcwd()
1503 call feedkeys(":e ~/\<C-A>\<C-B>\"\<CR>", 'xt')
1504 call assert_equal('"e ~/Xfile1 ~/Xfile2', @:)
1505 let $HOME = save_HOME
1506 cd ..
1507 call delete('Xdir', 'rf')
1508endfunc
1509
Bram Moolenaar578fe942020-02-27 21:32:51 +01001510" Test for using CTRL-\ CTRL-G in the command line to go back to normal mode
1511" or insert mode (when 'insertmode' is set)
1512func Test_cmdline_ctrl_g()
1513 new
1514 call setline(1, 'abc')
1515 call cursor(1, 3)
1516 " If command line is entered from insert mode, using C-\ C-G should back to
1517 " insert mode
1518 call feedkeys("i\<C-O>:\<C-\>\<C-G>xy", 'xt')
1519 call assert_equal('abxyc', getline(1))
1520 call assert_equal(4, col('.'))
1521
1522 " If command line is entered in 'insertmode', using C-\ C-G should back to
1523 " 'insertmode'
1524 call feedkeys(":set im\<cr>\<C-L>:\<C-\>\<C-G>12\<C-L>:set noim\<cr>", 'xt')
1525 call assert_equal('ab12xyc', getline(1))
1526 close!
1527endfunc
1528
Bram Moolenaar578fe942020-02-27 21:32:51 +01001529" Test for 'wildmode'
1530func Test_wildmode()
1531 func T(a, c, p)
1532 return "oneA\noneB\noneC"
1533 endfunc
1534 command -nargs=1 -complete=custom,T MyCmd
1535
1536 func SaveScreenLine()
Bram Moolenaar24ebd832020-03-16 21:25:24 +01001537 let g:Sline = Screenline(&lines - 1)
Bram Moolenaar578fe942020-02-27 21:32:51 +01001538 return ''
1539 endfunc
1540 cnoremap <expr> <F2> SaveScreenLine()
1541
1542 set nowildmenu
1543 set wildmode=full,list
1544 let g:Sline = ''
1545 call feedkeys(":MyCmd \t\t\<F2>\<C-B>\"\<CR>", 'xt')
Bram Moolenaar24ebd832020-03-16 21:25:24 +01001546 call assert_equal('oneA oneB oneC', g:Sline)
Bram Moolenaar578fe942020-02-27 21:32:51 +01001547 call assert_equal('"MyCmd oneA', @:)
1548
1549 set wildmode=longest,full
1550 call feedkeys(":MyCmd o\t\<C-B>\"\<CR>", 'xt')
1551 call assert_equal('"MyCmd one', @:)
1552 call feedkeys(":MyCmd o\t\t\t\t\<C-B>\"\<CR>", 'xt')
1553 call assert_equal('"MyCmd oneC', @:)
1554
1555 set wildmode=longest
1556 call feedkeys(":MyCmd one\t\t\<C-B>\"\<CR>", 'xt')
1557 call assert_equal('"MyCmd one', @:)
1558
1559 set wildmode=list:longest
1560 let g:Sline = ''
1561 call feedkeys(":MyCmd \t\<F2>\<C-B>\"\<CR>", 'xt')
Bram Moolenaar24ebd832020-03-16 21:25:24 +01001562 call assert_equal('oneA oneB oneC', g:Sline)
Bram Moolenaar578fe942020-02-27 21:32:51 +01001563 call assert_equal('"MyCmd one', @:)
1564
1565 set wildmode=""
1566 call feedkeys(":MyCmd \t\t\<C-B>\"\<CR>", 'xt')
1567 call assert_equal('"MyCmd oneA', @:)
1568
Bram Moolenaar24ebd832020-03-16 21:25:24 +01001569 " Test for wildmode=longest with 'fileignorecase' set
1570 set wildmode=longest
1571 set fileignorecase
Bram Moolenaar8dfcce32020-03-18 19:32:26 +01001572 argadd AAA AAAA AAAAA
1573 call feedkeys(":buffer a\t\<C-B>\"\<CR>", 'xt')
1574 call assert_equal('"buffer AAA', @:)
Bram Moolenaar24ebd832020-03-16 21:25:24 +01001575 set fileignorecase&
1576
1577 " Test for listing files with wildmode=list
1578 set wildmode=list
1579 let g:Sline = ''
1580 call feedkeys(":b A\t\t\<F2>\<C-B>\"\<CR>", 'xt')
Bram Moolenaar8dfcce32020-03-18 19:32:26 +01001581 call assert_equal('AAA AAAA AAAAA', g:Sline)
Bram Moolenaar24ebd832020-03-16 21:25:24 +01001582 call assert_equal('"b A', @:)
1583
1584 %argdelete
Bram Moolenaar578fe942020-02-27 21:32:51 +01001585 delcommand MyCmd
1586 delfunc T
1587 delfunc SaveScreenLine
1588 cunmap <F2>
1589 set wildmode&
Bram Moolenaar24ebd832020-03-16 21:25:24 +01001590 %bwipe!
Bram Moolenaar578fe942020-02-27 21:32:51 +01001591endfunc
1592
1593" Test for interrupting the command-line completion
1594func Test_interrupt_compl()
1595 func F(lead, cmdl, p)
1596 if a:lead =~ 'tw'
1597 call interrupt()
1598 return
1599 endif
1600 return "one\ntwo\nthree"
1601 endfunc
1602 command -nargs=1 -complete=custom,F Tcmd
1603
1604 set nowildmenu
1605 set wildmode=full
1606 let interrupted = 0
1607 try
1608 call feedkeys(":Tcmd tw\<Tab>\<C-B>\"\<CR>", 'xt')
1609 catch /^Vim:Interrupt$/
1610 let interrupted = 1
1611 endtry
1612 call assert_equal(1, interrupted)
1613
1614 delcommand Tcmd
1615 delfunc F
1616 set wildmode&
1617endfunc
1618
Bram Moolenaard30ae2f2020-02-29 14:23:58 +01001619" Test for moving the cursor on the : command line
Bram Moolenaar578fe942020-02-27 21:32:51 +01001620func Test_cmdline_edit()
Bram Moolenaard30ae2f2020-02-29 14:23:58 +01001621 let str = ":one two\<C-U>"
1622 let str ..= "one two\<C-W>\<C-W>"
Bram Moolenaar91ffc8a2020-03-02 20:54:22 +01001623 let str ..= "four\<BS>\<C-H>\<Del>\<kDel>"
Bram Moolenaard30ae2f2020-02-29 14:23:58 +01001624 let str ..= "\<Left>five\<Right>"
1625 let str ..= "\<Home>two "
1626 let str ..= "\<C-Left>one "
1627 let str ..= "\<C-Right> three"
1628 let str ..= "\<End>\<S-Left>four "
1629 let str ..= "\<S-Right> six"
1630 let str ..= "\<C-B>\"\<C-E> seven\<CR>"
1631 call feedkeys(str, 'xt')
1632 call assert_equal("\"one two three four five six seven", @:)
1633endfunc
1634
1635" Test for moving the cursor on the / command line in 'rightleft' mode
1636func Test_cmdline_edit_rightleft()
1637 CheckFeature rightleft
1638 set rightleft
1639 set rightleftcmd=search
1640 let str = "/one two\<C-U>"
1641 let str ..= "one two\<C-W>\<C-W>"
Bram Moolenaar91ffc8a2020-03-02 20:54:22 +01001642 let str ..= "four\<BS>\<C-H>\<Del>\<kDel>"
Bram Moolenaard30ae2f2020-02-29 14:23:58 +01001643 let str ..= "\<Right>five\<Left>"
1644 let str ..= "\<Home>two "
1645 let str ..= "\<C-Right>one "
1646 let str ..= "\<C-Left> three"
1647 let str ..= "\<End>\<S-Right>four "
1648 let str ..= "\<S-Left> six"
1649 let str ..= "\<C-B>\"\<C-E> seven\<CR>"
1650 call assert_fails("call feedkeys(str, 'xt')", 'E486:')
1651 call assert_equal("\"one two three four five six seven", @/)
1652 set rightleftcmd&
1653 set rightleft&
1654endfunc
1655
1656" Test for using <C-\>e in the command line to evaluate an expression
1657func Test_cmdline_expr()
1658 " Evaluate an expression from the beginning of a command line
1659 call feedkeys(":abc\<C-B>\<C-\>e\"\\\"hello\"\<CR>\<CR>", 'xt')
1660 call assert_equal('"hello', @:)
1661
1662 " Use an invalid expression for <C-\>e
1663 call assert_beeps('call feedkeys(":\<C-\>einvalid\<CR>", "tx")')
1664
1665 " Insert literal <CTRL-\> in the command line
1666 call feedkeys(":\"e \<C-\>\<C-Y>\<CR>", 'xt')
1667 call assert_equal("\"e \<C-\>\<C-Y>", @:)
Bram Moolenaar578fe942020-02-27 21:32:51 +01001668endfunc
1669
Bram Moolenaar0546d7d2020-03-01 16:53:09 +01001670" Test for 'imcmdline' and 'imsearch'
1671" This test doesn't actually test the input method functionality.
1672func Test_cmdline_inputmethod()
1673 new
1674 call setline(1, ['', 'abc', ''])
1675 set imcmdline
1676
1677 call feedkeys(":\"abc\<CR>", 'xt')
1678 call assert_equal("\"abc", @:)
1679 call feedkeys(":\"\<C-^>abc\<C-^>\<CR>", 'xt')
1680 call assert_equal("\"abc", @:)
1681 call feedkeys("/abc\<CR>", 'xt')
1682 call assert_equal([2, 1], [line('.'), col('.')])
1683 call feedkeys("/\<C-^>abc\<C-^>\<CR>", 'xt')
1684 call assert_equal([2, 1], [line('.'), col('.')])
1685
1686 set imsearch=2
1687 call cursor(1, 1)
1688 call feedkeys("/abc\<CR>", 'xt')
1689 call assert_equal([2, 1], [line('.'), col('.')])
1690 call cursor(1, 1)
1691 call feedkeys("/\<C-^>abc\<C-^>\<CR>", 'xt')
1692 call assert_equal([2, 1], [line('.'), col('.')])
1693 set imdisable
1694 call feedkeys("/\<C-^>abc\<C-^>\<CR>", 'xt')
1695 call assert_equal([2, 1], [line('.'), col('.')])
1696 set imdisable&
1697 set imsearch&
1698
1699 set imcmdline&
1700 %bwipe!
1701endfunc
1702
Bram Moolenaar91ffc8a2020-03-02 20:54:22 +01001703" Test for recursively getting multiple command line inputs
1704func Test_cmdwin_multi_input()
Bram Moolenaar21829c52021-01-26 22:42:21 +01001705 CheckFeature cmdwin
1706
Bram Moolenaar91ffc8a2020-03-02 20:54:22 +01001707 call feedkeys(":\<C-R>=input('P: ')\<CR>\"cyan\<CR>\<CR>", 'xt')
1708 call assert_equal('"cyan', @:)
1709endfunc
1710
1711" Test for using CTRL-_ in the command line with 'allowrevins'
1712func Test_cmdline_revins()
1713 CheckNotMSWindows
1714 CheckFeature rightleft
1715 call feedkeys(":\"abc\<c-_>\<cr>", 'xt')
1716 call assert_equal("\"abc\<c-_>", @:)
1717 set allowrevins
1718 call feedkeys(":\"abc\<c-_>xyz\<c-_>\<CR>", 'xt')
1719 call assert_equal('"abcñèæ', @:)
1720 set allowrevins&
1721endfunc
1722
1723" Test for typing UTF-8 composing characters in the command line
1724func Test_cmdline_composing_chars()
1725 call feedkeys(":\"\<C-V>u3046\<C-V>u3099\<CR>", 'xt')
1726 call assert_equal('"ゔ', @:)
1727endfunc
1728
Bram Moolenaarf5f1e102020-03-08 05:13:15 +01001729" Test for normal mode commands not supported in the cmd window
1730func Test_cmdwin_blocked_commands()
Bram Moolenaar21829c52021-01-26 22:42:21 +01001731 CheckFeature cmdwin
1732
Bram Moolenaarf5f1e102020-03-08 05:13:15 +01001733 call assert_fails('call feedkeys("q:\<C-T>\<CR>", "xt")', 'E11:')
1734 call assert_fails('call feedkeys("q:\<C-]>\<CR>", "xt")', 'E11:')
1735 call assert_fails('call feedkeys("q:\<C-^>\<CR>", "xt")', 'E11:')
1736 call assert_fails('call feedkeys("q:Q\<CR>", "xt")', 'E11:')
1737 call assert_fails('call feedkeys("q:Z\<CR>", "xt")', 'E11:')
1738 call assert_fails('call feedkeys("q:\<F1>\<CR>", "xt")', 'E11:')
Bram Moolenaar951a2fb2020-06-07 19:38:10 +02001739 call assert_fails('call feedkeys("q:\<C-W>s\<CR>", "xt")', 'E11:')
1740 call assert_fails('call feedkeys("q:\<C-W>v\<CR>", "xt")', 'E11:')
1741 call assert_fails('call feedkeys("q:\<C-W>^\<CR>", "xt")', 'E11:')
1742 call assert_fails('call feedkeys("q:\<C-W>n\<CR>", "xt")', 'E11:')
1743 call assert_fails('call feedkeys("q:\<C-W>z\<CR>", "xt")', 'E11:')
1744 call assert_fails('call feedkeys("q:\<C-W>o\<CR>", "xt")', 'E11:')
1745 call assert_fails('call feedkeys("q:\<C-W>w\<CR>", "xt")', 'E11:')
1746 call assert_fails('call feedkeys("q:\<C-W>j\<CR>", "xt")', 'E11:')
1747 call assert_fails('call feedkeys("q:\<C-W>k\<CR>", "xt")', 'E11:')
1748 call assert_fails('call feedkeys("q:\<C-W>h\<CR>", "xt")', 'E11:')
1749 call assert_fails('call feedkeys("q:\<C-W>l\<CR>", "xt")', 'E11:')
1750 call assert_fails('call feedkeys("q:\<C-W>T\<CR>", "xt")', 'E11:')
1751 call assert_fails('call feedkeys("q:\<C-W>x\<CR>", "xt")', 'E11:')
1752 call assert_fails('call feedkeys("q:\<C-W>r\<CR>", "xt")', 'E11:')
1753 call assert_fails('call feedkeys("q:\<C-W>R\<CR>", "xt")', 'E11:')
1754 call assert_fails('call feedkeys("q:\<C-W>K\<CR>", "xt")', 'E11:')
1755 call assert_fails('call feedkeys("q:\<C-W>}\<CR>", "xt")', 'E11:')
1756 call assert_fails('call feedkeys("q:\<C-W>]\<CR>", "xt")', 'E11:')
1757 call assert_fails('call feedkeys("q:\<C-W>f\<CR>", "xt")', 'E11:')
1758 call assert_fails('call feedkeys("q:\<C-W>d\<CR>", "xt")', 'E11:')
1759 call assert_fails('call feedkeys("q:\<C-W>g\<CR>", "xt")', 'E11:')
Bram Moolenaarf5f1e102020-03-08 05:13:15 +01001760endfunc
1761
Bram Moolenaarca68ae12020-03-30 19:32:53 +02001762" Close the Cmd-line window in insert mode using CTRL-C
1763func Test_cmdwin_insert_mode_close()
Bram Moolenaar21829c52021-01-26 22:42:21 +01001764 CheckFeature cmdwin
1765
Bram Moolenaarca68ae12020-03-30 19:32:53 +02001766 %bw!
1767 let s = ''
1768 exe "normal q:a\<C-C>let s='Hello'\<CR>"
1769 call assert_equal('Hello', s)
1770 call assert_equal(1, winnr('$'))
1771endfunc
1772
Bram Moolenaar0e717042020-04-27 19:29:01 +02001773" test that ";" works to find a match at the start of the first line
1774func Test_zero_line_search()
1775 new
1776 call setline(1, ["1, pattern", "2, ", "3, pattern"])
1777 call cursor(1,1)
1778 0;/pattern/d
1779 call assert_equal(["2, ", "3, pattern"], getline(1,'$'))
1780 q!
1781endfunc
1782
Bram Moolenaarc8cb8832020-06-18 21:14:30 +02001783func Test_read_shellcmd()
1784 CheckUnix
1785 if executable('ls')
1786 " There should be ls in the $PATH
1787 call feedkeys(":r! l\<c-a>\<c-b>\"\<cr>", 'tx')
1788 call assert_match('^"r! .*\<ls\>', @:)
1789 endif
1790
1791 if executable('rm')
1792 call feedkeys(":r! ++enc=utf-8 r\<c-a>\<c-b>\"\<cr>", 'tx')
1793 call assert_notmatch('^"r!.*\<runtest.vim\>', @:)
1794 call assert_match('^"r!.*\<rm\>', @:)
Bram Moolenaar743d0622020-07-03 18:15:06 +02001795
1796 call feedkeys(":r ++enc=utf-8 !rm\<c-a>\<c-b>\"\<cr>", 'tx')
1797 call assert_notmatch('^"r.*\<runtest.vim\>', @:)
1798 call assert_match('^"r ++enc\S\+ !.*\<rm\>', @:)
Bram Moolenaarc8cb8832020-06-18 21:14:30 +02001799 endif
1800endfunc
1801
Bram Moolenaar4b2ce122020-11-21 21:41:41 +01001802" Test for going up and down the directory tree using 'wildmenu'
1803func Test_wildmenu_dirstack()
1804 CheckUnix
1805 %bw!
1806 call mkdir('Xdir1/dir2/dir3', 'p')
1807 call writefile([], 'Xdir1/file1_1.txt')
1808 call writefile([], 'Xdir1/file1_2.txt')
1809 call writefile([], 'Xdir1/dir2/file2_1.txt')
1810 call writefile([], 'Xdir1/dir2/file2_2.txt')
1811 call writefile([], 'Xdir1/dir2/dir3/file3_1.txt')
1812 call writefile([], 'Xdir1/dir2/dir3/file3_2.txt')
1813 cd Xdir1/dir2/dir3
1814 set wildmenu
1815
1816 call feedkeys(":e \<Tab>\<C-B>\"\<CR>", 'xt')
1817 call assert_equal('"e file3_1.txt', @:)
1818 call feedkeys(":e \<Tab>\<Up>\<C-B>\"\<CR>", 'xt')
1819 call assert_equal('"e ../dir3/', @:)
1820 call feedkeys(":e \<Tab>\<Up>\<Up>\<C-B>\"\<CR>", 'xt')
1821 call assert_equal('"e ../../dir2/', @:)
1822 call feedkeys(":e \<Tab>\<Up>\<Up>\<Down>\<C-B>\"\<CR>", 'xt')
1823 call assert_equal('"e ../../dir2/dir3/', @:)
1824 call feedkeys(":e \<Tab>\<Up>\<Up>\<Down>\<Down>\<C-B>\"\<CR>", 'xt')
1825 call assert_equal('"e ../../dir2/dir3/file3_1.txt', @:)
1826
1827 cd -
1828 call delete('Xdir1', 'rf')
1829 set wildmenu&
1830endfunc
1831
obcat71c6f7a2021-05-13 20:23:10 +02001832" Test for recalling newer or older cmdline from history with <Up>, <Down>,
1833" <S-Up>, <S-Down>, <PageUp>, <PageDown>, <C-p>, or <C-n>.
1834func Test_recalling_cmdline()
1835 CheckFeature cmdline_hist
1836
1837 let g:cmdlines = []
1838 cnoremap <Plug>(save-cmdline) <Cmd>let g:cmdlines += [getcmdline()]<CR>
1839
1840 let histories = [
1841 \ {'name': 'cmd', 'enter': ':', 'exit': "\<Esc>"},
1842 \ {'name': 'search', 'enter': '/', 'exit': "\<Esc>"},
1843 \ {'name': 'expr', 'enter': ":\<C-r>=", 'exit': "\<Esc>\<Esc>"},
1844 \ {'name': 'input', 'enter': ":call input('')\<CR>", 'exit': "\<CR>"},
1845 "\ TODO: {'name': 'debug', ...}
1846 \]
1847 let keypairs = [
1848 \ {'older': "\<Up>", 'newer': "\<Down>", 'prefixmatch': v:true},
1849 \ {'older': "\<S-Up>", 'newer': "\<S-Down>", 'prefixmatch': v:false},
1850 \ {'older': "\<PageUp>", 'newer': "\<PageDown>", 'prefixmatch': v:false},
1851 \ {'older': "\<C-p>", 'newer': "\<C-n>", 'prefixmatch': v:false},
1852 \]
1853 let prefix = 'vi'
1854 for h in histories
1855 call histadd(h.name, 'vim')
1856 call histadd(h.name, 'virtue')
1857 call histadd(h.name, 'Virgo')
1858 call histadd(h.name, 'vogue')
1859 call histadd(h.name, 'emacs')
1860 for k in keypairs
1861 let g:cmdlines = []
1862 let keyseqs = h.enter
1863 \ .. prefix
1864 \ .. repeat(k.older .. "\<Plug>(save-cmdline)", 2)
1865 \ .. repeat(k.newer .. "\<Plug>(save-cmdline)", 2)
1866 \ .. h.exit
1867 call feedkeys(keyseqs, 'xt')
1868 call histdel(h.name, -1) " delete the history added by feedkeys above
1869 let expect = k.prefixmatch
1870 \ ? ['virtue', 'vim', 'virtue', prefix]
1871 \ : ['emacs', 'vogue', 'emacs', prefix]
1872 call assert_equal(expect, g:cmdlines)
1873 endfor
1874 endfor
1875
1876 unlet g:cmdlines
1877 cunmap <Plug>(save-cmdline)
1878endfunc
1879
Bram Moolenaar847fe7d2021-05-15 13:19:16 +02001880func Test_cmd_map_cmdlineChanged()
1881 let g:log = []
1882 cnoremap <F1> l<Cmd><CR>s
1883 augroup test
1884 autocmd!
1885 autocmd CmdlineChanged : let g:log += [getcmdline()]
1886 augroup END
1887
1888 call feedkeys(":\<F1>\<CR>", 'xt')
1889 call assert_equal(['l', 'ls'], g:log)
1890
Bram Moolenaar796139a2021-05-18 21:38:45 +02001891 let @b = 'b'
1892 cnoremap <F1> a<C-R>b
1893 let g:log = []
1894 call feedkeys(":\<F1>\<CR>", 'xt')
1895 call assert_equal(['a', 'ab'], g:log)
1896
Bram Moolenaar847fe7d2021-05-15 13:19:16 +02001897 unlet g:log
1898 cunmap <F1>
1899 augroup test
1900 autocmd!
1901 augroup END
1902endfunc
1903
Yegappan Lakshmanan46aa6f92021-05-19 17:15:04 +02001904" Test for the 'suffixes' option
1905func Test_suffixes_opt()
1906 call writefile([], 'Xfile')
1907 call writefile([], 'Xfile.c')
1908 call writefile([], 'Xfile.o')
1909 set suffixes=
1910 call feedkeys(":e Xfi*\<C-A>\<C-B>\"\<CR>", 'xt')
1911 call assert_equal('"e Xfile Xfile.c Xfile.o', @:)
1912 set suffixes=.c
1913 call feedkeys(":e Xfi*\<C-A>\<C-B>\"\<CR>", 'xt')
1914 call assert_equal('"e Xfile Xfile.o Xfile.c', @:)
1915 set suffixes=,,
1916 call feedkeys(":e Xfi*\<C-A>\<C-B>\"\<CR>", 'xt')
1917 call assert_equal('"e Xfile.c Xfile.o Xfile', @:)
1918 set suffixes&
1919 call delete('Xfile')
1920 call delete('Xfile.c')
1921 call delete('Xfile.o')
1922endfunc
Bram Moolenaar847fe7d2021-05-15 13:19:16 +02001923
Bram Moolenaar309976e2019-12-05 18:16:33 +01001924" vim: shiftwidth=2 sts=2 expandtab