annotate src/testdir/test_autocmd.vim @ 23861:5d11a15dbaa9 v8.2.2472

patch 8.2.2472: crash when using command line window in an autocommand Commit: https://github.com/vim/vim/commit/aad5f9d79a2b71e9d2581eace3652be156102b9d Author: Bram Moolenaar <Bram@vim.org> Date: Sat Feb 6 17:30:31 2021 +0100 patch 8.2.2472: crash when using command line window in an autocommand Problem: Crash when using command line window in an autocommand. (houyunsong) Solution: Save and restore au_new_curbuf.
author Bram Moolenaar <Bram@vim.org>
date Sat, 06 Feb 2021 17:45:03 +0100
parents b0e7fa957cd1
children a91f3147d06e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
8738
e770986c855a commit https://github.com/vim/vim/commit/1473551a4457d4920b235eeeb9f279e196ee7225
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1 " Tests for autocommands
e770986c855a commit https://github.com/vim/vim/commit/1473551a4457d4920b235eeeb9f279e196ee7225
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2
13519
4a44c90dd671 patch 8.0.1633: a TextChanged autocmd triggers when it is defined
Christian Brabandt <cb@256bit.org>
parents: 13240
diff changeset
3 source shared.vim
17657
0da9bc55c31a patch 8.1.1826: tests use hand coded feature and option checks
Bram Moolenaar <Bram@vim.org>
parents: 17093
diff changeset
4 source check.vim
18144
95719bfeced2 patch 8.1.2067: no tests for SafeState and SafeStateAgain
Bram Moolenaar <Bram@vim.org>
parents: 17918
diff changeset
5 source term_util.vim
13519
4a44c90dd671 patch 8.0.1633: a TextChanged autocmd triggers when it is defined
Christian Brabandt <cb@256bit.org>
parents: 13240
diff changeset
6
15406
63b02fcf1361 patch 8.1.0711: test files still use function!
Bram Moolenaar <Bram@vim.org>
parents: 15207
diff changeset
7 func s:cleanup_buffers() abort
10242
a369d97995ff commit https://github.com/vim/vim/commit/b3435b0a3a0967115658d0a8c0224a28969cfa02
Christian Brabandt <cb@256bit.org>
parents: 10151
diff changeset
8 for bnr in range(1, bufnr('$'))
a369d97995ff commit https://github.com/vim/vim/commit/b3435b0a3a0967115658d0a8c0224a28969cfa02
Christian Brabandt <cb@256bit.org>
parents: 10151
diff changeset
9 if bufloaded(bnr) && bufnr('%') != bnr
a369d97995ff commit https://github.com/vim/vim/commit/b3435b0a3a0967115658d0a8c0224a28969cfa02
Christian Brabandt <cb@256bit.org>
parents: 10151
diff changeset
10 execute 'bd! ' . bnr
a369d97995ff commit https://github.com/vim/vim/commit/b3435b0a3a0967115658d0a8c0224a28969cfa02
Christian Brabandt <cb@256bit.org>
parents: 10151
diff changeset
11 endif
a369d97995ff commit https://github.com/vim/vim/commit/b3435b0a3a0967115658d0a8c0224a28969cfa02
Christian Brabandt <cb@256bit.org>
parents: 10151
diff changeset
12 endfor
11707
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
13 endfunc
10242
a369d97995ff commit https://github.com/vim/vim/commit/b3435b0a3a0967115658d0a8c0224a28969cfa02
Christian Brabandt <cb@256bit.org>
parents: 10151
diff changeset
14
8738
e770986c855a commit https://github.com/vim/vim/commit/1473551a4457d4920b235eeeb9f279e196ee7225
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
15 func Test_vim_did_enter()
e770986c855a commit https://github.com/vim/vim/commit/1473551a4457d4920b235eeeb9f279e196ee7225
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
16 call assert_false(v:vim_did_enter)
e770986c855a commit https://github.com/vim/vim/commit/1473551a4457d4920b235eeeb9f279e196ee7225
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
17
e770986c855a commit https://github.com/vim/vim/commit/1473551a4457d4920b235eeeb9f279e196ee7225
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
18 " This script will never reach the main loop, can't check if v:vim_did_enter
e770986c855a commit https://github.com/vim/vim/commit/1473551a4457d4920b235eeeb9f279e196ee7225
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
19 " becomes one.
e770986c855a commit https://github.com/vim/vim/commit/1473551a4457d4920b235eeeb9f279e196ee7225
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
20 endfunc
8947
c07caeb90a35 commit https://github.com/vim/vim/commit/40b1b5443c88fab77f1f7c6f9e801f7ffdb7e0a8
Christian Brabandt <cb@256bit.org>
parents: 8738
diff changeset
21
21419
e4449560f18d patch 8.2.1260: there is no good test for CursorHold
Bram Moolenaar <Bram@vim.org>
parents: 21265
diff changeset
22 " Test for the CursorHold autocmd
e4449560f18d patch 8.2.1260: there is no good test for CursorHold
Bram Moolenaar <Bram@vim.org>
parents: 21265
diff changeset
23 func Test_CursorHold_autocmd()
e4449560f18d patch 8.2.1260: there is no good test for CursorHold
Bram Moolenaar <Bram@vim.org>
parents: 21265
diff changeset
24 CheckRunVimInTerminal
e4449560f18d patch 8.2.1260: there is no good test for CursorHold
Bram Moolenaar <Bram@vim.org>
parents: 21265
diff changeset
25 call writefile(['one', 'two', 'three'], 'Xfile')
e4449560f18d patch 8.2.1260: there is no good test for CursorHold
Bram Moolenaar <Bram@vim.org>
parents: 21265
diff changeset
26 let before =<< trim END
e4449560f18d patch 8.2.1260: there is no good test for CursorHold
Bram Moolenaar <Bram@vim.org>
parents: 21265
diff changeset
27 set updatetime=10
e4449560f18d patch 8.2.1260: there is no good test for CursorHold
Bram Moolenaar <Bram@vim.org>
parents: 21265
diff changeset
28 au CursorHold * call writefile([line('.')], 'Xoutput', 'a')
e4449560f18d patch 8.2.1260: there is no good test for CursorHold
Bram Moolenaar <Bram@vim.org>
parents: 21265
diff changeset
29 END
e4449560f18d patch 8.2.1260: there is no good test for CursorHold
Bram Moolenaar <Bram@vim.org>
parents: 21265
diff changeset
30 call writefile(before, 'Xinit')
e4449560f18d patch 8.2.1260: there is no good test for CursorHold
Bram Moolenaar <Bram@vim.org>
parents: 21265
diff changeset
31 let buf = RunVimInTerminal('-S Xinit Xfile', {})
21895
0ae284aaa8a2 patch 8.2.1497: CursorHold test is flaky
Bram Moolenaar <Bram@vim.org>
parents: 21765
diff changeset
32 call term_sendkeys(buf, "G")
22576
170077e26bde patch 8.2.1836: autocmd test fails on pacifist systems
Bram Moolenaar <Bram@vim.org>
parents: 22375
diff changeset
33 call term_wait(buf, 50)
21419
e4449560f18d patch 8.2.1260: there is no good test for CursorHold
Bram Moolenaar <Bram@vim.org>
parents: 21265
diff changeset
34 call term_sendkeys(buf, "gg")
e4449560f18d patch 8.2.1260: there is no good test for CursorHold
Bram Moolenaar <Bram@vim.org>
parents: 21265
diff changeset
35 call term_wait(buf)
21895
0ae284aaa8a2 patch 8.2.1497: CursorHold test is flaky
Bram Moolenaar <Bram@vim.org>
parents: 21765
diff changeset
36 call WaitForAssert({-> assert_equal(['1'], readfile('Xoutput')[-1:-1])})
21419
e4449560f18d patch 8.2.1260: there is no good test for CursorHold
Bram Moolenaar <Bram@vim.org>
parents: 21265
diff changeset
37 call term_sendkeys(buf, "j")
e4449560f18d patch 8.2.1260: there is no good test for CursorHold
Bram Moolenaar <Bram@vim.org>
parents: 21265
diff changeset
38 call term_wait(buf)
21895
0ae284aaa8a2 patch 8.2.1497: CursorHold test is flaky
Bram Moolenaar <Bram@vim.org>
parents: 21765
diff changeset
39 call WaitForAssert({-> assert_equal(['1', '2'], readfile('Xoutput')[-2:-1])})
21419
e4449560f18d patch 8.2.1260: there is no good test for CursorHold
Bram Moolenaar <Bram@vim.org>
parents: 21265
diff changeset
40 call term_sendkeys(buf, "j")
e4449560f18d patch 8.2.1260: there is no good test for CursorHold
Bram Moolenaar <Bram@vim.org>
parents: 21265
diff changeset
41 call term_wait(buf)
21895
0ae284aaa8a2 patch 8.2.1497: CursorHold test is flaky
Bram Moolenaar <Bram@vim.org>
parents: 21765
diff changeset
42 call WaitForAssert({-> assert_equal(['1', '2', '3'], readfile('Xoutput')[-3:-1])})
21419
e4449560f18d patch 8.2.1260: there is no good test for CursorHold
Bram Moolenaar <Bram@vim.org>
parents: 21265
diff changeset
43 call StopVimInTerminal(buf)
e4449560f18d patch 8.2.1260: there is no good test for CursorHold
Bram Moolenaar <Bram@vim.org>
parents: 21265
diff changeset
44
e4449560f18d patch 8.2.1260: there is no good test for CursorHold
Bram Moolenaar <Bram@vim.org>
parents: 21265
diff changeset
45 call delete('Xinit')
e4449560f18d patch 8.2.1260: there is no good test for CursorHold
Bram Moolenaar <Bram@vim.org>
parents: 21265
diff changeset
46 call delete('Xoutput')
e4449560f18d patch 8.2.1260: there is no good test for CursorHold
Bram Moolenaar <Bram@vim.org>
parents: 21265
diff changeset
47 call delete('Xfile')
e4449560f18d patch 8.2.1260: there is no good test for CursorHold
Bram Moolenaar <Bram@vim.org>
parents: 21265
diff changeset
48 endfunc
e4449560f18d patch 8.2.1260: there is no good test for CursorHold
Bram Moolenaar <Bram@vim.org>
parents: 21265
diff changeset
49
9106
97a9538c37ff commit https://github.com/vim/vim/commit/c67e89213476b5f4756d92208b57ce9ef4a4cf24
Christian Brabandt <cb@256bit.org>
parents: 8947
diff changeset
50 if has('timers')
16646
ea0f9a2df961 patch 8.1.1325: cannot build with +eval but without +channel and +timers
Bram Moolenaar <Bram@vim.org>
parents: 16617
diff changeset
51
9106
97a9538c37ff commit https://github.com/vim/vim/commit/c67e89213476b5f4756d92208b57ce9ef4a4cf24
Christian Brabandt <cb@256bit.org>
parents: 8947
diff changeset
52 func ExitInsertMode(id)
97a9538c37ff commit https://github.com/vim/vim/commit/c67e89213476b5f4756d92208b57ce9ef4a4cf24
Christian Brabandt <cb@256bit.org>
parents: 8947
diff changeset
53 call feedkeys("\<Esc>")
97a9538c37ff commit https://github.com/vim/vim/commit/c67e89213476b5f4756d92208b57ce9ef4a4cf24
Christian Brabandt <cb@256bit.org>
parents: 8947
diff changeset
54 endfunc
97a9538c37ff commit https://github.com/vim/vim/commit/c67e89213476b5f4756d92208b57ce9ef4a4cf24
Christian Brabandt <cb@256bit.org>
parents: 8947
diff changeset
55
97a9538c37ff commit https://github.com/vim/vim/commit/c67e89213476b5f4756d92208b57ce9ef4a4cf24
Christian Brabandt <cb@256bit.org>
parents: 8947
diff changeset
56 func Test_cursorhold_insert()
10151
0be17a56e65f commit https://github.com/vim/vim/commit/f18c4dbbe545757ce93563b25380e6f010340b4e
Christian Brabandt <cb@256bit.org>
parents: 10141
diff changeset
57 " Need to move the cursor.
0be17a56e65f commit https://github.com/vim/vim/commit/f18c4dbbe545757ce93563b25380e6f010340b4e
Christian Brabandt <cb@256bit.org>
parents: 10141
diff changeset
58 call feedkeys("ggG", "xt")
0be17a56e65f commit https://github.com/vim/vim/commit/f18c4dbbe545757ce93563b25380e6f010340b4e
Christian Brabandt <cb@256bit.org>
parents: 10141
diff changeset
59
9106
97a9538c37ff commit https://github.com/vim/vim/commit/c67e89213476b5f4756d92208b57ce9ef4a4cf24
Christian Brabandt <cb@256bit.org>
parents: 8947
diff changeset
60 let g:triggered = 0
97a9538c37ff commit https://github.com/vim/vim/commit/c67e89213476b5f4756d92208b57ce9ef4a4cf24
Christian Brabandt <cb@256bit.org>
parents: 8947
diff changeset
61 au CursorHoldI * let g:triggered += 1
97a9538c37ff commit https://github.com/vim/vim/commit/c67e89213476b5f4756d92208b57ce9ef4a4cf24
Christian Brabandt <cb@256bit.org>
parents: 8947
diff changeset
62 set updatetime=20
23847
b0e7fa957cd1 patch 8.2.2465: using freed memory in :psearch
Bram Moolenaar <Bram@vim.org>
parents: 23845
diff changeset
63 call timer_start(200, 'ExitInsertMode')
9106
97a9538c37ff commit https://github.com/vim/vim/commit/c67e89213476b5f4756d92208b57ce9ef4a4cf24
Christian Brabandt <cb@256bit.org>
parents: 8947
diff changeset
64 call feedkeys('a', 'x!')
97a9538c37ff commit https://github.com/vim/vim/commit/c67e89213476b5f4756d92208b57ce9ef4a4cf24
Christian Brabandt <cb@256bit.org>
parents: 8947
diff changeset
65 call assert_equal(1, g:triggered)
15659
8513d9864f7e patch 8.1.0837: timer interrupting cursorhold and mapping not tested
Bram Moolenaar <Bram@vim.org>
parents: 15615
diff changeset
66 unlet g:triggered
8513d9864f7e patch 8.1.0837: timer interrupting cursorhold and mapping not tested
Bram Moolenaar <Bram@vim.org>
parents: 15615
diff changeset
67 au! CursorHoldI
8513d9864f7e patch 8.1.0837: timer interrupting cursorhold and mapping not tested
Bram Moolenaar <Bram@vim.org>
parents: 15615
diff changeset
68 set updatetime&
8513d9864f7e patch 8.1.0837: timer interrupting cursorhold and mapping not tested
Bram Moolenaar <Bram@vim.org>
parents: 15615
diff changeset
69 endfunc
8513d9864f7e patch 8.1.0837: timer interrupting cursorhold and mapping not tested
Bram Moolenaar <Bram@vim.org>
parents: 15615
diff changeset
70
8513d9864f7e patch 8.1.0837: timer interrupting cursorhold and mapping not tested
Bram Moolenaar <Bram@vim.org>
parents: 15615
diff changeset
71 func Test_cursorhold_insert_with_timer_interrupt()
21765
08940efa6b4e patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents: 21638
diff changeset
72 CheckFeature job
15659
8513d9864f7e patch 8.1.0837: timer interrupting cursorhold and mapping not tested
Bram Moolenaar <Bram@vim.org>
parents: 15615
diff changeset
73 " Need to move the cursor.
8513d9864f7e patch 8.1.0837: timer interrupting cursorhold and mapping not tested
Bram Moolenaar <Bram@vim.org>
parents: 15615
diff changeset
74 call feedkeys("ggG", "xt")
8513d9864f7e patch 8.1.0837: timer interrupting cursorhold and mapping not tested
Bram Moolenaar <Bram@vim.org>
parents: 15615
diff changeset
75
8513d9864f7e patch 8.1.0837: timer interrupting cursorhold and mapping not tested
Bram Moolenaar <Bram@vim.org>
parents: 15615
diff changeset
76 " Confirm the timer invoked in exit_cb of the job doesn't disturb
8513d9864f7e patch 8.1.0837: timer interrupting cursorhold and mapping not tested
Bram Moolenaar <Bram@vim.org>
parents: 15615
diff changeset
77 " CursorHoldI event.
8513d9864f7e patch 8.1.0837: timer interrupting cursorhold and mapping not tested
Bram Moolenaar <Bram@vim.org>
parents: 15615
diff changeset
78 let g:triggered = 0
8513d9864f7e patch 8.1.0837: timer interrupting cursorhold and mapping not tested
Bram Moolenaar <Bram@vim.org>
parents: 15615
diff changeset
79 au CursorHoldI * let g:triggered += 1
22576
170077e26bde patch 8.2.1836: autocmd test fails on pacifist systems
Bram Moolenaar <Bram@vim.org>
parents: 22375
diff changeset
80 set updatetime=100
15659
8513d9864f7e patch 8.1.0837: timer interrupting cursorhold and mapping not tested
Bram Moolenaar <Bram@vim.org>
parents: 15615
diff changeset
81 call job_start(has('win32') ? 'cmd /c echo:' : 'echo',
22576
170077e26bde patch 8.2.1836: autocmd test fails on pacifist systems
Bram Moolenaar <Bram@vim.org>
parents: 22375
diff changeset
82 \ {'exit_cb': {-> timer_start(200, 'ExitInsertMode')}})
15659
8513d9864f7e patch 8.1.0837: timer interrupting cursorhold and mapping not tested
Bram Moolenaar <Bram@vim.org>
parents: 15615
diff changeset
83 call feedkeys('a', 'x!')
8513d9864f7e patch 8.1.0837: timer interrupting cursorhold and mapping not tested
Bram Moolenaar <Bram@vim.org>
parents: 15615
diff changeset
84 call assert_equal(1, g:triggered)
8513d9864f7e patch 8.1.0837: timer interrupting cursorhold and mapping not tested
Bram Moolenaar <Bram@vim.org>
parents: 15615
diff changeset
85 unlet g:triggered
9653
01c9630e80e0 commit https://github.com/vim/vim/commit/e99e84497b89e5f91df519790802770920ecf4fe
Christian Brabandt <cb@256bit.org>
parents: 9599
diff changeset
86 au! CursorHoldI
10141
b67088aae933 commit https://github.com/vim/vim/commit/aeac9006d5d14910f214f09df52c026a5936e737
Christian Brabandt <cb@256bit.org>
parents: 10114
diff changeset
87 set updatetime&
9106
97a9538c37ff commit https://github.com/vim/vim/commit/c67e89213476b5f4756d92208b57ce9ef4a4cf24
Christian Brabandt <cb@256bit.org>
parents: 8947
diff changeset
88 endfunc
97a9538c37ff commit https://github.com/vim/vim/commit/c67e89213476b5f4756d92208b57ce9ef4a4cf24
Christian Brabandt <cb@256bit.org>
parents: 8947
diff changeset
89
97a9538c37ff commit https://github.com/vim/vim/commit/c67e89213476b5f4756d92208b57ce9ef4a4cf24
Christian Brabandt <cb@256bit.org>
parents: 8947
diff changeset
90 func Test_cursorhold_insert_ctrl_x()
97a9538c37ff commit https://github.com/vim/vim/commit/c67e89213476b5f4756d92208b57ce9ef4a4cf24
Christian Brabandt <cb@256bit.org>
parents: 8947
diff changeset
91 let g:triggered = 0
97a9538c37ff commit https://github.com/vim/vim/commit/c67e89213476b5f4756d92208b57ce9ef4a4cf24
Christian Brabandt <cb@256bit.org>
parents: 8947
diff changeset
92 au CursorHoldI * let g:triggered += 1
97a9538c37ff commit https://github.com/vim/vim/commit/c67e89213476b5f4756d92208b57ce9ef4a4cf24
Christian Brabandt <cb@256bit.org>
parents: 8947
diff changeset
93 set updatetime=20
97a9538c37ff commit https://github.com/vim/vim/commit/c67e89213476b5f4756d92208b57ce9ef4a4cf24
Christian Brabandt <cb@256bit.org>
parents: 8947
diff changeset
94 call timer_start(100, 'ExitInsertMode')
97a9538c37ff commit https://github.com/vim/vim/commit/c67e89213476b5f4756d92208b57ce9ef4a4cf24
Christian Brabandt <cb@256bit.org>
parents: 8947
diff changeset
95 " CursorHoldI does not trigger after CTRL-X
97a9538c37ff commit https://github.com/vim/vim/commit/c67e89213476b5f4756d92208b57ce9ef4a4cf24
Christian Brabandt <cb@256bit.org>
parents: 8947
diff changeset
96 call feedkeys("a\<C-X>", 'x!')
97a9538c37ff commit https://github.com/vim/vim/commit/c67e89213476b5f4756d92208b57ce9ef4a4cf24
Christian Brabandt <cb@256bit.org>
parents: 8947
diff changeset
97 call assert_equal(0, g:triggered)
15659
8513d9864f7e patch 8.1.0837: timer interrupting cursorhold and mapping not tested
Bram Moolenaar <Bram@vim.org>
parents: 15615
diff changeset
98 unlet g:triggered
9653
01c9630e80e0 commit https://github.com/vim/vim/commit/e99e84497b89e5f91df519790802770920ecf4fe
Christian Brabandt <cb@256bit.org>
parents: 9599
diff changeset
99 au! CursorHoldI
10141
b67088aae933 commit https://github.com/vim/vim/commit/aeac9006d5d14910f214f09df52c026a5936e737
Christian Brabandt <cb@256bit.org>
parents: 10114
diff changeset
100 set updatetime&
9106
97a9538c37ff commit https://github.com/vim/vim/commit/c67e89213476b5f4756d92208b57ce9ef4a4cf24
Christian Brabandt <cb@256bit.org>
parents: 8947
diff changeset
101 endfunc
16646
ea0f9a2df961 patch 8.1.1325: cannot build with +eval but without +channel and +timers
Bram Moolenaar <Bram@vim.org>
parents: 16617
diff changeset
102
ea0f9a2df961 patch 8.1.1325: cannot build with +eval but without +channel and +timers
Bram Moolenaar <Bram@vim.org>
parents: 16617
diff changeset
103 func Test_OptionSet_modeline()
ea0f9a2df961 patch 8.1.1325: cannot build with +eval but without +channel and +timers
Bram Moolenaar <Bram@vim.org>
parents: 16617
diff changeset
104 call test_override('starting', 1)
ea0f9a2df961 patch 8.1.1325: cannot build with +eval but without +channel and +timers
Bram Moolenaar <Bram@vim.org>
parents: 16617
diff changeset
105 au! OptionSet
ea0f9a2df961 patch 8.1.1325: cannot build with +eval but without +channel and +timers
Bram Moolenaar <Bram@vim.org>
parents: 16617
diff changeset
106 augroup set_tabstop
ea0f9a2df961 patch 8.1.1325: cannot build with +eval but without +channel and +timers
Bram Moolenaar <Bram@vim.org>
parents: 16617
diff changeset
107 au OptionSet tabstop call timer_start(1, {-> execute("echo 'Handler called'", "")})
ea0f9a2df961 patch 8.1.1325: cannot build with +eval but without +channel and +timers
Bram Moolenaar <Bram@vim.org>
parents: 16617
diff changeset
108 augroup END
ea0f9a2df961 patch 8.1.1325: cannot build with +eval but without +channel and +timers
Bram Moolenaar <Bram@vim.org>
parents: 16617
diff changeset
109 call writefile(['vim: set ts=7 sw=5 :', 'something'], 'XoptionsetModeline')
ea0f9a2df961 patch 8.1.1325: cannot build with +eval but without +channel and +timers
Bram Moolenaar <Bram@vim.org>
parents: 16617
diff changeset
110 set modeline
ea0f9a2df961 patch 8.1.1325: cannot build with +eval but without +channel and +timers
Bram Moolenaar <Bram@vim.org>
parents: 16617
diff changeset
111 let v:errmsg = ''
ea0f9a2df961 patch 8.1.1325: cannot build with +eval but without +channel and +timers
Bram Moolenaar <Bram@vim.org>
parents: 16617
diff changeset
112 call assert_fails('split XoptionsetModeline', 'E12:')
ea0f9a2df961 patch 8.1.1325: cannot build with +eval but without +channel and +timers
Bram Moolenaar <Bram@vim.org>
parents: 16617
diff changeset
113 call assert_equal(7, &ts)
ea0f9a2df961 patch 8.1.1325: cannot build with +eval but without +channel and +timers
Bram Moolenaar <Bram@vim.org>
parents: 16617
diff changeset
114 call assert_equal('', v:errmsg)
ea0f9a2df961 patch 8.1.1325: cannot build with +eval but without +channel and +timers
Bram Moolenaar <Bram@vim.org>
parents: 16617
diff changeset
115
ea0f9a2df961 patch 8.1.1325: cannot build with +eval but without +channel and +timers
Bram Moolenaar <Bram@vim.org>
parents: 16617
diff changeset
116 augroup set_tabstop
ea0f9a2df961 patch 8.1.1325: cannot build with +eval but without +channel and +timers
Bram Moolenaar <Bram@vim.org>
parents: 16617
diff changeset
117 au!
ea0f9a2df961 patch 8.1.1325: cannot build with +eval but without +channel and +timers
Bram Moolenaar <Bram@vim.org>
parents: 16617
diff changeset
118 augroup END
ea0f9a2df961 patch 8.1.1325: cannot build with +eval but without +channel and +timers
Bram Moolenaar <Bram@vim.org>
parents: 16617
diff changeset
119 bwipe!
ea0f9a2df961 patch 8.1.1325: cannot build with +eval but without +channel and +timers
Bram Moolenaar <Bram@vim.org>
parents: 16617
diff changeset
120 set ts&
ea0f9a2df961 patch 8.1.1325: cannot build with +eval but without +channel and +timers
Bram Moolenaar <Bram@vim.org>
parents: 16617
diff changeset
121 call delete('XoptionsetModeline')
ea0f9a2df961 patch 8.1.1325: cannot build with +eval but without +channel and +timers
Bram Moolenaar <Bram@vim.org>
parents: 16617
diff changeset
122 call test_override('starting', 0)
ea0f9a2df961 patch 8.1.1325: cannot build with +eval but without +channel and +timers
Bram Moolenaar <Bram@vim.org>
parents: 16617
diff changeset
123 endfunc
ea0f9a2df961 patch 8.1.1325: cannot build with +eval but without +channel and +timers
Bram Moolenaar <Bram@vim.org>
parents: 16617
diff changeset
124
ea0f9a2df961 patch 8.1.1325: cannot build with +eval but without +channel and +timers
Bram Moolenaar <Bram@vim.org>
parents: 16617
diff changeset
125 endif "has('timers')
8947
c07caeb90a35 commit https://github.com/vim/vim/commit/40b1b5443c88fab77f1f7c6f9e801f7ffdb7e0a8
Christian Brabandt <cb@256bit.org>
parents: 8738
diff changeset
126
11707
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
127 func Test_bufunload()
9106
97a9538c37ff commit https://github.com/vim/vim/commit/c67e89213476b5f4756d92208b57ce9ef4a4cf24
Christian Brabandt <cb@256bit.org>
parents: 8947
diff changeset
128 augroup test_bufunload_group
97a9538c37ff commit https://github.com/vim/vim/commit/c67e89213476b5f4756d92208b57ce9ef4a4cf24
Christian Brabandt <cb@256bit.org>
parents: 8947
diff changeset
129 autocmd!
97a9538c37ff commit https://github.com/vim/vim/commit/c67e89213476b5f4756d92208b57ce9ef4a4cf24
Christian Brabandt <cb@256bit.org>
parents: 8947
diff changeset
130 autocmd BufUnload * call add(s:li, "bufunload")
97a9538c37ff commit https://github.com/vim/vim/commit/c67e89213476b5f4756d92208b57ce9ef4a4cf24
Christian Brabandt <cb@256bit.org>
parents: 8947
diff changeset
131 autocmd BufDelete * call add(s:li, "bufdelete")
97a9538c37ff commit https://github.com/vim/vim/commit/c67e89213476b5f4756d92208b57ce9ef4a4cf24
Christian Brabandt <cb@256bit.org>
parents: 8947
diff changeset
132 autocmd BufWipeout * call add(s:li, "bufwipeout")
97a9538c37ff commit https://github.com/vim/vim/commit/c67e89213476b5f4756d92208b57ce9ef4a4cf24
Christian Brabandt <cb@256bit.org>
parents: 8947
diff changeset
133 augroup END
97a9538c37ff commit https://github.com/vim/vim/commit/c67e89213476b5f4756d92208b57ce9ef4a4cf24
Christian Brabandt <cb@256bit.org>
parents: 8947
diff changeset
134
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
135 let s:li = []
9106
97a9538c37ff commit https://github.com/vim/vim/commit/c67e89213476b5f4756d92208b57ce9ef4a4cf24
Christian Brabandt <cb@256bit.org>
parents: 8947
diff changeset
136 new
97a9538c37ff commit https://github.com/vim/vim/commit/c67e89213476b5f4756d92208b57ce9ef4a4cf24
Christian Brabandt <cb@256bit.org>
parents: 8947
diff changeset
137 setlocal bufhidden=
97a9538c37ff commit https://github.com/vim/vim/commit/c67e89213476b5f4756d92208b57ce9ef4a4cf24
Christian Brabandt <cb@256bit.org>
parents: 8947
diff changeset
138 bunload
97a9538c37ff commit https://github.com/vim/vim/commit/c67e89213476b5f4756d92208b57ce9ef4a4cf24
Christian Brabandt <cb@256bit.org>
parents: 8947
diff changeset
139 call assert_equal(["bufunload", "bufdelete"], s:li)
8947
c07caeb90a35 commit https://github.com/vim/vim/commit/40b1b5443c88fab77f1f7c6f9e801f7ffdb7e0a8
Christian Brabandt <cb@256bit.org>
parents: 8738
diff changeset
140
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
141 let s:li = []
9106
97a9538c37ff commit https://github.com/vim/vim/commit/c67e89213476b5f4756d92208b57ce9ef4a4cf24
Christian Brabandt <cb@256bit.org>
parents: 8947
diff changeset
142 new
97a9538c37ff commit https://github.com/vim/vim/commit/c67e89213476b5f4756d92208b57ce9ef4a4cf24
Christian Brabandt <cb@256bit.org>
parents: 8947
diff changeset
143 setlocal bufhidden=delete
97a9538c37ff commit https://github.com/vim/vim/commit/c67e89213476b5f4756d92208b57ce9ef4a4cf24
Christian Brabandt <cb@256bit.org>
parents: 8947
diff changeset
144 bunload
97a9538c37ff commit https://github.com/vim/vim/commit/c67e89213476b5f4756d92208b57ce9ef4a4cf24
Christian Brabandt <cb@256bit.org>
parents: 8947
diff changeset
145 call assert_equal(["bufunload", "bufdelete"], s:li)
8947
c07caeb90a35 commit https://github.com/vim/vim/commit/40b1b5443c88fab77f1f7c6f9e801f7ffdb7e0a8
Christian Brabandt <cb@256bit.org>
parents: 8738
diff changeset
146
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
147 let s:li = []
9106
97a9538c37ff commit https://github.com/vim/vim/commit/c67e89213476b5f4756d92208b57ce9ef4a4cf24
Christian Brabandt <cb@256bit.org>
parents: 8947
diff changeset
148 new
97a9538c37ff commit https://github.com/vim/vim/commit/c67e89213476b5f4756d92208b57ce9ef4a4cf24
Christian Brabandt <cb@256bit.org>
parents: 8947
diff changeset
149 setlocal bufhidden=unload
97a9538c37ff commit https://github.com/vim/vim/commit/c67e89213476b5f4756d92208b57ce9ef4a4cf24
Christian Brabandt <cb@256bit.org>
parents: 8947
diff changeset
150 bwipeout
97a9538c37ff commit https://github.com/vim/vim/commit/c67e89213476b5f4756d92208b57ce9ef4a4cf24
Christian Brabandt <cb@256bit.org>
parents: 8947
diff changeset
151 call assert_equal(["bufunload", "bufdelete", "bufwipeout"], s:li)
97a9538c37ff commit https://github.com/vim/vim/commit/c67e89213476b5f4756d92208b57ce9ef4a4cf24
Christian Brabandt <cb@256bit.org>
parents: 8947
diff changeset
152
9653
01c9630e80e0 commit https://github.com/vim/vim/commit/e99e84497b89e5f91df519790802770920ecf4fe
Christian Brabandt <cb@256bit.org>
parents: 9599
diff changeset
153 au! test_bufunload_group
9106
97a9538c37ff commit https://github.com/vim/vim/commit/c67e89213476b5f4756d92208b57ce9ef4a4cf24
Christian Brabandt <cb@256bit.org>
parents: 8947
diff changeset
154 augroup! test_bufunload_group
8947
c07caeb90a35 commit https://github.com/vim/vim/commit/40b1b5443c88fab77f1f7c6f9e801f7ffdb7e0a8
Christian Brabandt <cb@256bit.org>
parents: 8738
diff changeset
155 endfunc
9450
073aebdba121 commit https://github.com/vim/vim/commit/30445cb6e94698d212ba866ef3e4022ac625540a
Christian Brabandt <cb@256bit.org>
parents: 9106
diff changeset
156
073aebdba121 commit https://github.com/vim/vim/commit/30445cb6e94698d212ba866ef3e4022ac625540a
Christian Brabandt <cb@256bit.org>
parents: 9106
diff changeset
157 " SEGV occurs in older versions. (At least 7.4.2005 or older)
11707
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
158 func Test_autocmd_bufunload_with_tabnext()
9450
073aebdba121 commit https://github.com/vim/vim/commit/30445cb6e94698d212ba866ef3e4022ac625540a
Christian Brabandt <cb@256bit.org>
parents: 9106
diff changeset
159 tabedit
073aebdba121 commit https://github.com/vim/vim/commit/30445cb6e94698d212ba866ef3e4022ac625540a
Christian Brabandt <cb@256bit.org>
parents: 9106
diff changeset
160 tabfirst
073aebdba121 commit https://github.com/vim/vim/commit/30445cb6e94698d212ba866ef3e4022ac625540a
Christian Brabandt <cb@256bit.org>
parents: 9106
diff changeset
161
073aebdba121 commit https://github.com/vim/vim/commit/30445cb6e94698d212ba866ef3e4022ac625540a
Christian Brabandt <cb@256bit.org>
parents: 9106
diff changeset
162 augroup test_autocmd_bufunload_with_tabnext_group
073aebdba121 commit https://github.com/vim/vim/commit/30445cb6e94698d212ba866ef3e4022ac625540a
Christian Brabandt <cb@256bit.org>
parents: 9106
diff changeset
163 autocmd!
073aebdba121 commit https://github.com/vim/vim/commit/30445cb6e94698d212ba866ef3e4022ac625540a
Christian Brabandt <cb@256bit.org>
parents: 9106
diff changeset
164 autocmd BufUnload <buffer> tabnext
073aebdba121 commit https://github.com/vim/vim/commit/30445cb6e94698d212ba866ef3e4022ac625540a
Christian Brabandt <cb@256bit.org>
parents: 9106
diff changeset
165 augroup END
073aebdba121 commit https://github.com/vim/vim/commit/30445cb6e94698d212ba866ef3e4022ac625540a
Christian Brabandt <cb@256bit.org>
parents: 9106
diff changeset
166
073aebdba121 commit https://github.com/vim/vim/commit/30445cb6e94698d212ba866ef3e4022ac625540a
Christian Brabandt <cb@256bit.org>
parents: 9106
diff changeset
167 quit
073aebdba121 commit https://github.com/vim/vim/commit/30445cb6e94698d212ba866ef3e4022ac625540a
Christian Brabandt <cb@256bit.org>
parents: 9106
diff changeset
168 call assert_equal(2, tabpagenr('$'))
073aebdba121 commit https://github.com/vim/vim/commit/30445cb6e94698d212ba866ef3e4022ac625540a
Christian Brabandt <cb@256bit.org>
parents: 9106
diff changeset
169
10106
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
170 autocmd! test_autocmd_bufunload_with_tabnext_group
9450
073aebdba121 commit https://github.com/vim/vim/commit/30445cb6e94698d212ba866ef3e4022ac625540a
Christian Brabandt <cb@256bit.org>
parents: 9106
diff changeset
171 augroup! test_autocmd_bufunload_with_tabnext_group
073aebdba121 commit https://github.com/vim/vim/commit/30445cb6e94698d212ba866ef3e4022ac625540a
Christian Brabandt <cb@256bit.org>
parents: 9106
diff changeset
172 tablast
073aebdba121 commit https://github.com/vim/vim/commit/30445cb6e94698d212ba866ef3e4022ac625540a
Christian Brabandt <cb@256bit.org>
parents: 9106
diff changeset
173 quit
073aebdba121 commit https://github.com/vim/vim/commit/30445cb6e94698d212ba866ef3e4022ac625540a
Christian Brabandt <cb@256bit.org>
parents: 9106
diff changeset
174 endfunc
9595
0190d5de215f commit https://github.com/vim/vim/commit/c917da4b3e8801a255dbefea8e4ed19c1c716dd8
Christian Brabandt <cb@256bit.org>
parents: 9450
diff changeset
175
23760
bb2afcad503b patch 8.2.2421: double free when using autocommand with "argdel"
Bram Moolenaar <Bram@vim.org>
parents: 23758
diff changeset
176 func Test_argdelete_in_next()
bb2afcad503b patch 8.2.2421: double free when using autocommand with "argdel"
Bram Moolenaar <Bram@vim.org>
parents: 23758
diff changeset
177 au BufNew,BufEnter,BufLeave,BufWinEnter * argdel
bb2afcad503b patch 8.2.2421: double free when using autocommand with "argdel"
Bram Moolenaar <Bram@vim.org>
parents: 23758
diff changeset
178 call assert_fails('next a b', 'E1156:')
bb2afcad503b patch 8.2.2421: double free when using autocommand with "argdel"
Bram Moolenaar <Bram@vim.org>
parents: 23758
diff changeset
179 au! BufNew,BufEnter,BufLeave,BufWinEnter *
bb2afcad503b patch 8.2.2421: double free when using autocommand with "argdel"
Bram Moolenaar <Bram@vim.org>
parents: 23758
diff changeset
180 endfunc
bb2afcad503b patch 8.2.2421: double free when using autocommand with "argdel"
Bram Moolenaar <Bram@vim.org>
parents: 23758
diff changeset
181
11707
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
182 func Test_autocmd_bufwinleave_with_tabfirst()
10114
aa2219afd1c2 commit https://github.com/vim/vim/commit/f9e687e0681a250e1549ab27b6c7ef2c500395e3
Christian Brabandt <cb@256bit.org>
parents: 10106
diff changeset
183 tabedit
aa2219afd1c2 commit https://github.com/vim/vim/commit/f9e687e0681a250e1549ab27b6c7ef2c500395e3
Christian Brabandt <cb@256bit.org>
parents: 10106
diff changeset
184 augroup sample
aa2219afd1c2 commit https://github.com/vim/vim/commit/f9e687e0681a250e1549ab27b6c7ef2c500395e3
Christian Brabandt <cb@256bit.org>
parents: 10106
diff changeset
185 autocmd!
aa2219afd1c2 commit https://github.com/vim/vim/commit/f9e687e0681a250e1549ab27b6c7ef2c500395e3
Christian Brabandt <cb@256bit.org>
parents: 10106
diff changeset
186 autocmd BufWinLeave <buffer> tabfirst
aa2219afd1c2 commit https://github.com/vim/vim/commit/f9e687e0681a250e1549ab27b6c7ef2c500395e3
Christian Brabandt <cb@256bit.org>
parents: 10106
diff changeset
187 augroup END
aa2219afd1c2 commit https://github.com/vim/vim/commit/f9e687e0681a250e1549ab27b6c7ef2c500395e3
Christian Brabandt <cb@256bit.org>
parents: 10106
diff changeset
188 call setline(1, ['a', 'b', 'c'])
aa2219afd1c2 commit https://github.com/vim/vim/commit/f9e687e0681a250e1549ab27b6c7ef2c500395e3
Christian Brabandt <cb@256bit.org>
parents: 10106
diff changeset
189 edit! a.txt
10151
0be17a56e65f commit https://github.com/vim/vim/commit/f18c4dbbe545757ce93563b25380e6f010340b4e
Christian Brabandt <cb@256bit.org>
parents: 10141
diff changeset
190 tabclose
10114
aa2219afd1c2 commit https://github.com/vim/vim/commit/f9e687e0681a250e1549ab27b6c7ef2c500395e3
Christian Brabandt <cb@256bit.org>
parents: 10106
diff changeset
191 endfunc
aa2219afd1c2 commit https://github.com/vim/vim/commit/f9e687e0681a250e1549ab27b6c7ef2c500395e3
Christian Brabandt <cb@256bit.org>
parents: 10106
diff changeset
192
10106
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
193 " SEGV occurs in older versions. (At least 7.4.2321 or older)
11707
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
194 func Test_autocmd_bufunload_avoiding_SEGV_01()
10106
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
195 split aa.txt
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
196 let lastbuf = bufnr('$')
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
197
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
198 augroup test_autocmd_bufunload
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
199 autocmd!
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
200 exe 'autocmd BufUnload <buffer> ' . (lastbuf + 1) . 'bwipeout!'
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
201 augroup END
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
202
22742
f7f2d73ff85e patch 8.2.1919: assert_fails() setting emsg_silent changes normal execution
Bram Moolenaar <Bram@vim.org>
parents: 22576
diff changeset
203 call assert_fails('edit bb.txt', 'E937:')
10106
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
204
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
205 autocmd! test_autocmd_bufunload
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
206 augroup! test_autocmd_bufunload
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
207 bwipe! aa.txt
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
208 bwipe! bb.txt
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
209 endfunc
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
210
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
211 " SEGV occurs in older versions. (At least 7.4.2321 or older)
11707
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
212 func Test_autocmd_bufunload_avoiding_SEGV_02()
10106
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
213 setlocal buftype=nowrite
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
214 let lastbuf = bufnr('$')
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
215
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
216 augroup test_autocmd_bufunload
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
217 autocmd!
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
218 exe 'autocmd BufUnload <buffer> ' . (lastbuf + 1) . 'bwipeout!'
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
219 augroup END
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
220
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
221 normal! i1
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
222 call assert_fails('edit a.txt', 'E517:')
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
223
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
224 autocmd! test_autocmd_bufunload
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
225 augroup! test_autocmd_bufunload
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
226 bwipe! a.txt
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
227 endfunc
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
228
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
229 func Test_autocmd_dummy_wipeout()
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
230 " prepare files
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
231 call writefile([''], 'Xdummywipetest1.txt')
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
232 call writefile([''], 'Xdummywipetest2.txt')
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
233 augroup test_bufunload_group
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
234 autocmd!
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
235 autocmd BufUnload * call add(s:li, "bufunload")
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
236 autocmd BufDelete * call add(s:li, "bufdelete")
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
237 autocmd BufWipeout * call add(s:li, "bufwipeout")
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
238 augroup END
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
239
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
240 let s:li = []
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
241 split Xdummywipetest1.txt
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
242 silent! vimgrep /notmatched/ Xdummywipetest*
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
243 call assert_equal(["bufunload", "bufwipeout"], s:li)
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
244
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
245 bwipeout
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
246 call delete('Xdummywipetest1.txt')
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
247 call delete('Xdummywipetest2.txt')
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
248 au! test_bufunload_group
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
249 augroup! test_bufunload_group
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
250 endfunc
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
251
9595
0190d5de215f commit https://github.com/vim/vim/commit/c917da4b3e8801a255dbefea8e4ed19c1c716dd8
Christian Brabandt <cb@256bit.org>
parents: 9450
diff changeset
252 func Test_win_tab_autocmd()
0190d5de215f commit https://github.com/vim/vim/commit/c917da4b3e8801a255dbefea8e4ed19c1c716dd8
Christian Brabandt <cb@256bit.org>
parents: 9450
diff changeset
253 let g:record = []
0190d5de215f commit https://github.com/vim/vim/commit/c917da4b3e8801a255dbefea8e4ed19c1c716dd8
Christian Brabandt <cb@256bit.org>
parents: 9450
diff changeset
254
0190d5de215f commit https://github.com/vim/vim/commit/c917da4b3e8801a255dbefea8e4ed19c1c716dd8
Christian Brabandt <cb@256bit.org>
parents: 9450
diff changeset
255 augroup testing
0190d5de215f commit https://github.com/vim/vim/commit/c917da4b3e8801a255dbefea8e4ed19c1c716dd8
Christian Brabandt <cb@256bit.org>
parents: 9450
diff changeset
256 au WinNew * call add(g:record, 'WinNew')
0190d5de215f commit https://github.com/vim/vim/commit/c917da4b3e8801a255dbefea8e4ed19c1c716dd8
Christian Brabandt <cb@256bit.org>
parents: 9450
diff changeset
257 au WinEnter * call add(g:record, 'WinEnter')
0190d5de215f commit https://github.com/vim/vim/commit/c917da4b3e8801a255dbefea8e4ed19c1c716dd8
Christian Brabandt <cb@256bit.org>
parents: 9450
diff changeset
258 au WinLeave * call add(g:record, 'WinLeave')
0190d5de215f commit https://github.com/vim/vim/commit/c917da4b3e8801a255dbefea8e4ed19c1c716dd8
Christian Brabandt <cb@256bit.org>
parents: 9450
diff changeset
259 au TabNew * call add(g:record, 'TabNew')
9599
42a8a81decdf commit https://github.com/vim/vim/commit/12c11d553053f5a9eae9eb3c518279b12fa928c2
Christian Brabandt <cb@256bit.org>
parents: 9595
diff changeset
260 au TabClosed * call add(g:record, 'TabClosed')
9595
0190d5de215f commit https://github.com/vim/vim/commit/c917da4b3e8801a255dbefea8e4ed19c1c716dd8
Christian Brabandt <cb@256bit.org>
parents: 9450
diff changeset
261 au TabEnter * call add(g:record, 'TabEnter')
0190d5de215f commit https://github.com/vim/vim/commit/c917da4b3e8801a255dbefea8e4ed19c1c716dd8
Christian Brabandt <cb@256bit.org>
parents: 9450
diff changeset
262 au TabLeave * call add(g:record, 'TabLeave')
0190d5de215f commit https://github.com/vim/vim/commit/c917da4b3e8801a255dbefea8e4ed19c1c716dd8
Christian Brabandt <cb@256bit.org>
parents: 9450
diff changeset
263 augroup END
0190d5de215f commit https://github.com/vim/vim/commit/c917da4b3e8801a255dbefea8e4ed19c1c716dd8
Christian Brabandt <cb@256bit.org>
parents: 9450
diff changeset
264
0190d5de215f commit https://github.com/vim/vim/commit/c917da4b3e8801a255dbefea8e4ed19c1c716dd8
Christian Brabandt <cb@256bit.org>
parents: 9450
diff changeset
265 split
0190d5de215f commit https://github.com/vim/vim/commit/c917da4b3e8801a255dbefea8e4ed19c1c716dd8
Christian Brabandt <cb@256bit.org>
parents: 9450
diff changeset
266 tabnew
0190d5de215f commit https://github.com/vim/vim/commit/c917da4b3e8801a255dbefea8e4ed19c1c716dd8
Christian Brabandt <cb@256bit.org>
parents: 9450
diff changeset
267 close
0190d5de215f commit https://github.com/vim/vim/commit/c917da4b3e8801a255dbefea8e4ed19c1c716dd8
Christian Brabandt <cb@256bit.org>
parents: 9450
diff changeset
268 close
0190d5de215f commit https://github.com/vim/vim/commit/c917da4b3e8801a255dbefea8e4ed19c1c716dd8
Christian Brabandt <cb@256bit.org>
parents: 9450
diff changeset
269
0190d5de215f commit https://github.com/vim/vim/commit/c917da4b3e8801a255dbefea8e4ed19c1c716dd8
Christian Brabandt <cb@256bit.org>
parents: 9450
diff changeset
270 call assert_equal([
0190d5de215f commit https://github.com/vim/vim/commit/c917da4b3e8801a255dbefea8e4ed19c1c716dd8
Christian Brabandt <cb@256bit.org>
parents: 9450
diff changeset
271 \ 'WinLeave', 'WinNew', 'WinEnter',
0190d5de215f commit https://github.com/vim/vim/commit/c917da4b3e8801a255dbefea8e4ed19c1c716dd8
Christian Brabandt <cb@256bit.org>
parents: 9450
diff changeset
272 \ 'WinLeave', 'TabLeave', 'WinNew', 'WinEnter', 'TabNew', 'TabEnter',
9599
42a8a81decdf commit https://github.com/vim/vim/commit/12c11d553053f5a9eae9eb3c518279b12fa928c2
Christian Brabandt <cb@256bit.org>
parents: 9595
diff changeset
273 \ 'WinLeave', 'TabLeave', 'TabClosed', 'WinEnter', 'TabEnter',
42a8a81decdf commit https://github.com/vim/vim/commit/12c11d553053f5a9eae9eb3c518279b12fa928c2
Christian Brabandt <cb@256bit.org>
parents: 9595
diff changeset
274 \ 'WinLeave', 'WinEnter'
42a8a81decdf commit https://github.com/vim/vim/commit/12c11d553053f5a9eae9eb3c518279b12fa928c2
Christian Brabandt <cb@256bit.org>
parents: 9595
diff changeset
275 \ ], g:record)
42a8a81decdf commit https://github.com/vim/vim/commit/12c11d553053f5a9eae9eb3c518279b12fa928c2
Christian Brabandt <cb@256bit.org>
parents: 9595
diff changeset
276
42a8a81decdf commit https://github.com/vim/vim/commit/12c11d553053f5a9eae9eb3c518279b12fa928c2
Christian Brabandt <cb@256bit.org>
parents: 9595
diff changeset
277 let g:record = []
42a8a81decdf commit https://github.com/vim/vim/commit/12c11d553053f5a9eae9eb3c518279b12fa928c2
Christian Brabandt <cb@256bit.org>
parents: 9595
diff changeset
278 tabnew somefile
42a8a81decdf commit https://github.com/vim/vim/commit/12c11d553053f5a9eae9eb3c518279b12fa928c2
Christian Brabandt <cb@256bit.org>
parents: 9595
diff changeset
279 tabnext
42a8a81decdf commit https://github.com/vim/vim/commit/12c11d553053f5a9eae9eb3c518279b12fa928c2
Christian Brabandt <cb@256bit.org>
parents: 9595
diff changeset
280 bwipe somefile
42a8a81decdf commit https://github.com/vim/vim/commit/12c11d553053f5a9eae9eb3c518279b12fa928c2
Christian Brabandt <cb@256bit.org>
parents: 9595
diff changeset
281
42a8a81decdf commit https://github.com/vim/vim/commit/12c11d553053f5a9eae9eb3c518279b12fa928c2
Christian Brabandt <cb@256bit.org>
parents: 9595
diff changeset
282 call assert_equal([
42a8a81decdf commit https://github.com/vim/vim/commit/12c11d553053f5a9eae9eb3c518279b12fa928c2
Christian Brabandt <cb@256bit.org>
parents: 9595
diff changeset
283 \ 'WinLeave', 'TabLeave', 'WinNew', 'WinEnter', 'TabNew', 'TabEnter',
9595
0190d5de215f commit https://github.com/vim/vim/commit/c917da4b3e8801a255dbefea8e4ed19c1c716dd8
Christian Brabandt <cb@256bit.org>
parents: 9450
diff changeset
284 \ 'WinLeave', 'TabLeave', 'WinEnter', 'TabEnter',
9599
42a8a81decdf commit https://github.com/vim/vim/commit/12c11d553053f5a9eae9eb3c518279b12fa928c2
Christian Brabandt <cb@256bit.org>
parents: 9595
diff changeset
285 \ 'TabClosed'
9595
0190d5de215f commit https://github.com/vim/vim/commit/c917da4b3e8801a255dbefea8e4ed19c1c716dd8
Christian Brabandt <cb@256bit.org>
parents: 9450
diff changeset
286 \ ], g:record)
0190d5de215f commit https://github.com/vim/vim/commit/c917da4b3e8801a255dbefea8e4ed19c1c716dd8
Christian Brabandt <cb@256bit.org>
parents: 9450
diff changeset
287
0190d5de215f commit https://github.com/vim/vim/commit/c917da4b3e8801a255dbefea8e4ed19c1c716dd8
Christian Brabandt <cb@256bit.org>
parents: 9450
diff changeset
288 augroup testing
0190d5de215f commit https://github.com/vim/vim/commit/c917da4b3e8801a255dbefea8e4ed19c1c716dd8
Christian Brabandt <cb@256bit.org>
parents: 9450
diff changeset
289 au!
0190d5de215f commit https://github.com/vim/vim/commit/c917da4b3e8801a255dbefea8e4ed19c1c716dd8
Christian Brabandt <cb@256bit.org>
parents: 9450
diff changeset
290 augroup END
0190d5de215f commit https://github.com/vim/vim/commit/c917da4b3e8801a255dbefea8e4ed19c1c716dd8
Christian Brabandt <cb@256bit.org>
parents: 9450
diff changeset
291 unlet g:record
0190d5de215f commit https://github.com/vim/vim/commit/c917da4b3e8801a255dbefea8e4ed19c1c716dd8
Christian Brabandt <cb@256bit.org>
parents: 9450
diff changeset
292 endfunc
9653
01c9630e80e0 commit https://github.com/vim/vim/commit/e99e84497b89e5f91df519790802770920ecf4fe
Christian Brabandt <cb@256bit.org>
parents: 9599
diff changeset
293
01c9630e80e0 commit https://github.com/vim/vim/commit/e99e84497b89e5f91df519790802770920ecf4fe
Christian Brabandt <cb@256bit.org>
parents: 9599
diff changeset
294 func s:AddAnAutocmd()
01c9630e80e0 commit https://github.com/vim/vim/commit/e99e84497b89e5f91df519790802770920ecf4fe
Christian Brabandt <cb@256bit.org>
parents: 9599
diff changeset
295 augroup vimBarTest
01c9630e80e0 commit https://github.com/vim/vim/commit/e99e84497b89e5f91df519790802770920ecf4fe
Christian Brabandt <cb@256bit.org>
parents: 9599
diff changeset
296 au BufReadCmd * echo 'hello'
01c9630e80e0 commit https://github.com/vim/vim/commit/e99e84497b89e5f91df519790802770920ecf4fe
Christian Brabandt <cb@256bit.org>
parents: 9599
diff changeset
297 augroup END
01c9630e80e0 commit https://github.com/vim/vim/commit/e99e84497b89e5f91df519790802770920ecf4fe
Christian Brabandt <cb@256bit.org>
parents: 9599
diff changeset
298 call assert_equal(3, len(split(execute('au vimBarTest'), "\n")))
01c9630e80e0 commit https://github.com/vim/vim/commit/e99e84497b89e5f91df519790802770920ecf4fe
Christian Brabandt <cb@256bit.org>
parents: 9599
diff changeset
299 endfunc
01c9630e80e0 commit https://github.com/vim/vim/commit/e99e84497b89e5f91df519790802770920ecf4fe
Christian Brabandt <cb@256bit.org>
parents: 9599
diff changeset
300
01c9630e80e0 commit https://github.com/vim/vim/commit/e99e84497b89e5f91df519790802770920ecf4fe
Christian Brabandt <cb@256bit.org>
parents: 9599
diff changeset
301 func Test_early_bar()
01c9630e80e0 commit https://github.com/vim/vim/commit/e99e84497b89e5f91df519790802770920ecf4fe
Christian Brabandt <cb@256bit.org>
parents: 9599
diff changeset
302 " test that a bar is recognized before the {event}
01c9630e80e0 commit https://github.com/vim/vim/commit/e99e84497b89e5f91df519790802770920ecf4fe
Christian Brabandt <cb@256bit.org>
parents: 9599
diff changeset
303 call s:AddAnAutocmd()
01c9630e80e0 commit https://github.com/vim/vim/commit/e99e84497b89e5f91df519790802770920ecf4fe
Christian Brabandt <cb@256bit.org>
parents: 9599
diff changeset
304 augroup vimBarTest | au! | augroup END
01c9630e80e0 commit https://github.com/vim/vim/commit/e99e84497b89e5f91df519790802770920ecf4fe
Christian Brabandt <cb@256bit.org>
parents: 9599
diff changeset
305 call assert_equal(1, len(split(execute('au vimBarTest'), "\n")))
01c9630e80e0 commit https://github.com/vim/vim/commit/e99e84497b89e5f91df519790802770920ecf4fe
Christian Brabandt <cb@256bit.org>
parents: 9599
diff changeset
306
01c9630e80e0 commit https://github.com/vim/vim/commit/e99e84497b89e5f91df519790802770920ecf4fe
Christian Brabandt <cb@256bit.org>
parents: 9599
diff changeset
307 call s:AddAnAutocmd()
01c9630e80e0 commit https://github.com/vim/vim/commit/e99e84497b89e5f91df519790802770920ecf4fe
Christian Brabandt <cb@256bit.org>
parents: 9599
diff changeset
308 augroup vimBarTest| au!| augroup END
01c9630e80e0 commit https://github.com/vim/vim/commit/e99e84497b89e5f91df519790802770920ecf4fe
Christian Brabandt <cb@256bit.org>
parents: 9599
diff changeset
309 call assert_equal(1, len(split(execute('au vimBarTest'), "\n")))
01c9630e80e0 commit https://github.com/vim/vim/commit/e99e84497b89e5f91df519790802770920ecf4fe
Christian Brabandt <cb@256bit.org>
parents: 9599
diff changeset
310
01c9630e80e0 commit https://github.com/vim/vim/commit/e99e84497b89e5f91df519790802770920ecf4fe
Christian Brabandt <cb@256bit.org>
parents: 9599
diff changeset
311 " test that a bar is recognized after the {event}
01c9630e80e0 commit https://github.com/vim/vim/commit/e99e84497b89e5f91df519790802770920ecf4fe
Christian Brabandt <cb@256bit.org>
parents: 9599
diff changeset
312 call s:AddAnAutocmd()
01c9630e80e0 commit https://github.com/vim/vim/commit/e99e84497b89e5f91df519790802770920ecf4fe
Christian Brabandt <cb@256bit.org>
parents: 9599
diff changeset
313 augroup vimBarTest| au!BufReadCmd| augroup END
01c9630e80e0 commit https://github.com/vim/vim/commit/e99e84497b89e5f91df519790802770920ecf4fe
Christian Brabandt <cb@256bit.org>
parents: 9599
diff changeset
314 call assert_equal(1, len(split(execute('au vimBarTest'), "\n")))
01c9630e80e0 commit https://github.com/vim/vim/commit/e99e84497b89e5f91df519790802770920ecf4fe
Christian Brabandt <cb@256bit.org>
parents: 9599
diff changeset
315
01c9630e80e0 commit https://github.com/vim/vim/commit/e99e84497b89e5f91df519790802770920ecf4fe
Christian Brabandt <cb@256bit.org>
parents: 9599
diff changeset
316 " test that a bar is recognized after the {group}
01c9630e80e0 commit https://github.com/vim/vim/commit/e99e84497b89e5f91df519790802770920ecf4fe
Christian Brabandt <cb@256bit.org>
parents: 9599
diff changeset
317 call s:AddAnAutocmd()
01c9630e80e0 commit https://github.com/vim/vim/commit/e99e84497b89e5f91df519790802770920ecf4fe
Christian Brabandt <cb@256bit.org>
parents: 9599
diff changeset
318 au! vimBarTest|echo 'hello'
01c9630e80e0 commit https://github.com/vim/vim/commit/e99e84497b89e5f91df519790802770920ecf4fe
Christian Brabandt <cb@256bit.org>
parents: 9599
diff changeset
319 call assert_equal(1, len(split(execute('au vimBarTest'), "\n")))
01c9630e80e0 commit https://github.com/vim/vim/commit/e99e84497b89e5f91df519790802770920ecf4fe
Christian Brabandt <cb@256bit.org>
parents: 9599
diff changeset
320 endfunc
9682
a98607bb756c commit https://github.com/vim/vim/commit/f2c4c391192cab6e923b1a418d4af09106fba25f
Christian Brabandt <cb@256bit.org>
parents: 9653
diff changeset
321
10058
65e43481d7de commit https://github.com/vim/vim/commit/5c80908ced601be6db7554a147cdb0f98ac8daa1
Christian Brabandt <cb@256bit.org>
parents: 9682
diff changeset
322 func RemoveGroup()
65e43481d7de commit https://github.com/vim/vim/commit/5c80908ced601be6db7554a147cdb0f98ac8daa1
Christian Brabandt <cb@256bit.org>
parents: 9682
diff changeset
323 autocmd! StartOK
65e43481d7de commit https://github.com/vim/vim/commit/5c80908ced601be6db7554a147cdb0f98ac8daa1
Christian Brabandt <cb@256bit.org>
parents: 9682
diff changeset
324 augroup! StartOK
65e43481d7de commit https://github.com/vim/vim/commit/5c80908ced601be6db7554a147cdb0f98ac8daa1
Christian Brabandt <cb@256bit.org>
parents: 9682
diff changeset
325 endfunc
65e43481d7de commit https://github.com/vim/vim/commit/5c80908ced601be6db7554a147cdb0f98ac8daa1
Christian Brabandt <cb@256bit.org>
parents: 9682
diff changeset
326
9682
a98607bb756c commit https://github.com/vim/vim/commit/f2c4c391192cab6e923b1a418d4af09106fba25f
Christian Brabandt <cb@256bit.org>
parents: 9653
diff changeset
327 func Test_augroup_warning()
a98607bb756c commit https://github.com/vim/vim/commit/f2c4c391192cab6e923b1a418d4af09106fba25f
Christian Brabandt <cb@256bit.org>
parents: 9653
diff changeset
328 augroup TheWarning
a98607bb756c commit https://github.com/vim/vim/commit/f2c4c391192cab6e923b1a418d4af09106fba25f
Christian Brabandt <cb@256bit.org>
parents: 9653
diff changeset
329 au VimEnter * echo 'entering'
a98607bb756c commit https://github.com/vim/vim/commit/f2c4c391192cab6e923b1a418d4af09106fba25f
Christian Brabandt <cb@256bit.org>
parents: 9653
diff changeset
330 augroup END
22999
ffb173dbf228 patch 8.2.2046: some test failures don't give a clear error
Bram Moolenaar <Bram@vim.org>
parents: 22742
diff changeset
331 call assert_match("TheWarning.*VimEnter", execute('au VimEnter'))
9682
a98607bb756c commit https://github.com/vim/vim/commit/f2c4c391192cab6e923b1a418d4af09106fba25f
Christian Brabandt <cb@256bit.org>
parents: 9653
diff changeset
332 redir => res
a98607bb756c commit https://github.com/vim/vim/commit/f2c4c391192cab6e923b1a418d4af09106fba25f
Christian Brabandt <cb@256bit.org>
parents: 9653
diff changeset
333 augroup! TheWarning
a98607bb756c commit https://github.com/vim/vim/commit/f2c4c391192cab6e923b1a418d4af09106fba25f
Christian Brabandt <cb@256bit.org>
parents: 9653
diff changeset
334 redir END
22999
ffb173dbf228 patch 8.2.2046: some test failures don't give a clear error
Bram Moolenaar <Bram@vim.org>
parents: 22742
diff changeset
335 call assert_match("W19:", res)
ffb173dbf228 patch 8.2.2046: some test failures don't give a clear error
Bram Moolenaar <Bram@vim.org>
parents: 22742
diff changeset
336 call assert_match("-Deleted-.*VimEnter", execute('au VimEnter'))
9682
a98607bb756c commit https://github.com/vim/vim/commit/f2c4c391192cab6e923b1a418d4af09106fba25f
Christian Brabandt <cb@256bit.org>
parents: 9653
diff changeset
337
a98607bb756c commit https://github.com/vim/vim/commit/f2c4c391192cab6e923b1a418d4af09106fba25f
Christian Brabandt <cb@256bit.org>
parents: 9653
diff changeset
338 " check "Another" does not take the pace of the deleted entry
a98607bb756c commit https://github.com/vim/vim/commit/f2c4c391192cab6e923b1a418d4af09106fba25f
Christian Brabandt <cb@256bit.org>
parents: 9653
diff changeset
339 augroup Another
a98607bb756c commit https://github.com/vim/vim/commit/f2c4c391192cab6e923b1a418d4af09106fba25f
Christian Brabandt <cb@256bit.org>
parents: 9653
diff changeset
340 augroup END
22999
ffb173dbf228 patch 8.2.2046: some test failures don't give a clear error
Bram Moolenaar <Bram@vim.org>
parents: 22742
diff changeset
341 call assert_match("-Deleted-.*VimEnter", execute('au VimEnter'))
10141
b67088aae933 commit https://github.com/vim/vim/commit/aeac9006d5d14910f214f09df52c026a5936e737
Christian Brabandt <cb@256bit.org>
parents: 10114
diff changeset
342 augroup! Another
10058
65e43481d7de commit https://github.com/vim/vim/commit/5c80908ced601be6db7554a147cdb0f98ac8daa1
Christian Brabandt <cb@256bit.org>
parents: 9682
diff changeset
343
65e43481d7de commit https://github.com/vim/vim/commit/5c80908ced601be6db7554a147cdb0f98ac8daa1
Christian Brabandt <cb@256bit.org>
parents: 9682
diff changeset
344 " no warning for postpone aucmd delete
65e43481d7de commit https://github.com/vim/vim/commit/5c80908ced601be6db7554a147cdb0f98ac8daa1
Christian Brabandt <cb@256bit.org>
parents: 9682
diff changeset
345 augroup StartOK
65e43481d7de commit https://github.com/vim/vim/commit/5c80908ced601be6db7554a147cdb0f98ac8daa1
Christian Brabandt <cb@256bit.org>
parents: 9682
diff changeset
346 au VimEnter * call RemoveGroup()
65e43481d7de commit https://github.com/vim/vim/commit/5c80908ced601be6db7554a147cdb0f98ac8daa1
Christian Brabandt <cb@256bit.org>
parents: 9682
diff changeset
347 augroup END
22999
ffb173dbf228 patch 8.2.2046: some test failures don't give a clear error
Bram Moolenaar <Bram@vim.org>
parents: 22742
diff changeset
348 call assert_match("StartOK.*VimEnter", execute('au VimEnter'))
10058
65e43481d7de commit https://github.com/vim/vim/commit/5c80908ced601be6db7554a147cdb0f98ac8daa1
Christian Brabandt <cb@256bit.org>
parents: 9682
diff changeset
349 redir => res
65e43481d7de commit https://github.com/vim/vim/commit/5c80908ced601be6db7554a147cdb0f98ac8daa1
Christian Brabandt <cb@256bit.org>
parents: 9682
diff changeset
350 doautocmd VimEnter
65e43481d7de commit https://github.com/vim/vim/commit/5c80908ced601be6db7554a147cdb0f98ac8daa1
Christian Brabandt <cb@256bit.org>
parents: 9682
diff changeset
351 redir END
22999
ffb173dbf228 patch 8.2.2046: some test failures don't give a clear error
Bram Moolenaar <Bram@vim.org>
parents: 22742
diff changeset
352 call assert_notmatch("W19:", res)
10086
1de911ef1edf commit https://github.com/vim/vim/commit/de653f08805dde14424d417502a0480a6ad292f8
Christian Brabandt <cb@256bit.org>
parents: 10084
diff changeset
353 au! VimEnter
20120
16460964c304 patch 8.2.0615: regexp benchmark stest is old style
Bram Moolenaar <Bram@vim.org>
parents: 19954
diff changeset
354
16460964c304 patch 8.2.0615: regexp benchmark stest is old style
Bram Moolenaar <Bram@vim.org>
parents: 19954
diff changeset
355 call assert_fails('augroup!', 'E471:')
9682
a98607bb756c commit https://github.com/vim/vim/commit/f2c4c391192cab6e923b1a418d4af09106fba25f
Christian Brabandt <cb@256bit.org>
parents: 9653
diff changeset
356 endfunc
10084
3e410e6e1986 commit https://github.com/vim/vim/commit/b62cc36a600e2e1e5a1d1d484fef89898c847c4c
Christian Brabandt <cb@256bit.org>
parents: 10058
diff changeset
357
12680
429bf1b9292f patch 8.0.1218: writing to freed memory in autocmd
Christian Brabandt <cb@256bit.org>
parents: 12662
diff changeset
358 func Test_BufReadCmdHelp()
429bf1b9292f patch 8.0.1218: writing to freed memory in autocmd
Christian Brabandt <cb@256bit.org>
parents: 12662
diff changeset
359 " This used to cause access to free memory
429bf1b9292f patch 8.0.1218: writing to freed memory in autocmd
Christian Brabandt <cb@256bit.org>
parents: 12662
diff changeset
360 au BufReadCmd * e +h
429bf1b9292f patch 8.0.1218: writing to freed memory in autocmd
Christian Brabandt <cb@256bit.org>
parents: 12662
diff changeset
361 help
429bf1b9292f patch 8.0.1218: writing to freed memory in autocmd
Christian Brabandt <cb@256bit.org>
parents: 12662
diff changeset
362
429bf1b9292f patch 8.0.1218: writing to freed memory in autocmd
Christian Brabandt <cb@256bit.org>
parents: 12662
diff changeset
363 au! BufReadCmd
429bf1b9292f patch 8.0.1218: writing to freed memory in autocmd
Christian Brabandt <cb@256bit.org>
parents: 12662
diff changeset
364 endfunc
429bf1b9292f patch 8.0.1218: writing to freed memory in autocmd
Christian Brabandt <cb@256bit.org>
parents: 12662
diff changeset
365
429bf1b9292f patch 8.0.1218: writing to freed memory in autocmd
Christian Brabandt <cb@256bit.org>
parents: 12662
diff changeset
366 func Test_BufReadCmdHelpJump()
429bf1b9292f patch 8.0.1218: writing to freed memory in autocmd
Christian Brabandt <cb@256bit.org>
parents: 12662
diff changeset
367 " This used to cause access to free memory
429bf1b9292f patch 8.0.1218: writing to freed memory in autocmd
Christian Brabandt <cb@256bit.org>
parents: 12662
diff changeset
368 au BufReadCmd * e +h{
12692
03a6aeea2096 patch 8.0.1224: still interference between test functions
Christian Brabandt <cb@256bit.org>
parents: 12680
diff changeset
369 " } to fix highlighting
03a6aeea2096 patch 8.0.1224: still interference between test functions
Christian Brabandt <cb@256bit.org>
parents: 12680
diff changeset
370 call assert_fails('help', 'E434:')
12680
429bf1b9292f patch 8.0.1218: writing to freed memory in autocmd
Christian Brabandt <cb@256bit.org>
parents: 12662
diff changeset
371
429bf1b9292f patch 8.0.1218: writing to freed memory in autocmd
Christian Brabandt <cb@256bit.org>
parents: 12662
diff changeset
372 au! BufReadCmd
429bf1b9292f patch 8.0.1218: writing to freed memory in autocmd
Christian Brabandt <cb@256bit.org>
parents: 12662
diff changeset
373 endfunc
429bf1b9292f patch 8.0.1218: writing to freed memory in autocmd
Christian Brabandt <cb@256bit.org>
parents: 12662
diff changeset
374
10084
3e410e6e1986 commit https://github.com/vim/vim/commit/b62cc36a600e2e1e5a1d1d484fef89898c847c4c
Christian Brabandt <cb@256bit.org>
parents: 10058
diff changeset
375 func Test_augroup_deleted()
10086
1de911ef1edf commit https://github.com/vim/vim/commit/de653f08805dde14424d417502a0480a6ad292f8
Christian Brabandt <cb@256bit.org>
parents: 10084
diff changeset
376 " This caused a crash before E936 was introduced
10084
3e410e6e1986 commit https://github.com/vim/vim/commit/b62cc36a600e2e1e5a1d1d484fef89898c847c4c
Christian Brabandt <cb@256bit.org>
parents: 10058
diff changeset
377 augroup x
10086
1de911ef1edf commit https://github.com/vim/vim/commit/de653f08805dde14424d417502a0480a6ad292f8
Christian Brabandt <cb@256bit.org>
parents: 10084
diff changeset
378 call assert_fails('augroup! x', 'E936:')
1de911ef1edf commit https://github.com/vim/vim/commit/de653f08805dde14424d417502a0480a6ad292f8
Christian Brabandt <cb@256bit.org>
parents: 10084
diff changeset
379 au VimEnter * echo
1de911ef1edf commit https://github.com/vim/vim/commit/de653f08805dde14424d417502a0480a6ad292f8
Christian Brabandt <cb@256bit.org>
parents: 10084
diff changeset
380 augroup end
10084
3e410e6e1986 commit https://github.com/vim/vim/commit/b62cc36a600e2e1e5a1d1d484fef89898c847c4c
Christian Brabandt <cb@256bit.org>
parents: 10058
diff changeset
381 augroup! x
22999
ffb173dbf228 patch 8.2.2046: some test failures don't give a clear error
Bram Moolenaar <Bram@vim.org>
parents: 22742
diff changeset
382 call assert_match("-Deleted-.*VimEnter", execute('au VimEnter'))
10086
1de911ef1edf commit https://github.com/vim/vim/commit/de653f08805dde14424d417502a0480a6ad292f8
Christian Brabandt <cb@256bit.org>
parents: 10084
diff changeset
383 au! VimEnter
10084
3e410e6e1986 commit https://github.com/vim/vim/commit/b62cc36a600e2e1e5a1d1d484fef89898c847c4c
Christian Brabandt <cb@256bit.org>
parents: 10058
diff changeset
384 endfunc
3e410e6e1986 commit https://github.com/vim/vim/commit/b62cc36a600e2e1e5a1d1d484fef89898c847c4c
Christian Brabandt <cb@256bit.org>
parents: 10058
diff changeset
385
10106
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
386 " Tests for autocommands on :close command.
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
387 " This used to be in test13.
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
388 func Test_three_windows()
10242
a369d97995ff commit https://github.com/vim/vim/commit/b3435b0a3a0967115658d0a8c0224a28969cfa02
Christian Brabandt <cb@256bit.org>
parents: 10151
diff changeset
389 " Clean up buffers, because in some cases this function fails.
a369d97995ff commit https://github.com/vim/vim/commit/b3435b0a3a0967115658d0a8c0224a28969cfa02
Christian Brabandt <cb@256bit.org>
parents: 10151
diff changeset
390 call s:cleanup_buffers()
a369d97995ff commit https://github.com/vim/vim/commit/b3435b0a3a0967115658d0a8c0224a28969cfa02
Christian Brabandt <cb@256bit.org>
parents: 10151
diff changeset
391
10106
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
392 " Write three files and open them, each in a window.
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
393 " Then go to next window, with autocommand that deletes the previous one.
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
394 " Do this twice, writing the file.
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
395 e! Xtestje1
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
396 call setline(1, 'testje1')
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
397 w
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
398 sp Xtestje2
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
399 call setline(1, 'testje2')
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
400 w
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
401 sp Xtestje3
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
402 call setline(1, 'testje3')
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
403 w
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
404 wincmd w
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
405 au WinLeave Xtestje2 bwipe
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
406 wincmd w
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
407 call assert_equal('Xtestje1', expand('%'))
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
408
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
409 au WinLeave Xtestje1 bwipe Xtestje3
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
410 close
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
411 call assert_equal('Xtestje1', expand('%'))
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
412
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
413 " Test deleting the buffer on a Unload event. If this goes wrong there
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
414 " will be the ATTENTION prompt.
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
415 e Xtestje1
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
416 au!
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
417 au! BufUnload Xtestje1 bwipe
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
418 call assert_fails('e Xtestje3', 'E937:')
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
419 call assert_equal('Xtestje3', expand('%'))
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
420
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
421 e Xtestje2
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
422 sp Xtestje1
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
423 call assert_fails('e', 'E937:')
13720
7d2039b2ecc8 patch 8.0.1732: crash when terminal API call deletes the buffer
Christian Brabandt <cb@256bit.org>
parents: 13559
diff changeset
424 call assert_equal('Xtestje1', expand('%'))
10106
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
425
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
426 " Test changing buffers in a BufWipeout autocommand. If this goes wrong
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
427 " there are ml_line errors and/or a Crash.
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
428 au!
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
429 only
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
430 e Xanother
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
431 e Xtestje1
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
432 bwipe Xtestje2
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
433 bwipe Xtestje3
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
434 au BufWipeout Xtestje1 buf Xtestje1
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
435 bwipe
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
436 call assert_equal('Xanother', expand('%'))
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
437
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
438 only
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
439 help
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
440 wincmd w
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
441 1quit
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
442 call assert_equal('Xanother', expand('%'))
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
443
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
444 au!
11197
7f355d8cd634 patch 8.0.0485: not all windows commands are tested
Christian Brabandt <cb@256bit.org>
parents: 10575
diff changeset
445 enew
10106
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
446 call delete('Xtestje1')
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
447 call delete('Xtestje2')
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
448 call delete('Xtestje3')
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10086
diff changeset
449 endfunc
10575
01a5f64a7a20 patch 8.0.0177: BufEnter autocommand not fired for a directory
Christian Brabandt <cb@256bit.org>
parents: 10242
diff changeset
450
01a5f64a7a20 patch 8.0.0177: BufEnter autocommand not fired for a directory
Christian Brabandt <cb@256bit.org>
parents: 10242
diff changeset
451 func Test_BufEnter()
01a5f64a7a20 patch 8.0.0177: BufEnter autocommand not fired for a directory
Christian Brabandt <cb@256bit.org>
parents: 10242
diff changeset
452 au! BufEnter
01a5f64a7a20 patch 8.0.0177: BufEnter autocommand not fired for a directory
Christian Brabandt <cb@256bit.org>
parents: 10242
diff changeset
453 au Bufenter * let val = val . '+'
01a5f64a7a20 patch 8.0.0177: BufEnter autocommand not fired for a directory
Christian Brabandt <cb@256bit.org>
parents: 10242
diff changeset
454 let g:val = ''
01a5f64a7a20 patch 8.0.0177: BufEnter autocommand not fired for a directory
Christian Brabandt <cb@256bit.org>
parents: 10242
diff changeset
455 split NewFile
01a5f64a7a20 patch 8.0.0177: BufEnter autocommand not fired for a directory
Christian Brabandt <cb@256bit.org>
parents: 10242
diff changeset
456 call assert_equal('+', g:val)
01a5f64a7a20 patch 8.0.0177: BufEnter autocommand not fired for a directory
Christian Brabandt <cb@256bit.org>
parents: 10242
diff changeset
457 bwipe!
01a5f64a7a20 patch 8.0.0177: BufEnter autocommand not fired for a directory
Christian Brabandt <cb@256bit.org>
parents: 10242
diff changeset
458 call assert_equal('++', g:val)
01a5f64a7a20 patch 8.0.0177: BufEnter autocommand not fired for a directory
Christian Brabandt <cb@256bit.org>
parents: 10242
diff changeset
459
01a5f64a7a20 patch 8.0.0177: BufEnter autocommand not fired for a directory
Christian Brabandt <cb@256bit.org>
parents: 10242
diff changeset
460 " Also get BufEnter when editing a directory
01a5f64a7a20 patch 8.0.0177: BufEnter autocommand not fired for a directory
Christian Brabandt <cb@256bit.org>
parents: 10242
diff changeset
461 call mkdir('Xdir')
01a5f64a7a20 patch 8.0.0177: BufEnter autocommand not fired for a directory
Christian Brabandt <cb@256bit.org>
parents: 10242
diff changeset
462 split Xdir
01a5f64a7a20 patch 8.0.0177: BufEnter autocommand not fired for a directory
Christian Brabandt <cb@256bit.org>
parents: 10242
diff changeset
463 call assert_equal('+++', g:val)
11223
ac36e139510f patch 8.0.0498: two autocmd tests are skipped on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11201
diff changeset
464
ac36e139510f patch 8.0.0498: two autocmd tests are skipped on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11201
diff changeset
465 " On MS-Windows we can't edit the directory, make sure we wipe the right
ac36e139510f patch 8.0.0498: two autocmd tests are skipped on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11201
diff changeset
466 " buffer.
ac36e139510f patch 8.0.0498: two autocmd tests are skipped on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11201
diff changeset
467 bwipe! Xdir
10575
01a5f64a7a20 patch 8.0.0177: BufEnter autocommand not fired for a directory
Christian Brabandt <cb@256bit.org>
parents: 10242
diff changeset
468
01a5f64a7a20 patch 8.0.0177: BufEnter autocommand not fired for a directory
Christian Brabandt <cb@256bit.org>
parents: 10242
diff changeset
469 call delete('Xdir', 'd')
01a5f64a7a20 patch 8.0.0177: BufEnter autocommand not fired for a directory
Christian Brabandt <cb@256bit.org>
parents: 10242
diff changeset
470 au! BufEnter
01a5f64a7a20 patch 8.0.0177: BufEnter autocommand not fired for a directory
Christian Brabandt <cb@256bit.org>
parents: 10242
diff changeset
471 endfunc
11199
e08ead1d269f patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents: 11197
diff changeset
472
e08ead1d269f patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents: 11197
diff changeset
473 " Closing a window might cause an endless loop
e08ead1d269f patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents: 11197
diff changeset
474 " E814 for older Vims
11707
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
475 func Test_autocmd_bufwipe_in_SessLoadPost()
12620
27a2fc398671 patch 8.0.1188: autocmd test fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 12616
diff changeset
476 edit Xtest
11199
e08ead1d269f patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents: 11197
diff changeset
477 tabnew
12620
27a2fc398671 patch 8.0.1188: autocmd test fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 12616
diff changeset
478 file Xsomething
11199
e08ead1d269f patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents: 11197
diff changeset
479 set noswapfile
e08ead1d269f patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents: 11197
diff changeset
480 mksession!
e08ead1d269f patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents: 11197
diff changeset
481
16720
9c90cf08cfa8 patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents: 16646
diff changeset
482 let content =<< trim [CODE]
22576
170077e26bde patch 8.2.1836: autocmd test fails on pacifist systems
Bram Moolenaar <Bram@vim.org>
parents: 22375
diff changeset
483 call test_override('ui_delay', 10)
16720
9c90cf08cfa8 patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents: 16646
diff changeset
484 set nocp noswapfile
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
485 let v:swapchoice = "e"
16720
9c90cf08cfa8 patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents: 16646
diff changeset
486 augroup test_autocmd_sessionload
9c90cf08cfa8 patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents: 16646
diff changeset
487 autocmd!
9c90cf08cfa8 patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents: 16646
diff changeset
488 autocmd SessionLoadPost * exe bufnr("Xsomething") . "bw!"
9c90cf08cfa8 patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents: 16646
diff changeset
489 augroup END
9c90cf08cfa8 patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents: 16646
diff changeset
490
9c90cf08cfa8 patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents: 16646
diff changeset
491 func WriteErrors()
9c90cf08cfa8 patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents: 16646
diff changeset
492 call writefile([execute("messages")], "Xerrors")
9c90cf08cfa8 patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents: 16646
diff changeset
493 endfunc
9c90cf08cfa8 patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents: 16646
diff changeset
494 au VimLeave * call WriteErrors()
9c90cf08cfa8 patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents: 16646
diff changeset
495 [CODE]
9c90cf08cfa8 patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents: 16646
diff changeset
496
11199
e08ead1d269f patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents: 11197
diff changeset
497 call writefile(content, 'Xvimrc')
17698
131f1d8c5860 patch 8.1.1846: inconsistently using GetVimCommand() and v:progpath
Bram Moolenaar <Bram@vim.org>
parents: 17657
diff changeset
498 call system(GetVimCommand('Xvimrc') .. ' --not-a-term --noplugins -S Session.vim -c cq')
11223
ac36e139510f patch 8.0.0498: two autocmd tests are skipped on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11201
diff changeset
499 let errors = join(readfile('Xerrors'))
22087
ff21e2962490 patch 8.2.1593: tests do not check the error number properly
Bram Moolenaar <Bram@vim.org>
parents: 21895
diff changeset
500 call assert_match('E814:', errors)
11199
e08ead1d269f patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents: 11197
diff changeset
501
e08ead1d269f patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents: 11197
diff changeset
502 set swapfile
11223
ac36e139510f patch 8.0.0498: two autocmd tests are skipped on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11201
diff changeset
503 for file in ['Session.vim', 'Xvimrc', 'Xerrors']
11199
e08ead1d269f patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents: 11197
diff changeset
504 call delete(file)
e08ead1d269f patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents: 11197
diff changeset
505 endfor
e08ead1d269f patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents: 11197
diff changeset
506 endfunc
e08ead1d269f patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents: 11197
diff changeset
507
23624
f9d02c83f306 patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents: 23278
diff changeset
508 " Using :blast and :ball for many events caused a crash, because b_nwindows was
f9d02c83f306 patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents: 23278
diff changeset
509 " not incremented correctly.
f9d02c83f306 patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents: 23278
diff changeset
510 func Test_autocmd_blast_badd()
f9d02c83f306 patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents: 23278
diff changeset
511 let content =<< trim [CODE]
f9d02c83f306 patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents: 23278
diff changeset
512 au BufNew,BufAdd,BufWinEnter,BufEnter,BufLeave,BufWinLeave,BufUnload,VimEnter foo* blast
f9d02c83f306 patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents: 23278
diff changeset
513 edit foo1
f9d02c83f306 patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents: 23278
diff changeset
514 au BufNew,BufAdd,BufWinEnter,BufEnter,BufLeave,BufWinLeave,BufUnload,VimEnter foo* ball
f9d02c83f306 patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents: 23278
diff changeset
515 edit foo2
f9d02c83f306 patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents: 23278
diff changeset
516 call writefile(['OK'], 'Xerrors')
f9d02c83f306 patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents: 23278
diff changeset
517 qall
f9d02c83f306 patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents: 23278
diff changeset
518 [CODE]
f9d02c83f306 patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents: 23278
diff changeset
519
f9d02c83f306 patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents: 23278
diff changeset
520 call writefile(content, 'XblastBall')
f9d02c83f306 patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents: 23278
diff changeset
521 call system(GetVimCommand() .. ' --clean -S XblastBall')
f9d02c83f306 patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents: 23278
diff changeset
522 call assert_match('OK', readfile('Xerrors')->join())
f9d02c83f306 patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents: 23278
diff changeset
523
f9d02c83f306 patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents: 23278
diff changeset
524 call delete('XblastBall')
f9d02c83f306 patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents: 23278
diff changeset
525 call delete('Xerrors')
f9d02c83f306 patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents: 23278
diff changeset
526 endfunc
f9d02c83f306 patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents: 23278
diff changeset
527
11199
e08ead1d269f patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents: 11197
diff changeset
528 " SEGV occurs in older versions.
11707
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
529 func Test_autocmd_bufwipe_in_SessLoadPost2()
11199
e08ead1d269f patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents: 11197
diff changeset
530 tabnew
e08ead1d269f patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents: 11197
diff changeset
531 set noswapfile
e08ead1d269f patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents: 11197
diff changeset
532 mksession!
e08ead1d269f patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents: 11197
diff changeset
533
16720
9c90cf08cfa8 patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents: 16646
diff changeset
534 let content =<< trim [CODE]
9c90cf08cfa8 patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents: 16646
diff changeset
535 set nocp noswapfile
9c90cf08cfa8 patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents: 16646
diff changeset
536 function! DeleteInactiveBufs()
9c90cf08cfa8 patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents: 16646
diff changeset
537 tabfirst
9c90cf08cfa8 patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents: 16646
diff changeset
538 let tabblist = []
9c90cf08cfa8 patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents: 16646
diff changeset
539 for i in range(1, tabpagenr(''$''))
9c90cf08cfa8 patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents: 16646
diff changeset
540 call extend(tabblist, tabpagebuflist(i))
9c90cf08cfa8 patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents: 16646
diff changeset
541 endfor
9c90cf08cfa8 patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents: 16646
diff changeset
542 for b in range(1, bufnr(''$''))
9c90cf08cfa8 patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents: 16646
diff changeset
543 if bufexists(b) && buflisted(b) && (index(tabblist, b) == -1 || bufname(b) =~# ''^$'')
9c90cf08cfa8 patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents: 16646
diff changeset
544 exec ''bwipeout '' . b
9c90cf08cfa8 patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents: 16646
diff changeset
545 endif
9c90cf08cfa8 patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents: 16646
diff changeset
546 endfor
9c90cf08cfa8 patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents: 16646
diff changeset
547 echomsg "SessionLoadPost DONE"
9c90cf08cfa8 patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents: 16646
diff changeset
548 endfunction
9c90cf08cfa8 patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents: 16646
diff changeset
549 au SessionLoadPost * call DeleteInactiveBufs()
9c90cf08cfa8 patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents: 16646
diff changeset
550
9c90cf08cfa8 patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents: 16646
diff changeset
551 func WriteErrors()
9c90cf08cfa8 patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents: 16646
diff changeset
552 call writefile([execute("messages")], "Xerrors")
9c90cf08cfa8 patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents: 16646
diff changeset
553 endfunc
9c90cf08cfa8 patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents: 16646
diff changeset
554 au VimLeave * call WriteErrors()
9c90cf08cfa8 patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents: 16646
diff changeset
555 [CODE]
9c90cf08cfa8 patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents: 16646
diff changeset
556
11199
e08ead1d269f patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents: 11197
diff changeset
557 call writefile(content, 'Xvimrc')
17698
131f1d8c5860 patch 8.1.1846: inconsistently using GetVimCommand() and v:progpath
Bram Moolenaar <Bram@vim.org>
parents: 17657
diff changeset
558 call system(GetVimCommand('Xvimrc') .. ' --not-a-term --noplugins -S Session.vim -c cq')
11223
ac36e139510f patch 8.0.0498: two autocmd tests are skipped on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11201
diff changeset
559 let errors = join(readfile('Xerrors'))
ac36e139510f patch 8.0.0498: two autocmd tests are skipped on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11201
diff changeset
560 " This probably only ever matches on unix.
ac36e139510f patch 8.0.0498: two autocmd tests are skipped on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11201
diff changeset
561 call assert_notmatch('Caught deadly signal SEGV', errors)
ac36e139510f patch 8.0.0498: two autocmd tests are skipped on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11201
diff changeset
562 call assert_match('SessionLoadPost DONE', errors)
11199
e08ead1d269f patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents: 11197
diff changeset
563
e08ead1d269f patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents: 11197
diff changeset
564 set swapfile
11223
ac36e139510f patch 8.0.0498: two autocmd tests are skipped on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11201
diff changeset
565 for file in ['Session.vim', 'Xvimrc', 'Xerrors']
11199
e08ead1d269f patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents: 11197
diff changeset
566 call delete(file)
e08ead1d269f patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents: 11197
diff changeset
567 endfor
e08ead1d269f patch 8.0.0486: crash and endless loop when closing windows in autocmd
Christian Brabandt <cb@256bit.org>
parents: 11197
diff changeset
568 endfunc
11641
dbce7e03bf55 patch 8.0.0703: illegal memory access with empty :doau command
Christian Brabandt <cb@256bit.org>
parents: 11223
diff changeset
569
dbce7e03bf55 patch 8.0.0703: illegal memory access with empty :doau command
Christian Brabandt <cb@256bit.org>
parents: 11223
diff changeset
570 func Test_empty_doau()
dbce7e03bf55 patch 8.0.0703: illegal memory access with empty :doau command
Christian Brabandt <cb@256bit.org>
parents: 11223
diff changeset
571 doau \|
dbce7e03bf55 patch 8.0.0703: illegal memory access with empty :doau command
Christian Brabandt <cb@256bit.org>
parents: 11223
diff changeset
572 endfunc
11707
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
573
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
574 func s:AutoCommandOptionSet(match)
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
575 let template = "Option: <%s>, OldVal: <%s>, OldValLocal: <%s>, OldValGlobal: <%s>, NewVal: <%s>, Scope: <%s>, Command: <%s>\n"
11707
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
576 let item = remove(g:options, 0)
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
577 let expected = printf(template, item[0], item[1], item[2], item[3], item[4], item[5], item[6])
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
578 let actual = printf(template, a:match, v:option_old, v:option_oldlocal, v:option_oldglobal, v:option_new, v:option_type, v:option_command)
11707
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
579 let g:opt = [expected, actual]
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
580 "call assert_equal(expected, actual)
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
581 endfunc
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
582
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
583 func Test_OptionSet()
21765
08940efa6b4e patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents: 21638
diff changeset
584 CheckOption autochdir
11707
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
585
12616
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
586 badd test_autocmd.vim
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
587
11707
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
588 call test_override('starting', 1)
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
589 set nocp
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
590 au OptionSet * :call s:AutoCommandOptionSet(expand("<amatch>"))
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
591
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
592 " 1: Setting number option"
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
593 let g:options = [['number', 0, 0, 0, 1, 'global', 'set']]
11707
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
594 set nu
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
595 call assert_equal([], g:options)
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
596 call assert_equal(g:opt[0], g:opt[1])
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
597
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
598 " 2: Setting local number option"
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
599 let g:options = [['number', 1, 1, '', 0, 'local', 'setlocal']]
11707
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
600 setlocal nonu
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
601 call assert_equal([], g:options)
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
602 call assert_equal(g:opt[0], g:opt[1])
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
603
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
604 " 3: Setting global number option"
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
605 let g:options = [['number', 1, '', 1, 0, 'global', 'setglobal']]
11707
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
606 setglobal nonu
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
607 call assert_equal([], g:options)
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
608 call assert_equal(g:opt[0], g:opt[1])
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
609
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
610 " 4: Setting local autoindent option"
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
611 let g:options = [['autoindent', 0, 0, '', 1, 'local', 'setlocal']]
11707
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
612 setlocal ai
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
613 call assert_equal([], g:options)
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
614 call assert_equal(g:opt[0], g:opt[1])
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
615
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
616 " 5: Setting global autoindent option"
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
617 let g:options = [['autoindent', 0, '', 0, 1, 'global', 'setglobal']]
11707
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
618 setglobal ai
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
619 call assert_equal([], g:options)
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
620 call assert_equal(g:opt[0], g:opt[1])
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
621
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
622 " 6: Setting global autoindent option"
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
623 let g:options = [['autoindent', 1, 1, 1, 0, 'global', 'set']]
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
624 set ai!
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
625 call assert_equal([], g:options)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
626 call assert_equal(g:opt[0], g:opt[1])
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
627
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
628 " 6a: Setting global autoindent option"
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
629 let g:options = [['autoindent', 1, 1, 0, 0, 'global', 'set']]
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
630 noa setlocal ai
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
631 noa setglobal noai
11707
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
632 set ai!
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
633 call assert_equal([], g:options)
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
634 call assert_equal(g:opt[0], g:opt[1])
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
635
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
636 " Should not print anything, use :noa
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
637 " 7: don't trigger OptionSet"
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
638 let g:options = [['invalid', 'invalid', 'invalid', 'invalid', 'invalid', 'invalid', 'invalid']]
11707
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
639 noa set nonu
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
640 call assert_equal([['invalid', 'invalid', 'invalid', 'invalid', 'invalid', 'invalid', 'invalid']], g:options)
11707
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
641 call assert_equal(g:opt[0], g:opt[1])
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
642
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
643 " 8: Setting several global list and number option"
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
644 let g:options = [['list', 0, 0, 0, 1, 'global', 'set'], ['number', 0, 0, 0, 1, 'global', 'set']]
11707
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
645 set list nu
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
646 call assert_equal([], g:options)
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
647 call assert_equal(g:opt[0], g:opt[1])
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
648
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
649 " 9: don't trigger OptionSet"
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
650 let g:options = [['invalid', 'invalid', 'invalid', 'invalid', 'invalid', 'invalid', 'invalid'], ['invalid', 'invalid', 'invalid', 'invalid', 'invalid', 'invalid', 'invalid']]
11707
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
651 noa set nolist nonu
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
652 call assert_equal([['invalid', 'invalid', 'invalid', 'invalid', 'invalid', 'invalid', 'invalid'], ['invalid', 'invalid', 'invalid', 'invalid', 'invalid', 'invalid', 'invalid']], g:options)
11707
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
653 call assert_equal(g:opt[0], g:opt[1])
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
654
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
655 " 10: Setting global acd"
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
656 let g:options = [['autochdir', 0, 0, '', 1, 'local', 'setlocal']]
11707
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
657 setlocal acd
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
658 call assert_equal([], g:options)
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
659 call assert_equal(g:opt[0], g:opt[1])
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
660
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
661 " 11: Setting global autoread (also sets local value)"
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
662 let g:options = [['autoread', 0, 0, 0, 1, 'global', 'set']]
11707
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
663 set ar
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
664 call assert_equal([], g:options)
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
665 call assert_equal(g:opt[0], g:opt[1])
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
666
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
667 " 12: Setting local autoread"
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
668 let g:options = [['autoread', 1, 1, '', 1, 'local', 'setlocal']]
11707
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
669 setlocal ar
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
670 call assert_equal([], g:options)
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
671 call assert_equal(g:opt[0], g:opt[1])
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
672
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
673 " 13: Setting global autoread"
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
674 let g:options = [['autoread', 1, '', 1, 0, 'global', 'setglobal']]
11707
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
675 setglobal invar
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
676 call assert_equal([], g:options)
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
677 call assert_equal(g:opt[0], g:opt[1])
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
678
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
679 " 14: Setting option backspace through :let"
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
680 let g:options = [['backspace', '', '', '', 'eol,indent,start', 'global', 'set']]
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
681 let &bs = "eol,indent,start"
11707
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
682 call assert_equal([], g:options)
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
683 call assert_equal(g:opt[0], g:opt[1])
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
684
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
685 " 15: Setting option backspace through setbufvar()"
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
686 let g:options = [['backup', 0, 0, '', 1, 'local', 'setlocal']]
11707
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
687 " try twice, first time, shouldn't trigger because option name is invalid,
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
688 " second time, it should trigger
12616
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
689 let bnum = bufnr('%')
22087
ff21e2962490 patch 8.2.1593: tests do not check the error number properly
Bram Moolenaar <Bram@vim.org>
parents: 21895
diff changeset
690 call assert_fails("call setbufvar(bnum, '&l:bk', 1)", 'E355:')
11707
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
691 " should trigger, use correct option name
12616
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
692 call setbufvar(bnum, '&backup', 1)
11707
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
693 call assert_equal([], g:options)
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
694 call assert_equal(g:opt[0], g:opt[1])
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
695
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
696 " 16: Setting number option using setwinvar"
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
697 let g:options = [['number', 0, 0, '', 1, 'local', 'setlocal']]
11707
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
698 call setwinvar(0, '&number', 1)
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
699 call assert_equal([], g:options)
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
700 call assert_equal(g:opt[0], g:opt[1])
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
701
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
702 " 17: Setting key option, shouldn't trigger"
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
703 let g:options = [['key', 'invalid', 'invalid1', 'invalid2', 'invalid3', 'invalid4', 'invalid5']]
11707
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
704 setlocal key=blah
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
705 setlocal key=
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
706 call assert_equal([['key', 'invalid', 'invalid1', 'invalid2', 'invalid3', 'invalid4', 'invalid5']], g:options)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
707 call assert_equal(g:opt[0], g:opt[1])
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
708
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
709
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
710 " 18a: Setting string global option"
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
711 let oldval = &backupext
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
712 let g:options = [['backupext', oldval, oldval, oldval, 'foo', 'global', 'set']]
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
713 set backupext=foo
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
714 call assert_equal([], g:options)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
715 call assert_equal(g:opt[0], g:opt[1])
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
716
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
717 " 18b: Resetting string global option"
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
718 let g:options = [['backupext', 'foo', 'foo', 'foo', oldval, 'global', 'set']]
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
719 set backupext&
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
720 call assert_equal([], g:options)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
721 call assert_equal(g:opt[0], g:opt[1])
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
722
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
723 " 18c: Setting global string global option"
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
724 let g:options = [['backupext', oldval, '', oldval, 'bar', 'global', 'setglobal']]
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
725 setglobal backupext=bar
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
726 call assert_equal([], g:options)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
727 call assert_equal(g:opt[0], g:opt[1])
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
728
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
729 " 18d: Setting local string global option"
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
730 " As this is a global option this sets the global value even though
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
731 " :setlocal is used!
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
732 noa set backupext& " Reset global and local value (without triggering autocmd)
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
733 let g:options = [['backupext', oldval, oldval, '', 'baz', 'local', 'setlocal']]
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
734 setlocal backupext=baz
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
735 call assert_equal([], g:options)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
736 call assert_equal(g:opt[0], g:opt[1])
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
737
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
738 " 18e: Setting again string global option"
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
739 noa setglobal backupext=ext_global " Reset global and local value (without triggering autocmd)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
740 noa setlocal backupext=ext_local " Sets the global(!) value!
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
741 let g:options = [['backupext', 'ext_local', 'ext_local', 'ext_local', 'fuu', 'global', 'set']]
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
742 set backupext=fuu
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
743 call assert_equal([], g:options)
11707
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
744 call assert_equal(g:opt[0], g:opt[1])
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
745
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
746
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
747 " 19a: Setting string local-global (to buffer) option"
12188
d2e367d9de1f patch 8.0.0974: resetting a string option does not trigger OptionSet
Christian Brabandt <cb@256bit.org>
parents: 11961
diff changeset
748 let oldval = &tags
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
749 let g:options = [['tags', oldval, oldval, oldval, 'tagpath', 'global', 'set']]
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
750 set tags=tagpath
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
751 call assert_equal([], g:options)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
752 call assert_equal(g:opt[0], g:opt[1])
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
753
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
754 " 19b: Resetting string local-global (to buffer) option"
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
755 let g:options = [['tags', 'tagpath', 'tagpath', 'tagpath', oldval, 'global', 'set']]
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
756 set tags&
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
757 call assert_equal([], g:options)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
758 call assert_equal(g:opt[0], g:opt[1])
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
759
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
760 " 19c: Setting global string local-global (to buffer) option "
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
761 let g:options = [['tags', oldval, '', oldval, 'tagpath1', 'global', 'setglobal']]
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
762 setglobal tags=tagpath1
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
763 call assert_equal([], g:options)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
764 call assert_equal(g:opt[0], g:opt[1])
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
765
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
766 " 19d: Setting local string local-global (to buffer) option"
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
767 let g:options = [['tags', 'tagpath1', 'tagpath1', '', 'tagpath2', 'local', 'setlocal']]
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
768 setlocal tags=tagpath2
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
769 call assert_equal([], g:options)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
770 call assert_equal(g:opt[0], g:opt[1])
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
771
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
772 " 19e: Setting again string local-global (to buffer) option"
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
773 " Note: v:option_old is the old global value for local-global string options
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
774 " but the old local value for all other kinds of options.
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
775 noa setglobal tags=tag_global " Reset global and local value (without triggering autocmd)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
776 noa setlocal tags=tag_local
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
777 let g:options = [['tags', 'tag_global', 'tag_local', 'tag_global', 'tagpath', 'global', 'set']]
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
778 set tags=tagpath
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
779 call assert_equal([], g:options)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
780 call assert_equal(g:opt[0], g:opt[1])
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
781
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
782 " 19f: Setting string local-global (to buffer) option to an empty string"
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
783 " Note: v:option_old is the old global value for local-global string options
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
784 " but the old local value for all other kinds of options.
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
785 noa set tags=tag_global " Reset global and local value (without triggering autocmd)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
786 noa setlocal tags= " empty string
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
787 let g:options = [['tags', 'tag_global', '', 'tag_global', 'tagpath', 'global', 'set']]
12188
d2e367d9de1f patch 8.0.0974: resetting a string option does not trigger OptionSet
Christian Brabandt <cb@256bit.org>
parents: 11961
diff changeset
788 set tags=tagpath
d2e367d9de1f patch 8.0.0974: resetting a string option does not trigger OptionSet
Christian Brabandt <cb@256bit.org>
parents: 11961
diff changeset
789 call assert_equal([], g:options)
d2e367d9de1f patch 8.0.0974: resetting a string option does not trigger OptionSet
Christian Brabandt <cb@256bit.org>
parents: 11961
diff changeset
790 call assert_equal(g:opt[0], g:opt[1])
d2e367d9de1f patch 8.0.0974: resetting a string option does not trigger OptionSet
Christian Brabandt <cb@256bit.org>
parents: 11961
diff changeset
791
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
792
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
793 " 20a: Setting string local (to buffer) option"
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
794 let oldval = &spelllang
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
795 let g:options = [['spelllang', oldval, oldval, oldval, 'elvish,klingon', 'global', 'set']]
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
796 set spelllang=elvish,klingon
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
797 call assert_equal([], g:options)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
798 call assert_equal(g:opt[0], g:opt[1])
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
799
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
800 " 20b: Resetting string local (to buffer) option"
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
801 let g:options = [['spelllang', 'elvish,klingon', 'elvish,klingon', 'elvish,klingon', oldval, 'global', 'set']]
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
802 set spelllang&
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
803 call assert_equal([], g:options)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
804 call assert_equal(g:opt[0], g:opt[1])
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
805
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
806 " 20c: Setting global string local (to buffer) option"
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
807 let g:options = [['spelllang', oldval, '', oldval, 'elvish', 'global', 'setglobal']]
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
808 setglobal spelllang=elvish
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
809 call assert_equal([], g:options)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
810 call assert_equal(g:opt[0], g:opt[1])
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
811
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
812 " 20d: Setting local string local (to buffer) option"
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
813 noa set spelllang& " Reset global and local value (without triggering autocmd)
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
814 let g:options = [['spelllang', oldval, oldval, '', 'klingon', 'local', 'setlocal']]
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
815 setlocal spelllang=klingon
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
816 call assert_equal([], g:options)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
817 call assert_equal(g:opt[0], g:opt[1])
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
818
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
819 " 20e: Setting again string local (to buffer) option"
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
820 " Note: v:option_old is the old global value for local-global string options
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
821 " but the old local value for all other kinds of options.
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
822 noa setglobal spelllang=spellglobal " Reset global and local value (without triggering autocmd)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
823 noa setlocal spelllang=spelllocal
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
824 let g:options = [['spelllang', 'spelllocal', 'spelllocal', 'spellglobal', 'foo', 'global', 'set']]
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
825 set spelllang=foo
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
826 call assert_equal([], g:options)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
827 call assert_equal(g:opt[0], g:opt[1])
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
828
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
829
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
830 " 21a: Setting string local-global (to window) option"
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
831 let oldval = &statusline
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
832 let g:options = [['statusline', oldval, oldval, oldval, 'foo', 'global', 'set']]
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
833 set statusline=foo
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
834 call assert_equal([], g:options)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
835 call assert_equal(g:opt[0], g:opt[1])
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
836
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
837 " 21b: Resetting string local-global (to window) option"
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
838 " Note: v:option_old is the old global value for local-global string options
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
839 " but the old local value for all other kinds of options.
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
840 let g:options = [['statusline', 'foo', 'foo', 'foo', oldval, 'global', 'set']]
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
841 set statusline&
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
842 call assert_equal([], g:options)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
843 call assert_equal(g:opt[0], g:opt[1])
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
844
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
845 " 21c: Setting global string local-global (to window) option"
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
846 let g:options = [['statusline', oldval, '', oldval, 'bar', 'global', 'setglobal']]
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
847 setglobal statusline=bar
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
848 call assert_equal([], g:options)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
849 call assert_equal(g:opt[0], g:opt[1])
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
850
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
851 " 21d: Setting local string local-global (to window) option"
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
852 noa set statusline& " Reset global and local value (without triggering autocmd)
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
853 let g:options = [['statusline', oldval, oldval, '', 'baz', 'local', 'setlocal']]
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
854 setlocal statusline=baz
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
855 call assert_equal([], g:options)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
856 call assert_equal(g:opt[0], g:opt[1])
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
857
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
858 " 21e: Setting again string local-global (to window) option"
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
859 " Note: v:option_old is the old global value for local-global string options
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
860 " but the old local value for all other kinds of options.
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
861 noa setglobal statusline=bar " Reset global and local value (without triggering autocmd)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
862 noa setlocal statusline=baz
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
863 let g:options = [['statusline', 'bar', 'baz', 'bar', 'foo', 'global', 'set']]
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
864 set statusline=foo
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
865 call assert_equal([], g:options)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
866 call assert_equal(g:opt[0], g:opt[1])
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
867
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
868
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
869 " 22a: Setting string local (to window) option"
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
870 let oldval = &foldignore
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
871 let g:options = [['foldignore', oldval, oldval, oldval, 'fo', 'global', 'set']]
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
872 set foldignore=fo
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
873 call assert_equal([], g:options)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
874 call assert_equal(g:opt[0], g:opt[1])
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
875
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
876 " 22b: Resetting string local (to window) option"
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
877 let g:options = [['foldignore', 'fo', 'fo', 'fo', oldval, 'global', 'set']]
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
878 set foldignore&
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
879 call assert_equal([], g:options)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
880 call assert_equal(g:opt[0], g:opt[1])
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
881
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
882 " 22c: Setting global string local (to window) option"
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
883 let g:options = [['foldignore', oldval, '', oldval, 'bar', 'global', 'setglobal']]
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
884 setglobal foldignore=bar
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
885 call assert_equal([], g:options)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
886 call assert_equal(g:opt[0], g:opt[1])
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
887
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
888 " 22d: Setting local string local (to window) option"
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
889 noa set foldignore& " Reset global and local value (without triggering autocmd)
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
890 let g:options = [['foldignore', oldval, oldval, '', 'baz', 'local', 'setlocal']]
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
891 setlocal foldignore=baz
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
892 call assert_equal([], g:options)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
893 call assert_equal(g:opt[0], g:opt[1])
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
894
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
895 " 22e: Setting again string local (to window) option"
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
896 noa setglobal foldignore=glob " Reset global and local value (without triggering autocmd)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
897 noa setlocal foldignore=loc
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
898 let g:options = [['foldignore', 'loc', 'loc', 'glob', 'fo', 'global', 'set']]
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
899 set foldignore=fo
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
900 call assert_equal([], g:options)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
901 call assert_equal(g:opt[0], g:opt[1])
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
902
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
903
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
904 " 23a: Setting global number local option"
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
905 noa setglobal cmdheight=8 " Reset global and local value (without triggering autocmd)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
906 noa setlocal cmdheight=1 " Sets the global(!) value!
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
907 let g:options = [['cmdheight', '1', '', '1', '2', 'global', 'setglobal']]
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
908 setglobal cmdheight=2
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
909 call assert_equal([], g:options)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
910 call assert_equal(g:opt[0], g:opt[1])
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
911
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
912 " 23b: Setting local number global option"
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
913 noa setglobal cmdheight=8 " Reset global and local value (without triggering autocmd)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
914 noa setlocal cmdheight=1 " Sets the global(!) value!
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
915 let g:options = [['cmdheight', '1', '1', '', '2', 'local', 'setlocal']]
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
916 setlocal cmdheight=2
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
917 call assert_equal([], g:options)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
918 call assert_equal(g:opt[0], g:opt[1])
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
919
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
920 " 23c: Setting again number global option"
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
921 noa setglobal cmdheight=8 " Reset global and local value (without triggering autocmd)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
922 noa setlocal cmdheight=1 " Sets the global(!) value!
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
923 let g:options = [['cmdheight', '1', '1', '1', '2', 'global', 'set']]
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
924 set cmdheight=2
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
925 call assert_equal([], g:options)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
926 call assert_equal(g:opt[0], g:opt[1])
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
927
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
928 " 23d: Setting again number global option"
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
929 noa set cmdheight=8 " Reset global and local value (without triggering autocmd)
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
930 let g:options = [['cmdheight', '8', '8', '8', '2', 'global', 'set']]
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
931 set cmdheight=2
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
932 call assert_equal([], g:options)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
933 call assert_equal(g:opt[0], g:opt[1])
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
934
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
935
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
936 " 24a: Setting global number global-local (to buffer) option"
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
937 noa setglobal undolevels=8 " Reset global and local value (without triggering autocmd)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
938 noa setlocal undolevels=1
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
939 let g:options = [['undolevels', '8', '', '8', '2', 'global', 'setglobal']]
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
940 setglobal undolevels=2
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
941 call assert_equal([], g:options)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
942 call assert_equal(g:opt[0], g:opt[1])
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
943
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
944 " 24b: Setting local number global-local (to buffer) option"
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
945 noa setglobal undolevels=8 " Reset global and local value (without triggering autocmd)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
946 noa setlocal undolevels=1
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
947 let g:options = [['undolevels', '1', '1', '', '2', 'local', 'setlocal']]
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
948 setlocal undolevels=2
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
949 call assert_equal([], g:options)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
950 call assert_equal(g:opt[0], g:opt[1])
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
951
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
952 " 24c: Setting again number global-local (to buffer) option"
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
953 noa setglobal undolevels=8 " Reset global and local value (without triggering autocmd)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
954 noa setlocal undolevels=1
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
955 let g:options = [['undolevels', '1', '1', '8', '2', 'global', 'set']]
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
956 set undolevels=2
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
957 call assert_equal([], g:options)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
958 call assert_equal(g:opt[0], g:opt[1])
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
959
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
960 " 24d: Setting again global number global-local (to buffer) option"
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
961 noa set undolevels=8 " Reset global and local value (without triggering autocmd)
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
962 let g:options = [['undolevels', '8', '8', '8', '2', 'global', 'set']]
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
963 set undolevels=2
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
964 call assert_equal([], g:options)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
965 call assert_equal(g:opt[0], g:opt[1])
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
966
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
967
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
968 " 25a: Setting global number local (to buffer) option"
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
969 noa setglobal wrapmargin=8 " Reset global and local value (without triggering autocmd)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
970 noa setlocal wrapmargin=1
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
971 let g:options = [['wrapmargin', '8', '', '8', '2', 'global', 'setglobal']]
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
972 setglobal wrapmargin=2
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
973 call assert_equal([], g:options)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
974 call assert_equal(g:opt[0], g:opt[1])
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
975
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
976 " 25b: Setting local number local (to buffer) option"
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
977 noa setglobal wrapmargin=8 " Reset global and local value (without triggering autocmd)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
978 noa setlocal wrapmargin=1
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
979 let g:options = [['wrapmargin', '1', '1', '', '2', 'local', 'setlocal']]
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
980 setlocal wrapmargin=2
12188
d2e367d9de1f patch 8.0.0974: resetting a string option does not trigger OptionSet
Christian Brabandt <cb@256bit.org>
parents: 11961
diff changeset
981 call assert_equal([], g:options)
d2e367d9de1f patch 8.0.0974: resetting a string option does not trigger OptionSet
Christian Brabandt <cb@256bit.org>
parents: 11961
diff changeset
982 call assert_equal(g:opt[0], g:opt[1])
d2e367d9de1f patch 8.0.0974: resetting a string option does not trigger OptionSet
Christian Brabandt <cb@256bit.org>
parents: 11961
diff changeset
983
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
984 " 25c: Setting again number local (to buffer) option"
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
985 noa setglobal wrapmargin=8 " Reset global and local value (without triggering autocmd)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
986 noa setlocal wrapmargin=1
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
987 let g:options = [['wrapmargin', '1', '1', '8', '2', 'global', 'set']]
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
988 set wrapmargin=2
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
989 call assert_equal([], g:options)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
990 call assert_equal(g:opt[0], g:opt[1])
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
991
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
992 " 25d: Setting again global number local (to buffer) option"
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
993 noa set wrapmargin=8 " Reset global and local value (without triggering autocmd)
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
994 let g:options = [['wrapmargin', '8', '8', '8', '2', 'global', 'set']]
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
995 set wrapmargin=2
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
996 call assert_equal([], g:options)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
997 call assert_equal(g:opt[0], g:opt[1])
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
998
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
999
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1000 " 26: Setting number global-local (to window) option.
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1001 " Such option does currently not exist.
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1002
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1003
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1004 " 27a: Setting global number local (to window) option"
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1005 noa setglobal foldcolumn=8 " Reset global and local value (without triggering autocmd)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1006 noa setlocal foldcolumn=1
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
1007 let g:options = [['foldcolumn', '8', '', '8', '2', 'global', 'setglobal']]
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1008 setglobal foldcolumn=2
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1009 call assert_equal([], g:options)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1010 call assert_equal(g:opt[0], g:opt[1])
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1011
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1012 " 27b: Setting local number local (to window) option"
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1013 noa setglobal foldcolumn=8 " Reset global and local value (without triggering autocmd)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1014 noa setlocal foldcolumn=1
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
1015 let g:options = [['foldcolumn', '1', '1', '', '2', 'local', 'setlocal']]
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1016 setlocal foldcolumn=2
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1017 call assert_equal([], g:options)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1018 call assert_equal(g:opt[0], g:opt[1])
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1019
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1020 " 27c: Setting again number local (to window) option"
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1021 noa setglobal foldcolumn=8 " Reset global and local value (without triggering autocmd)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1022 noa setlocal foldcolumn=1
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
1023 let g:options = [['foldcolumn', '1', '1', '8', '2', 'global', 'set']]
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1024 set foldcolumn=2
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1025 call assert_equal([], g:options)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1026 call assert_equal(g:opt[0], g:opt[1])
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1027
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1028 " 27d: Ssettin again global number local (to window) option"
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1029 noa set foldcolumn=8 " Reset global and local value (without triggering autocmd)
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
1030 let g:options = [['foldcolumn', '8', '8', '8', '2', 'global', 'set']]
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1031 set foldcolumn=2
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1032 call assert_equal([], g:options)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1033 call assert_equal(g:opt[0], g:opt[1])
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1034
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1035
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1036 " 28a: Setting global boolean global option"
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1037 noa setglobal nowrapscan " Reset global and local value (without triggering autocmd)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1038 noa setlocal wrapscan " Sets the global(!) value!
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
1039 let g:options = [['wrapscan', '1', '', '1', '0', 'global', 'setglobal']]
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1040 setglobal nowrapscan
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1041 call assert_equal([], g:options)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1042 call assert_equal(g:opt[0], g:opt[1])
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1043
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1044 " 28b: Setting local boolean global option"
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1045 noa setglobal nowrapscan " Reset global and local value (without triggering autocmd)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1046 noa setlocal wrapscan " Sets the global(!) value!
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
1047 let g:options = [['wrapscan', '1', '1', '', '0', 'local', 'setlocal']]
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1048 setlocal nowrapscan
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1049 call assert_equal([], g:options)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1050 call assert_equal(g:opt[0], g:opt[1])
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1051
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1052 " 28c: Setting again boolean global option"
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1053 noa setglobal nowrapscan " Reset global and local value (without triggering autocmd)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1054 noa setlocal wrapscan " Sets the global(!) value!
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
1055 let g:options = [['wrapscan', '1', '1', '1', '0', 'global', 'set']]
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1056 set nowrapscan
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1057 call assert_equal([], g:options)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1058 call assert_equal(g:opt[0], g:opt[1])
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1059
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1060 " 28d: Setting again global boolean global option"
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1061 noa set nowrapscan " Reset global and local value (without triggering autocmd)
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
1062 let g:options = [['wrapscan', '0', '0', '0', '1', 'global', 'set']]
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1063 set wrapscan
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1064 call assert_equal([], g:options)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1065 call assert_equal(g:opt[0], g:opt[1])
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1066
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1067
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1068 " 29a: Setting global boolean global-local (to buffer) option"
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1069 noa setglobal noautoread " Reset global and local value (without triggering autocmd)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1070 noa setlocal autoread
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
1071 let g:options = [['autoread', '0', '', '0', '1', 'global', 'setglobal']]
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1072 setglobal autoread
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1073 call assert_equal([], g:options)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1074 call assert_equal(g:opt[0], g:opt[1])
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1075
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1076 " 29b: Setting local boolean global-local (to buffer) option"
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1077 noa setglobal noautoread " Reset global and local value (without triggering autocmd)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1078 noa setlocal autoread
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
1079 let g:options = [['autoread', '1', '1', '', '0', 'local', 'setlocal']]
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1080 setlocal noautoread
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1081 call assert_equal([], g:options)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1082 call assert_equal(g:opt[0], g:opt[1])
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1083
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1084 " 29c: Setting again boolean global-local (to buffer) option"
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1085 noa setglobal noautoread " Reset global and local value (without triggering autocmd)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1086 noa setlocal autoread
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
1087 let g:options = [['autoread', '1', '1', '0', '1', 'global', 'set']]
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1088 set autoread
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1089 call assert_equal([], g:options)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1090 call assert_equal(g:opt[0], g:opt[1])
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1091
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1092 " 29d: Setting again global boolean global-local (to buffer) option"
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1093 noa set noautoread " Reset global and local value (without triggering autocmd)
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
1094 let g:options = [['autoread', '0', '0', '0', '1', 'global', 'set']]
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1095 set autoread
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1096 call assert_equal([], g:options)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1097 call assert_equal(g:opt[0], g:opt[1])
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1098
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1099
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1100 " 30a: Setting global boolean local (to buffer) option"
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1101 noa setglobal nocindent " Reset global and local value (without triggering autocmd)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1102 noa setlocal cindent
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
1103 let g:options = [['cindent', '0', '', '0', '1', 'global', 'setglobal']]
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1104 setglobal cindent
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1105 call assert_equal([], g:options)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1106 call assert_equal(g:opt[0], g:opt[1])
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1107
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1108 " 30b: Setting local boolean local (to buffer) option"
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1109 noa setglobal nocindent " Reset global and local value (without triggering autocmd)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1110 noa setlocal cindent
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
1111 let g:options = [['cindent', '1', '1', '', '0', 'local', 'setlocal']]
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1112 setlocal nocindent
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1113 call assert_equal([], g:options)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1114 call assert_equal(g:opt[0], g:opt[1])
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1115
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1116 " 30c: Setting again boolean local (to buffer) option"
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1117 noa setglobal nocindent " Reset global and local value (without triggering autocmd)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1118 noa setlocal cindent
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
1119 let g:options = [['cindent', '1', '1', '0', '1', 'global', 'set']]
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1120 set cindent
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1121 call assert_equal([], g:options)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1122 call assert_equal(g:opt[0], g:opt[1])
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1123
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1124 " 30d: Setting again global boolean local (to buffer) option"
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1125 noa set nocindent " Reset global and local value (without triggering autocmd)
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
1126 let g:options = [['cindent', '0', '0', '0', '1', 'global', 'set']]
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1127 set cindent
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1128 call assert_equal([], g:options)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1129 call assert_equal(g:opt[0], g:opt[1])
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1130
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1131
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1132 " 31: Setting boolean global-local (to window) option
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1133 " Currently no such option exists.
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1134
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1135
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1136 " 32a: Setting global boolean local (to window) option"
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1137 noa setglobal nocursorcolumn " Reset global and local value (without triggering autocmd)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1138 noa setlocal cursorcolumn
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
1139 let g:options = [['cursorcolumn', '0', '', '0', '1', 'global', 'setglobal']]
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1140 setglobal cursorcolumn
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1141 call assert_equal([], g:options)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1142 call assert_equal(g:opt[0], g:opt[1])
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1143
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1144 " 32b: Setting local boolean local (to window) option"
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1145 noa setglobal nocursorcolumn " Reset global and local value (without triggering autocmd)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1146 noa setlocal cursorcolumn
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
1147 let g:options = [['cursorcolumn', '1', '1', '', '0', 'local', 'setlocal']]
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1148 setlocal nocursorcolumn
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1149 call assert_equal([], g:options)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1150 call assert_equal(g:opt[0], g:opt[1])
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1151
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1152 " 32c: Setting again boolean local (to window) option"
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1153 noa setglobal nocursorcolumn " Reset global and local value (without triggering autocmd)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1154 noa setlocal cursorcolumn
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
1155 let g:options = [['cursorcolumn', '1', '1', '0', '1', 'global', 'set']]
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1156 set cursorcolumn
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1157 call assert_equal([], g:options)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1158 call assert_equal(g:opt[0], g:opt[1])
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1159
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1160 " 32d: Setting again global boolean local (to window) option"
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1161 noa set nocursorcolumn " Reset global and local value (without triggering autocmd)
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
1162 let g:options = [['cursorcolumn', '0', '0', '0', '1', 'global', 'set']]
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1163 set cursorcolumn
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1164 call assert_equal([], g:options)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1165 call assert_equal(g:opt[0], g:opt[1])
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1166
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1167
17918
9606c0adc148 patch 8.1.1955: tests contain typos
Bram Moolenaar <Bram@vim.org>
parents: 17698
diff changeset
1168 " 33: Test autocommands when an option value is converted internally.
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1169 noa set backspace=1 " Reset global and local value (without triggering autocmd)
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
1170 let g:options = [['backspace', 'indent,eol', 'indent,eol', 'indent,eol', '2', 'global', 'set']]
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1171 set backspace=2
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1172 call assert_equal([], g:options)
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1173 call assert_equal(g:opt[0], g:opt[1])
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1174
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1175
11707
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
1176 " Cleanup
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
1177 au! OptionSet
17093
5cda6165a5c1 patch 8.1.1546: in some tests 'tags' is set but not restored
Bram Moolenaar <Bram@vim.org>
parents: 17085
diff changeset
1178 " set tags&
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 16720
diff changeset
1179 for opt in ['nu', 'ai', 'acd', 'ar', 'bs', 'backup', 'cul', 'cp', 'backupext', 'tags', 'spelllang', 'statusline', 'foldignore', 'cmdheight', 'undolevels', 'wrapmargin', 'foldcolumn', 'wrapscan', 'autoread', 'cindent', 'cursorcolumn']
14463
3b87daa5c37a patch 8.1.0245: calling setline() in TextChangedI autocmd breaks undo
Christian Brabandt <cb@256bit.org>
parents: 13798
diff changeset
1180 exe printf(":set %s&vim", opt)
11707
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
1181 endfor
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
1182 call test_override('starting', 0)
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
1183 delfunc! AutoCommandOptionSet
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
1184 endfunc
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
1185
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
1186 func Test_OptionSet_diffmode()
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
1187 call test_override('starting', 1)
15659
8513d9864f7e patch 8.1.0837: timer interrupting cursorhold and mapping not tested
Bram Moolenaar <Bram@vim.org>
parents: 15615
diff changeset
1188 " 18: Changing an option when entering diff mode
11707
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
1189 new
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
1190 au OptionSet diff :let &l:cul = v:option_new
11707
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
1191
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
1192 call setline(1, ['buffer 1', 'line2', 'line3', 'line4'])
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
1193 call assert_equal(0, &l:cul)
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
1194 diffthis
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
1195 call assert_equal(1, &l:cul)
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
1196
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
1197 vnew
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
1198 call setline(1, ['buffer 2', 'line 2', 'line 3', 'line4'])
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
1199 call assert_equal(0, &l:cul)
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
1200 diffthis
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
1201 call assert_equal(1, &l:cul)
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
1202
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
1203 diffoff
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
1204 call assert_equal(0, &l:cul)
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
1205 call assert_equal(1, getwinvar(2, '&l:cul'))
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
1206 bw!
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
1207
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
1208 call assert_equal(1, &l:cul)
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
1209 diffoff!
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
1210 call assert_equal(0, &l:cul)
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
1211 call assert_equal(0, getwinvar(1, '&l:cul'))
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
1212 bw!
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
1213
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
1214 " Cleanup
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
1215 au! OptionSet
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
1216 call test_override('starting', 0)
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
1217 endfunc
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
1218
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
1219 func Test_OptionSet_diffmode_close()
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
1220 call test_override('starting', 1)
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
1221 " 19: Try to close the current window when entering diff mode
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
1222 " should not segfault
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
1223 new
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
1224 au OptionSet diff close
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
1225
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
1226 call setline(1, ['buffer 1', 'line2', 'line3', 'line4'])
22087
ff21e2962490 patch 8.2.1593: tests do not check the error number properly
Bram Moolenaar <Bram@vim.org>
parents: 21895
diff changeset
1227 call assert_fails(':diffthis', 'E788:')
11707
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
1228 call assert_equal(1, &diff)
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
1229 vnew
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
1230 call setline(1, ['buffer 2', 'line 2', 'line 3', 'line4'])
22087
ff21e2962490 patch 8.2.1593: tests do not check the error number properly
Bram Moolenaar <Bram@vim.org>
parents: 21895
diff changeset
1231 call assert_fails(':diffthis', 'E788:')
11707
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
1232 call assert_equal(1, &diff)
18592
75c466dcf61c patch 8.1.2290: autocommand test fails
Bram Moolenaar <Bram@vim.org>
parents: 18568
diff changeset
1233 set diffopt-=closeoff
11707
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
1234 bw!
22087
ff21e2962490 patch 8.2.1593: tests do not check the error number properly
Bram Moolenaar <Bram@vim.org>
parents: 21895
diff changeset
1235 call assert_fails(':diffoff!', 'E788:')
11707
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
1236 bw!
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
1237
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
1238 " Cleanup
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
1239 au! OptionSet
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
1240 call test_override('starting', 0)
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
1241 "delfunc! AutoCommandOptionSet
1395a3b6978d patch 8.0.0736: OptionSet not triggered when entering diff mode
Christian Brabandt <cb@256bit.org>
parents: 11641
diff changeset
1242 endfunc
11961
0240e7e3d736 patch 8.0.0861: still many old style tests
Christian Brabandt <cb@256bit.org>
parents: 11707
diff changeset
1243
0240e7e3d736 patch 8.0.0861: still many old style tests
Christian Brabandt <cb@256bit.org>
parents: 11707
diff changeset
1244 " Test for Bufleave autocommand that deletes the buffer we are about to edit.
0240e7e3d736 patch 8.0.0861: still many old style tests
Christian Brabandt <cb@256bit.org>
parents: 11707
diff changeset
1245 func Test_BufleaveWithDelete()
0240e7e3d736 patch 8.0.0861: still many old style tests
Christian Brabandt <cb@256bit.org>
parents: 11707
diff changeset
1246 new | edit Xfile1
0240e7e3d736 patch 8.0.0861: still many old style tests
Christian Brabandt <cb@256bit.org>
parents: 11707
diff changeset
1247
0240e7e3d736 patch 8.0.0861: still many old style tests
Christian Brabandt <cb@256bit.org>
parents: 11707
diff changeset
1248 augroup test_bufleavewithdelete
0240e7e3d736 patch 8.0.0861: still many old style tests
Christian Brabandt <cb@256bit.org>
parents: 11707
diff changeset
1249 autocmd!
0240e7e3d736 patch 8.0.0861: still many old style tests
Christian Brabandt <cb@256bit.org>
parents: 11707
diff changeset
1250 autocmd BufLeave Xfile1 bwipe Xfile2
0240e7e3d736 patch 8.0.0861: still many old style tests
Christian Brabandt <cb@256bit.org>
parents: 11707
diff changeset
1251 augroup END
0240e7e3d736 patch 8.0.0861: still many old style tests
Christian Brabandt <cb@256bit.org>
parents: 11707
diff changeset
1252
0240e7e3d736 patch 8.0.0861: still many old style tests
Christian Brabandt <cb@256bit.org>
parents: 11707
diff changeset
1253 call assert_fails('edit Xfile2', 'E143:')
0240e7e3d736 patch 8.0.0861: still many old style tests
Christian Brabandt <cb@256bit.org>
parents: 11707
diff changeset
1254 call assert_equal('Xfile1', bufname('%'))
0240e7e3d736 patch 8.0.0861: still many old style tests
Christian Brabandt <cb@256bit.org>
parents: 11707
diff changeset
1255
0240e7e3d736 patch 8.0.0861: still many old style tests
Christian Brabandt <cb@256bit.org>
parents: 11707
diff changeset
1256 autocmd! test_bufleavewithdelete BufLeave Xfile1
0240e7e3d736 patch 8.0.0861: still many old style tests
Christian Brabandt <cb@256bit.org>
parents: 11707
diff changeset
1257 augroup! test_bufleavewithdelete
0240e7e3d736 patch 8.0.0861: still many old style tests
Christian Brabandt <cb@256bit.org>
parents: 11707
diff changeset
1258
0240e7e3d736 patch 8.0.0861: still many old style tests
Christian Brabandt <cb@256bit.org>
parents: 11707
diff changeset
1259 new
0240e7e3d736 patch 8.0.0861: still many old style tests
Christian Brabandt <cb@256bit.org>
parents: 11707
diff changeset
1260 bwipe! Xfile1
0240e7e3d736 patch 8.0.0861: still many old style tests
Christian Brabandt <cb@256bit.org>
parents: 11707
diff changeset
1261 endfunc
12616
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1262
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1263 " Test for autocommand that changes the buffer list, when doing ":ball".
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1264 func Test_Acmd_BufAll()
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1265 enew!
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1266 %bwipe!
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1267 call writefile(['Test file Xxx1'], 'Xxx1')
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1268 call writefile(['Test file Xxx2'], 'Xxx2')
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1269 call writefile(['Test file Xxx3'], 'Xxx3')
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1270
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1271 " Add three files to the buffer list
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1272 split Xxx1
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1273 close
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1274 split Xxx2
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1275 close
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1276 split Xxx3
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1277 close
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1278
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1279 " Wipe the buffer when the buffer is opened
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1280 au BufReadPost Xxx2 bwipe
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1281
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1282 call append(0, 'Test file Xxx4')
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1283 ball
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1284
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1285 call assert_equal(2, winnr('$'))
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1286 call assert_equal('Xxx1', bufname(winbufnr(winnr('$'))))
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1287 wincmd t
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1288
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1289 au! BufReadPost
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1290 %bwipe!
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1291 call delete('Xxx1')
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1292 call delete('Xxx2')
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1293 call delete('Xxx3')
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1294 enew! | only
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1295 endfunc
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1296
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1297 " Test for autocommand that changes current buffer on BufEnter event.
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1298 " Check if modelines are interpreted for the correct buffer.
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1299 func Test_Acmd_BufEnter()
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1300 %bwipe!
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1301 call writefile(['start of test file Xxx1',
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1302 \ "\<Tab>this is a test",
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1303 \ 'end of test file Xxx1'], 'Xxx1')
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1304 call writefile(['start of test file Xxx2',
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1305 \ 'vim: set noai :',
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1306 \ "\<Tab>this is a test",
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1307 \ 'end of test file Xxx2'], 'Xxx2')
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1308
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1309 au BufEnter Xxx2 brew
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1310 set ai modeline modelines=3
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1311 edit Xxx1
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1312 " edit Xxx2, autocmd will do :brew
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1313 edit Xxx2
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1314 exe "normal G?this is a\<CR>"
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1315 " Append text with autoindent to this file
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1316 normal othis should be auto-indented
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1317 call assert_equal("\<Tab>this should be auto-indented", getline('.'))
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1318 call assert_equal(3, line('.'))
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1319 " Remove autocmd and edit Xxx2 again
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1320 au! BufEnter Xxx2
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1321 buf! Xxx2
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1322 exe "normal G?this is a\<CR>"
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1323 " append text without autoindent to Xxx
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1324 normal othis should be in column 1
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1325 call assert_equal("this should be in column 1", getline('.'))
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1326 call assert_equal(4, line('.'))
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1327
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1328 %bwipe!
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1329 call delete('Xxx1')
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1330 call delete('Xxx2')
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1331 set ai&vim modeline&vim modelines&vim
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1332 endfunc
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1333
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1334 " Test for issue #57
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1335 " do not move cursor on <c-o> when autoindent is set
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1336 func Test_ai_CTRL_O()
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1337 enew!
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1338 set ai
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1339 let save_fo = &fo
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1340 set fo+=r
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1341 exe "normal o# abcdef\<Esc>2hi\<CR>\<C-O>d0\<Esc>"
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1342 exe "normal o# abcdef\<Esc>2hi\<C-O>d0\<Esc>"
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1343 call assert_equal(['# abc', 'def', 'def'], getline(2, 4))
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1344
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1345 set ai&vim
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1346 let &fo = save_fo
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1347 enew!
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1348 endfunc
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1349
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1350 " Test for autocommand that deletes the current buffer on BufLeave event.
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1351 " Also test deleting the last buffer, should give a new, empty buffer.
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1352 func Test_BufLeave_Wipe()
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1353 %bwipe!
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1354 let content = ['start of test file Xxx',
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1355 \ 'this is a test',
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1356 \ 'end of test file Xxx']
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1357 call writefile(content, 'Xxx1')
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1358 call writefile(content, 'Xxx2')
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1359
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1360 au BufLeave Xxx2 bwipe
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1361 edit Xxx1
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1362 split Xxx2
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1363 " delete buffer Xxx2, we should be back to Xxx1
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1364 bwipe
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1365 call assert_equal('Xxx1', bufname('%'))
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1366 call assert_equal(1, winnr('$'))
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1367
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1368 " Create an alternate buffer
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1369 %write! test.out
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1370 call assert_equal('test.out', bufname('#'))
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1371 " delete alternate buffer
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1372 bwipe test.out
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1373 call assert_equal('Xxx1', bufname('%'))
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1374 call assert_equal('', bufname('#'))
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1375
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1376 au BufLeave Xxx1 bwipe
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1377 " delete current buffer, get an empty one
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1378 bwipe!
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1379 call assert_equal(1, line('$'))
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1380 call assert_equal('', bufname('%'))
12630
560adb3eed8b patch 8.0.1193: crash when wiping out a buffer after using getbufinfo()
Christian Brabandt <cb@256bit.org>
parents: 12620
diff changeset
1381 let g:bufinfo = getbufinfo()
560adb3eed8b patch 8.0.1193: crash when wiping out a buffer after using getbufinfo()
Christian Brabandt <cb@256bit.org>
parents: 12620
diff changeset
1382 call assert_equal(1, len(g:bufinfo))
12616
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1383
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1384 call delete('Xxx1')
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1385 call delete('Xxx2')
12662
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1386 call delete('test.out')
12616
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1387 %bwipe
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1388 au! BufLeave
12630
560adb3eed8b patch 8.0.1193: crash when wiping out a buffer after using getbufinfo()
Christian Brabandt <cb@256bit.org>
parents: 12620
diff changeset
1389
560adb3eed8b patch 8.0.1193: crash when wiping out a buffer after using getbufinfo()
Christian Brabandt <cb@256bit.org>
parents: 12620
diff changeset
1390 " check that bufinfo doesn't contain a pointer to freed memory
560adb3eed8b patch 8.0.1193: crash when wiping out a buffer after using getbufinfo()
Christian Brabandt <cb@256bit.org>
parents: 12620
diff changeset
1391 call test_garbagecollect_now()
12616
4767939d10cc patch 8.0.1186: still quite a few old style tests
Christian Brabandt <cb@256bit.org>
parents: 12188
diff changeset
1392 endfunc
12652
272ecbaf1b4f patch 8.0.1204: a QuitPre autocommand may get the wrong file name
Christian Brabandt <cb@256bit.org>
parents: 12644
diff changeset
1393
272ecbaf1b4f patch 8.0.1204: a QuitPre autocommand may get the wrong file name
Christian Brabandt <cb@256bit.org>
parents: 12644
diff changeset
1394 func Test_QuitPre()
272ecbaf1b4f patch 8.0.1204: a QuitPre autocommand may get the wrong file name
Christian Brabandt <cb@256bit.org>
parents: 12644
diff changeset
1395 edit Xfoo
272ecbaf1b4f patch 8.0.1204: a QuitPre autocommand may get the wrong file name
Christian Brabandt <cb@256bit.org>
parents: 12644
diff changeset
1396 let winid = win_getid(winnr())
272ecbaf1b4f patch 8.0.1204: a QuitPre autocommand may get the wrong file name
Christian Brabandt <cb@256bit.org>
parents: 12644
diff changeset
1397 split Xbar
272ecbaf1b4f patch 8.0.1204: a QuitPre autocommand may get the wrong file name
Christian Brabandt <cb@256bit.org>
parents: 12644
diff changeset
1398 au! QuitPre * let g:afile = expand('<afile>')
272ecbaf1b4f patch 8.0.1204: a QuitPre autocommand may get the wrong file name
Christian Brabandt <cb@256bit.org>
parents: 12644
diff changeset
1399 " Close the other window, <afile> should be correct.
272ecbaf1b4f patch 8.0.1204: a QuitPre autocommand may get the wrong file name
Christian Brabandt <cb@256bit.org>
parents: 12644
diff changeset
1400 exe win_id2win(winid) . 'q'
272ecbaf1b4f patch 8.0.1204: a QuitPre autocommand may get the wrong file name
Christian Brabandt <cb@256bit.org>
parents: 12644
diff changeset
1401 call assert_equal('Xfoo', g:afile)
272ecbaf1b4f patch 8.0.1204: a QuitPre autocommand may get the wrong file name
Christian Brabandt <cb@256bit.org>
parents: 12644
diff changeset
1402
272ecbaf1b4f patch 8.0.1204: a QuitPre autocommand may get the wrong file name
Christian Brabandt <cb@256bit.org>
parents: 12644
diff changeset
1403 unlet g:afile
272ecbaf1b4f patch 8.0.1204: a QuitPre autocommand may get the wrong file name
Christian Brabandt <cb@256bit.org>
parents: 12644
diff changeset
1404 bwipe Xfoo
272ecbaf1b4f patch 8.0.1204: a QuitPre autocommand may get the wrong file name
Christian Brabandt <cb@256bit.org>
parents: 12644
diff changeset
1405 bwipe Xbar
272ecbaf1b4f patch 8.0.1204: a QuitPre autocommand may get the wrong file name
Christian Brabandt <cb@256bit.org>
parents: 12644
diff changeset
1406 endfunc
12656
0a9dacb8826a patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents: 12652
diff changeset
1407
0a9dacb8826a patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents: 12652
diff changeset
1408 func Test_Cmdline()
13142
59a16624400a patch 8.0.1445: cannot act on edits in the command line
Christian Brabandt <cb@256bit.org>
parents: 13090
diff changeset
1409 au! CmdlineChanged : let g:text = getcmdline()
59a16624400a patch 8.0.1445: cannot act on edits in the command line
Christian Brabandt <cb@256bit.org>
parents: 13090
diff changeset
1410 let g:text = 0
59a16624400a patch 8.0.1445: cannot act on edits in the command line
Christian Brabandt <cb@256bit.org>
parents: 13090
diff changeset
1411 call feedkeys(":echom 'hello'\<CR>", 'xt')
59a16624400a patch 8.0.1445: cannot act on edits in the command line
Christian Brabandt <cb@256bit.org>
parents: 13090
diff changeset
1412 call assert_equal("echom 'hello'", g:text)
59a16624400a patch 8.0.1445: cannot act on edits in the command line
Christian Brabandt <cb@256bit.org>
parents: 13090
diff changeset
1413 au! CmdlineChanged
59a16624400a patch 8.0.1445: cannot act on edits in the command line
Christian Brabandt <cb@256bit.org>
parents: 13090
diff changeset
1414
59a16624400a patch 8.0.1445: cannot act on edits in the command line
Christian Brabandt <cb@256bit.org>
parents: 13090
diff changeset
1415 au! CmdlineChanged : let g:entered = expand('<afile>')
59a16624400a patch 8.0.1445: cannot act on edits in the command line
Christian Brabandt <cb@256bit.org>
parents: 13090
diff changeset
1416 let g:entered = 0
59a16624400a patch 8.0.1445: cannot act on edits in the command line
Christian Brabandt <cb@256bit.org>
parents: 13090
diff changeset
1417 call feedkeys(":echom 'hello'\<CR>", 'xt')
59a16624400a patch 8.0.1445: cannot act on edits in the command line
Christian Brabandt <cb@256bit.org>
parents: 13090
diff changeset
1418 call assert_equal(':', g:entered)
59a16624400a patch 8.0.1445: cannot act on edits in the command line
Christian Brabandt <cb@256bit.org>
parents: 13090
diff changeset
1419 au! CmdlineChanged
59a16624400a patch 8.0.1445: cannot act on edits in the command line
Christian Brabandt <cb@256bit.org>
parents: 13090
diff changeset
1420
12656
0a9dacb8826a patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents: 12652
diff changeset
1421 au! CmdlineEnter : let g:entered = expand('<afile>')
0a9dacb8826a patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents: 12652
diff changeset
1422 au! CmdlineLeave : let g:left = expand('<afile>')
0a9dacb8826a patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents: 12652
diff changeset
1423 let g:entered = 0
0a9dacb8826a patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents: 12652
diff changeset
1424 let g:left = 0
0a9dacb8826a patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents: 12652
diff changeset
1425 call feedkeys(":echo 'hello'\<CR>", 'xt')
0a9dacb8826a patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents: 12652
diff changeset
1426 call assert_equal(':', g:entered)
0a9dacb8826a patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents: 12652
diff changeset
1427 call assert_equal(':', g:left)
0a9dacb8826a patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents: 12652
diff changeset
1428 au! CmdlineEnter
0a9dacb8826a patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents: 12652
diff changeset
1429 au! CmdlineLeave
0a9dacb8826a patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents: 12652
diff changeset
1430
13752
8a3e9d1e8cf9 patch 8.0.1748: CmdlineEnter command uses backslash instead of slash
Christian Brabandt <cb@256bit.org>
parents: 13720
diff changeset
1431 let save_shellslash = &shellslash
8a3e9d1e8cf9 patch 8.0.1748: CmdlineEnter command uses backslash instead of slash
Christian Brabandt <cb@256bit.org>
parents: 13720
diff changeset
1432 set noshellslash
12656
0a9dacb8826a patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents: 12652
diff changeset
1433 au! CmdlineEnter / let g:entered = expand('<afile>')
0a9dacb8826a patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents: 12652
diff changeset
1434 au! CmdlineLeave / let g:left = expand('<afile>')
0a9dacb8826a patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents: 12652
diff changeset
1435 let g:entered = 0
0a9dacb8826a patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents: 12652
diff changeset
1436 let g:left = 0
12662
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1437 new
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1438 call setline(1, 'hello')
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1439 call feedkeys("/hello\<CR>", 'xt')
12656
0a9dacb8826a patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents: 12652
diff changeset
1440 call assert_equal('/', g:entered)
0a9dacb8826a patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents: 12652
diff changeset
1441 call assert_equal('/', g:left)
12662
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1442 bwipe!
12656
0a9dacb8826a patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents: 12652
diff changeset
1443 au! CmdlineEnter
0a9dacb8826a patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents: 12652
diff changeset
1444 au! CmdlineLeave
13752
8a3e9d1e8cf9 patch 8.0.1748: CmdlineEnter command uses backslash instead of slash
Christian Brabandt <cb@256bit.org>
parents: 13720
diff changeset
1445 let &shellslash = save_shellslash
12656
0a9dacb8826a patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents: 12652
diff changeset
1446 endfunc
12662
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1447
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1448 " Test for BufWritePre autocommand that deletes or unloads the buffer.
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1449 func Test_BufWritePre()
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1450 %bwipe
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1451 au BufWritePre Xxx1 bunload
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1452 au BufWritePre Xxx2 bwipe
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1453
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1454 call writefile(['start of Xxx1', 'test', 'end of Xxx1'], 'Xxx1')
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1455 call writefile(['start of Xxx2', 'test', 'end of Xxx2'], 'Xxx2')
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1456
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1457 edit Xtest
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1458 e! Xxx2
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1459 bdel Xtest
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1460 e Xxx1
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1461 " write it, will unload it and give an error msg
22087
ff21e2962490 patch 8.2.1593: tests do not check the error number properly
Bram Moolenaar <Bram@vim.org>
parents: 21895
diff changeset
1462 call assert_fails('w', 'E203:')
12662
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1463 call assert_equal('Xxx2', bufname('%'))
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1464 edit Xtest
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1465 e! Xxx2
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1466 bwipe Xtest
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1467 " write it, will delete the buffer and give an error msg
22087
ff21e2962490 patch 8.2.1593: tests do not check the error number properly
Bram Moolenaar <Bram@vim.org>
parents: 21895
diff changeset
1468 call assert_fails('w', 'E203:')
12662
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1469 call assert_equal('Xxx1', bufname('%'))
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1470 au! BufWritePre
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1471 call delete('Xxx1')
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1472 call delete('Xxx2')
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1473 endfunc
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1474
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1475 " Test for BufUnload autocommand that unloads all the other buffers
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1476 func Test_bufunload_all()
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1477 call writefile(['Test file Xxx1'], 'Xxx1')"
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1478 call writefile(['Test file Xxx2'], 'Xxx2')"
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1479
16720
9c90cf08cfa8 patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents: 16646
diff changeset
1480 let content =<< trim [CODE]
9c90cf08cfa8 patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents: 16646
diff changeset
1481 func UnloadAllBufs()
9c90cf08cfa8 patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents: 16646
diff changeset
1482 let i = 1
9c90cf08cfa8 patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents: 16646
diff changeset
1483 while i <= bufnr('$')
9c90cf08cfa8 patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents: 16646
diff changeset
1484 if i != bufnr('%') && bufloaded(i)
9c90cf08cfa8 patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents: 16646
diff changeset
1485 exe i . 'bunload'
9c90cf08cfa8 patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents: 16646
diff changeset
1486 endif
9c90cf08cfa8 patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents: 16646
diff changeset
1487 let i += 1
9c90cf08cfa8 patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents: 16646
diff changeset
1488 endwhile
9c90cf08cfa8 patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents: 16646
diff changeset
1489 endfunc
9c90cf08cfa8 patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents: 16646
diff changeset
1490 au BufUnload * call UnloadAllBufs()
9c90cf08cfa8 patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents: 16646
diff changeset
1491 au VimLeave * call writefile(['Test Finished'], 'Xout')
9c90cf08cfa8 patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents: 16646
diff changeset
1492 edit Xxx1
9c90cf08cfa8 patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents: 16646
diff changeset
1493 split Xxx2
9c90cf08cfa8 patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents: 16646
diff changeset
1494 q
9c90cf08cfa8 patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents: 16646
diff changeset
1495 [CODE]
9c90cf08cfa8 patch 8.1.1362: code and data in tests can be hard to read
Bram Moolenaar <Bram@vim.org>
parents: 16646
diff changeset
1496
12662
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1497 call writefile(content, 'Xtest')
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1498
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1499 call delete('Xout')
17698
131f1d8c5860 patch 8.1.1846: inconsistently using GetVimCommand() and v:progpath
Bram Moolenaar <Bram@vim.org>
parents: 17657
diff changeset
1500 call system(GetVimCommandClean() .. ' -N --not-a-term -S Xtest')
12662
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1501 call assert_true(filereadable('Xout'))
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1502
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1503 call delete('Xxx1')
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1504 call delete('Xxx2')
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1505 call delete('Xtest')
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1506 call delete('Xout')
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1507 endfunc
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1508
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1509 " Some tests for buffer-local autocommands
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1510 func Test_buflocal_autocmd()
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1511 let g:bname = ''
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1512 edit xx
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1513 au BufLeave <buffer> let g:bname = expand("%")
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1514 " here, autocommand for xx should trigger.
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1515 " but autocommand shall not apply to buffer named <buffer>.
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1516 edit somefile
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1517 call assert_equal('xx', g:bname)
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1518 let g:bname = ''
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1519 " here, autocommand shall be auto-deleted
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1520 bwipe xx
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1521 " autocmd should not trigger
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1522 edit xx
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1523 call assert_equal('', g:bname)
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1524 " autocmd should not trigger
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1525 edit somefile
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1526 call assert_equal('', g:bname)
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1527 enew
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1528 unlet g:bname
15f0f9f16cd9 patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12656
diff changeset
1529 endfunc
12750
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1530
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1531 " Test for "*Cmd" autocommands
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1532 func Test_Cmd_Autocmds()
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1533 call writefile(['start of Xxx', "\tabc2", 'end of Xxx'], 'Xxx')
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1534
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1535 enew!
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1536 au BufReadCmd XtestA 0r Xxx|$del
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1537 edit XtestA " will read text of Xxd instead
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1538 call assert_equal('start of Xxx', getline(1))
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1539
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1540 au BufWriteCmd XtestA call append(line("$"), "write")
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1541 write " will append a line to the file
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1542 call assert_equal('write', getline('$'))
22087
ff21e2962490 patch 8.2.1593: tests do not check the error number properly
Bram Moolenaar <Bram@vim.org>
parents: 21895
diff changeset
1543 call assert_fails('read XtestA', 'E484:') " should not read anything
12750
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1544 call assert_equal('write', getline(4))
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1545
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1546 " now we have:
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1547 " 1 start of Xxx
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1548 " 2 abc2
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1549 " 3 end of Xxx
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1550 " 4 write
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1551
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1552 au FileReadCmd XtestB '[r Xxx
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1553 2r XtestB " will read Xxx below line 2 instead
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1554 call assert_equal('start of Xxx', getline(3))
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1555
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1556 " now we have:
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1557 " 1 start of Xxx
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1558 " 2 abc2
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1559 " 3 start of Xxx
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1560 " 4 abc2
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1561 " 5 end of Xxx
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1562 " 6 end of Xxx
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1563 " 7 write
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1564
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1565 au FileWriteCmd XtestC '[,']copy $
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1566 normal 4GA1
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1567 4,5w XtestC " will copy lines 4 and 5 to the end
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1568 call assert_equal("\tabc21", getline(8))
22087
ff21e2962490 patch 8.2.1593: tests do not check the error number properly
Bram Moolenaar <Bram@vim.org>
parents: 21895
diff changeset
1569 call assert_fails('r XtestC', 'E484:') " should not read anything
12750
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1570 call assert_equal("end of Xxx", getline(9))
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1571
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1572 " now we have:
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1573 " 1 start of Xxx
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1574 " 2 abc2
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1575 " 3 start of Xxx
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1576 " 4 abc21
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1577 " 5 end of Xxx
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1578 " 6 end of Xxx
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1579 " 7 write
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1580 " 8 abc21
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1581 " 9 end of Xxx
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1582
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1583 let g:lines = []
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1584 au FileAppendCmd XtestD call extend(g:lines, getline(line("'["), line("']")))
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1585 w >>XtestD " will add lines to 'lines'
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1586 call assert_equal(9, len(g:lines))
22087
ff21e2962490 patch 8.2.1593: tests do not check the error number properly
Bram Moolenaar <Bram@vim.org>
parents: 21895
diff changeset
1587 call assert_fails('$r XtestD', 'E484:') " should not read anything
12750
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1588 call assert_equal(9, line('$'))
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1589 call assert_equal('end of Xxx', getline('$'))
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1590
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1591 au BufReadCmd XtestE 0r Xxx|$del
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1592 sp XtestE " split window with test.out
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1593 call assert_equal('end of Xxx', getline(3))
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1594
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1595 let g:lines = []
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1596 exe "normal 2Goasdf\<Esc>\<C-W>\<C-W>"
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1597 au BufWriteCmd XtestE call extend(g:lines, getline(0, '$'))
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1598 wall " will write other window to 'lines'
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1599 call assert_equal(4, len(g:lines), g:lines)
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1600 call assert_equal('asdf', g:lines[2])
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1601
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1602 au! BufReadCmd
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1603 au! BufWriteCmd
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1604 au! FileReadCmd
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1605 au! FileWriteCmd
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1606 au! FileAppendCmd
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1607 %bwipe!
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1608 call delete('Xxx')
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1609 enew!
0b6c09957b43 patch 8.0.1253: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents: 12692
diff changeset
1610 endfunc
12783
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1611
19836
c32b295af9c5 patch 8.2.0474: cannot use :write when using a plugin with BufWriteCmd
Bram Moolenaar <Bram@vim.org>
parents: 19752
diff changeset
1612 func s:ReadFile()
c32b295af9c5 patch 8.2.0474: cannot use :write when using a plugin with BufWriteCmd
Bram Moolenaar <Bram@vim.org>
parents: 19752
diff changeset
1613 setl noswapfile nomodified
c32b295af9c5 patch 8.2.0474: cannot use :write when using a plugin with BufWriteCmd
Bram Moolenaar <Bram@vim.org>
parents: 19752
diff changeset
1614 let filename = resolve(expand("<afile>:p"))
c32b295af9c5 patch 8.2.0474: cannot use :write when using a plugin with BufWriteCmd
Bram Moolenaar <Bram@vim.org>
parents: 19752
diff changeset
1615 execute 'read' fnameescape(filename)
c32b295af9c5 patch 8.2.0474: cannot use :write when using a plugin with BufWriteCmd
Bram Moolenaar <Bram@vim.org>
parents: 19752
diff changeset
1616 1d_
c32b295af9c5 patch 8.2.0474: cannot use :write when using a plugin with BufWriteCmd
Bram Moolenaar <Bram@vim.org>
parents: 19752
diff changeset
1617 exe 'file' fnameescape(filename)
c32b295af9c5 patch 8.2.0474: cannot use :write when using a plugin with BufWriteCmd
Bram Moolenaar <Bram@vim.org>
parents: 19752
diff changeset
1618 setl buftype=acwrite
c32b295af9c5 patch 8.2.0474: cannot use :write when using a plugin with BufWriteCmd
Bram Moolenaar <Bram@vim.org>
parents: 19752
diff changeset
1619 endfunc
c32b295af9c5 patch 8.2.0474: cannot use :write when using a plugin with BufWriteCmd
Bram Moolenaar <Bram@vim.org>
parents: 19752
diff changeset
1620
c32b295af9c5 patch 8.2.0474: cannot use :write when using a plugin with BufWriteCmd
Bram Moolenaar <Bram@vim.org>
parents: 19752
diff changeset
1621 func s:WriteFile()
c32b295af9c5 patch 8.2.0474: cannot use :write when using a plugin with BufWriteCmd
Bram Moolenaar <Bram@vim.org>
parents: 19752
diff changeset
1622 let filename = resolve(expand("<afile>:p"))
c32b295af9c5 patch 8.2.0474: cannot use :write when using a plugin with BufWriteCmd
Bram Moolenaar <Bram@vim.org>
parents: 19752
diff changeset
1623 setl buftype=
c32b295af9c5 patch 8.2.0474: cannot use :write when using a plugin with BufWriteCmd
Bram Moolenaar <Bram@vim.org>
parents: 19752
diff changeset
1624 noautocmd execute 'write' fnameescape(filename)
c32b295af9c5 patch 8.2.0474: cannot use :write when using a plugin with BufWriteCmd
Bram Moolenaar <Bram@vim.org>
parents: 19752
diff changeset
1625 setl buftype=acwrite
c32b295af9c5 patch 8.2.0474: cannot use :write when using a plugin with BufWriteCmd
Bram Moolenaar <Bram@vim.org>
parents: 19752
diff changeset
1626 setl nomodified
c32b295af9c5 patch 8.2.0474: cannot use :write when using a plugin with BufWriteCmd
Bram Moolenaar <Bram@vim.org>
parents: 19752
diff changeset
1627 endfunc
c32b295af9c5 patch 8.2.0474: cannot use :write when using a plugin with BufWriteCmd
Bram Moolenaar <Bram@vim.org>
parents: 19752
diff changeset
1628
c32b295af9c5 patch 8.2.0474: cannot use :write when using a plugin with BufWriteCmd
Bram Moolenaar <Bram@vim.org>
parents: 19752
diff changeset
1629 func Test_BufReadCmd()
c32b295af9c5 patch 8.2.0474: cannot use :write when using a plugin with BufWriteCmd
Bram Moolenaar <Bram@vim.org>
parents: 19752
diff changeset
1630 autocmd BufReadCmd *.test call s:ReadFile()
c32b295af9c5 patch 8.2.0474: cannot use :write when using a plugin with BufWriteCmd
Bram Moolenaar <Bram@vim.org>
parents: 19752
diff changeset
1631 autocmd BufWriteCmd *.test call s:WriteFile()
c32b295af9c5 patch 8.2.0474: cannot use :write when using a plugin with BufWriteCmd
Bram Moolenaar <Bram@vim.org>
parents: 19752
diff changeset
1632
c32b295af9c5 patch 8.2.0474: cannot use :write when using a plugin with BufWriteCmd
Bram Moolenaar <Bram@vim.org>
parents: 19752
diff changeset
1633 call writefile(['one', 'two', 'three'], 'Xcmd.test')
c32b295af9c5 patch 8.2.0474: cannot use :write when using a plugin with BufWriteCmd
Bram Moolenaar <Bram@vim.org>
parents: 19752
diff changeset
1634 edit Xcmd.test
c32b295af9c5 patch 8.2.0474: cannot use :write when using a plugin with BufWriteCmd
Bram Moolenaar <Bram@vim.org>
parents: 19752
diff changeset
1635 call assert_match('Xcmd.test" line 1 of 3', execute('file'))
c32b295af9c5 patch 8.2.0474: cannot use :write when using a plugin with BufWriteCmd
Bram Moolenaar <Bram@vim.org>
parents: 19752
diff changeset
1636 normal! Gofour
c32b295af9c5 patch 8.2.0474: cannot use :write when using a plugin with BufWriteCmd
Bram Moolenaar <Bram@vim.org>
parents: 19752
diff changeset
1637 write
c32b295af9c5 patch 8.2.0474: cannot use :write when using a plugin with BufWriteCmd
Bram Moolenaar <Bram@vim.org>
parents: 19752
diff changeset
1638 call assert_equal(['one', 'two', 'three', 'four'], readfile('Xcmd.test'))
c32b295af9c5 patch 8.2.0474: cannot use :write when using a plugin with BufWriteCmd
Bram Moolenaar <Bram@vim.org>
parents: 19752
diff changeset
1639
c32b295af9c5 patch 8.2.0474: cannot use :write when using a plugin with BufWriteCmd
Bram Moolenaar <Bram@vim.org>
parents: 19752
diff changeset
1640 bwipe!
c32b295af9c5 patch 8.2.0474: cannot use :write when using a plugin with BufWriteCmd
Bram Moolenaar <Bram@vim.org>
parents: 19752
diff changeset
1641 call delete('Xcmd.test')
c32b295af9c5 patch 8.2.0474: cannot use :write when using a plugin with BufWriteCmd
Bram Moolenaar <Bram@vim.org>
parents: 19752
diff changeset
1642 au! BufReadCmd
c32b295af9c5 patch 8.2.0474: cannot use :write when using a plugin with BufWriteCmd
Bram Moolenaar <Bram@vim.org>
parents: 19752
diff changeset
1643 au! BufWriteCmd
c32b295af9c5 patch 8.2.0474: cannot use :write when using a plugin with BufWriteCmd
Bram Moolenaar <Bram@vim.org>
parents: 19752
diff changeset
1644 endfunc
c32b295af9c5 patch 8.2.0474: cannot use :write when using a plugin with BufWriteCmd
Bram Moolenaar <Bram@vim.org>
parents: 19752
diff changeset
1645
12783
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1646 func SetChangeMarks(start, end)
23626
e23ccc04025a patch 8.2.2355: stray test failure on Appveyor
Bram Moolenaar <Bram@vim.org>
parents: 23624
diff changeset
1647 exe a:start .. 'mark ['
e23ccc04025a patch 8.2.2355: stray test failure on Appveyor
Bram Moolenaar <Bram@vim.org>
parents: 23624
diff changeset
1648 exe a:end .. 'mark ]'
12783
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1649 endfunc
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1650
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1651 " Verify the effects of autocmds on '[ and ']
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1652 func Test_change_mark_in_autocmds()
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1653 edit! Xtest
23626
e23ccc04025a patch 8.2.2355: stray test failure on Appveyor
Bram Moolenaar <Bram@vim.org>
parents: 23624
diff changeset
1654 call feedkeys("ia\<CR>b\<CR>c\<CR>d\<C-g>u\<Esc>", 'xtn')
12783
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1655
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1656 call SetChangeMarks(2, 3)
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1657 write
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1658 call assert_equal([1, 4], [line("'["), line("']")])
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1659
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1660 call SetChangeMarks(2, 3)
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1661 au BufWritePre * call assert_equal([1, 4], [line("'["), line("']")])
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1662 write
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1663 au! BufWritePre
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1664
21638
5dcdb970111b patch 8.2.1369: MS-Windows: autocommand test sometimes fails
Bram Moolenaar <Bram@vim.org>
parents: 21419
diff changeset
1665 if has('unix')
12783
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1666 write XtestFilter
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1667 write >> XtestFilter
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1668
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1669 call SetChangeMarks(2, 3)
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1670 " Marks are set to the entire range of the write
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1671 au FilterWritePre * call assert_equal([1, 4], [line("'["), line("']")])
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1672 " '[ is adjusted to just before the line that will receive the filtered
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1673 " data
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1674 au FilterReadPre * call assert_equal([4, 4], [line("'["), line("']")])
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1675 " The filtered data is read into the buffer, and the source lines are
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1676 " still present, so the range is after the source lines
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1677 au FilterReadPost * call assert_equal([5, 12], [line("'["), line("']")])
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1678 %!cat XtestFilter
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1679 " After the filtered data is read, the original lines are deleted
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1680 call assert_equal([1, 8], [line("'["), line("']")])
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1681 au! FilterWritePre,FilterReadPre,FilterReadPost
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1682 undo
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1683
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1684 call SetChangeMarks(1, 4)
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1685 au FilterWritePre * call assert_equal([2, 3], [line("'["), line("']")])
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1686 au FilterReadPre * call assert_equal([3, 3], [line("'["), line("']")])
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1687 au FilterReadPost * call assert_equal([4, 11], [line("'["), line("']")])
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1688 2,3!cat XtestFilter
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1689 call assert_equal([2, 9], [line("'["), line("']")])
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1690 au! FilterWritePre,FilterReadPre,FilterReadPost
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1691 undo
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1692
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1693 call delete('XtestFilter')
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1694 endif
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1695
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1696 call SetChangeMarks(1, 4)
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1697 au FileWritePre * call assert_equal([2, 3], [line("'["), line("']")])
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1698 2,3write Xtest2
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1699 au! FileWritePre
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1700
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1701 call SetChangeMarks(2, 3)
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1702 au FileAppendPre * call assert_equal([1, 4], [line("'["), line("']")])
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1703 write >> Xtest2
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1704 au! FileAppendPre
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1705
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1706 call SetChangeMarks(1, 4)
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1707 au FileAppendPre * call assert_equal([2, 3], [line("'["), line("']")])
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1708 2,3write >> Xtest2
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1709 au! FileAppendPre
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1710
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1711 call SetChangeMarks(1, 1)
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1712 au FileReadPre * call assert_equal([3, 1], [line("'["), line("']")])
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1713 au FileReadPost * call assert_equal([4, 11], [line("'["), line("']")])
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1714 3read Xtest2
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1715 au! FileReadPre,FileReadPost
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1716 undo
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1717
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1718 call SetChangeMarks(4, 4)
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1719 " When the line is 0, it's adjusted to 1
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1720 au FileReadPre * call assert_equal([1, 4], [line("'["), line("']")])
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1721 au FileReadPost * call assert_equal([1, 8], [line("'["), line("']")])
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1722 0read Xtest2
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1723 au! FileReadPre,FileReadPost
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1724 undo
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1725
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1726 call SetChangeMarks(4, 4)
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1727 " When the line is 0, it's adjusted to 1
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1728 au FileReadPre * call assert_equal([1, 4], [line("'["), line("']")])
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1729 au FileReadPost * call assert_equal([2, 9], [line("'["), line("']")])
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1730 1read Xtest2
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1731 au! FileReadPre,FileReadPost
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1732 undo
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1733
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1734 bwipe!
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1735 call delete('Xtest')
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1736 call delete('Xtest2')
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1737 endfunc
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1738
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1739 func Test_Filter_noshelltemp()
23027
f74978697fb6 patch 8.2.2060: check for features implemented with "if"
Bram Moolenaar <Bram@vim.org>
parents: 23021
diff changeset
1740 CheckExecutable cat
12783
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1741
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1742 enew!
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1743 call setline(1, ['a', 'b', 'c', 'd'])
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1744
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1745 let shelltemp = &shelltemp
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1746 set shelltemp
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1747
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1748 let g:filter_au = 0
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1749 au FilterWritePre * let g:filter_au += 1
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1750 au FilterReadPre * let g:filter_au += 1
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1751 au FilterReadPost * let g:filter_au += 1
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1752 %!cat
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1753 call assert_equal(3, g:filter_au)
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1754
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1755 if has('filterpipe')
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1756 set noshelltemp
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1757
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1758 let g:filter_au = 0
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1759 au FilterWritePre * let g:filter_au += 1
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1760 au FilterReadPre * let g:filter_au += 1
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1761 au FilterReadPost * let g:filter_au += 1
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1762 %!cat
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1763 call assert_equal(0, g:filter_au)
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1764 endif
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1765
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1766 au! FilterWritePre,FilterReadPre,FilterReadPost
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1767 let &shelltemp = shelltemp
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1768 bwipe!
afd8a4f36301 patch 8.0.1269: effect of autocommands on marks is not tested
Christian Brabandt <cb@256bit.org>
parents: 12750
diff changeset
1769 endfunc
13037
6e81a68d63a1 patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents: 12783
diff changeset
1770
6e81a68d63a1 patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents: 12783
diff changeset
1771 func Test_TextYankPost()
6e81a68d63a1 patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents: 12783
diff changeset
1772 enew!
6e81a68d63a1 patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents: 12783
diff changeset
1773 call setline(1, ['foo'])
6e81a68d63a1 patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents: 12783
diff changeset
1774
6e81a68d63a1 patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents: 12783
diff changeset
1775 let g:event = []
6e81a68d63a1 patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents: 12783
diff changeset
1776 au TextYankPost * let g:event = copy(v:event)
6e81a68d63a1 patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents: 12783
diff changeset
1777
6e81a68d63a1 patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents: 12783
diff changeset
1778 call assert_equal({}, v:event)
6e81a68d63a1 patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents: 12783
diff changeset
1779 call assert_fails('let v:event = {}', 'E46:')
6e81a68d63a1 patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents: 12783
diff changeset
1780 call assert_fails('let v:event.mykey = 0', 'E742:')
6e81a68d63a1 patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents: 12783
diff changeset
1781
6e81a68d63a1 patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents: 12783
diff changeset
1782 norm "ayiw
6e81a68d63a1 patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents: 12783
diff changeset
1783 call assert_equal(
20824
b8ca32dcfabb patch 8.2.0964: TextYankPost does not provide info about Visual selection
Bram Moolenaar <Bram@vim.org>
parents: 20800
diff changeset
1784 \{'regcontents': ['foo'], 'regname': 'a', 'operator': 'y', 'regtype': 'v', 'visual': v:false},
13037
6e81a68d63a1 patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents: 12783
diff changeset
1785 \g:event)
6e81a68d63a1 patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents: 12783
diff changeset
1786 norm y_
6e81a68d63a1 patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents: 12783
diff changeset
1787 call assert_equal(
20824
b8ca32dcfabb patch 8.2.0964: TextYankPost does not provide info about Visual selection
Bram Moolenaar <Bram@vim.org>
parents: 20800
diff changeset
1788 \{'regcontents': ['foo'], 'regname': '', 'operator': 'y', 'regtype': 'V', 'visual': v:false},
b8ca32dcfabb patch 8.2.0964: TextYankPost does not provide info about Visual selection
Bram Moolenaar <Bram@vim.org>
parents: 20800
diff changeset
1789 \g:event)
b8ca32dcfabb patch 8.2.0964: TextYankPost does not provide info about Visual selection
Bram Moolenaar <Bram@vim.org>
parents: 20800
diff changeset
1790 norm Vy
b8ca32dcfabb patch 8.2.0964: TextYankPost does not provide info about Visual selection
Bram Moolenaar <Bram@vim.org>
parents: 20800
diff changeset
1791 call assert_equal(
b8ca32dcfabb patch 8.2.0964: TextYankPost does not provide info about Visual selection
Bram Moolenaar <Bram@vim.org>
parents: 20800
diff changeset
1792 \{'regcontents': ['foo'], 'regname': '', 'operator': 'y', 'regtype': 'V', 'visual': v:true},
13037
6e81a68d63a1 patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents: 12783
diff changeset
1793 \g:event)
6e81a68d63a1 patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents: 12783
diff changeset
1794 call feedkeys("\<C-V>y", 'x')
6e81a68d63a1 patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents: 12783
diff changeset
1795 call assert_equal(
20824
b8ca32dcfabb patch 8.2.0964: TextYankPost does not provide info about Visual selection
Bram Moolenaar <Bram@vim.org>
parents: 20800
diff changeset
1796 \{'regcontents': ['f'], 'regname': '', 'operator': 'y', 'regtype': "\x161", 'visual': v:true},
13037
6e81a68d63a1 patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents: 12783
diff changeset
1797 \g:event)
6e81a68d63a1 patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents: 12783
diff changeset
1798 norm "xciwbar
6e81a68d63a1 patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents: 12783
diff changeset
1799 call assert_equal(
20824
b8ca32dcfabb patch 8.2.0964: TextYankPost does not provide info about Visual selection
Bram Moolenaar <Bram@vim.org>
parents: 20800
diff changeset
1800 \{'regcontents': ['foo'], 'regname': 'x', 'operator': 'c', 'regtype': 'v', 'visual': v:false},
13037
6e81a68d63a1 patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents: 12783
diff changeset
1801 \g:event)
6e81a68d63a1 patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents: 12783
diff changeset
1802 norm "bdiw
6e81a68d63a1 patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents: 12783
diff changeset
1803 call assert_equal(
20824
b8ca32dcfabb patch 8.2.0964: TextYankPost does not provide info about Visual selection
Bram Moolenaar <Bram@vim.org>
parents: 20800
diff changeset
1804 \{'regcontents': ['bar'], 'regname': 'b', 'operator': 'd', 'regtype': 'v', 'visual': v:false},
13037
6e81a68d63a1 patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents: 12783
diff changeset
1805 \g:event)
6e81a68d63a1 patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents: 12783
diff changeset
1806
6e81a68d63a1 patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents: 12783
diff changeset
1807 call assert_equal({}, v:event)
6e81a68d63a1 patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents: 12783
diff changeset
1808
23021
d10a37eb91ee patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents: 22999
diff changeset
1809 if has('clipboard_working') && !has('gui_running')
d10a37eb91ee patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents: 22999
diff changeset
1810 " Test that when the visual selection is automatically copied to clipboard
d10a37eb91ee patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents: 22999
diff changeset
1811 " register a TextYankPost is emitted
d10a37eb91ee patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents: 22999
diff changeset
1812 call setline(1, ['foobar'])
d10a37eb91ee patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents: 22999
diff changeset
1813
d10a37eb91ee patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents: 22999
diff changeset
1814 let @* = ''
d10a37eb91ee patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents: 22999
diff changeset
1815 set clipboard=autoselect
d10a37eb91ee patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents: 22999
diff changeset
1816 exe "norm! ggviw\<Esc>"
d10a37eb91ee patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents: 22999
diff changeset
1817 call assert_equal(
d10a37eb91ee patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents: 22999
diff changeset
1818 \{'regcontents': ['foobar'], 'regname': '*', 'operator': 'y', 'regtype': 'v', 'visual': v:true},
d10a37eb91ee patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents: 22999
diff changeset
1819 \g:event)
d10a37eb91ee patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents: 22999
diff changeset
1820
d10a37eb91ee patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents: 22999
diff changeset
1821 let @+ = ''
d10a37eb91ee patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents: 22999
diff changeset
1822 set clipboard=autoselectplus
d10a37eb91ee patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents: 22999
diff changeset
1823 exe "norm! ggviw\<Esc>"
d10a37eb91ee patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents: 22999
diff changeset
1824 call assert_equal(
d10a37eb91ee patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents: 22999
diff changeset
1825 \{'regcontents': ['foobar'], 'regname': '+', 'operator': 'y', 'regtype': 'v', 'visual': v:true},
d10a37eb91ee patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents: 22999
diff changeset
1826 \g:event)
d10a37eb91ee patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents: 22999
diff changeset
1827
d10a37eb91ee patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents: 22999
diff changeset
1828 set clipboard&vim
d10a37eb91ee patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents: 22999
diff changeset
1829 endif
d10a37eb91ee patch 8.2.2057: getting the selection may trigger TextYankPost autocmd
Bram Moolenaar <Bram@vim.org>
parents: 22999
diff changeset
1830
13037
6e81a68d63a1 patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents: 12783
diff changeset
1831 au! TextYankPost
6e81a68d63a1 patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents: 12783
diff changeset
1832 unlet g:event
6e81a68d63a1 patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents: 12783
diff changeset
1833 bwipe!
6e81a68d63a1 patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents: 12783
diff changeset
1834 endfunc
13054
197a08152ad5 patch 8.0.1402: crash with nasty autocommand
Christian Brabandt <cb@256bit.org>
parents: 13037
diff changeset
1835
23758
97296182d336 patch 8.2.2420: too many problems with using all autocommand events
Bram Moolenaar <Bram@vim.org>
parents: 23756
diff changeset
1836 func Test_autocommand_all_events()
97296182d336 patch 8.2.2420: too many problems with using all autocommand events
Bram Moolenaar <Bram@vim.org>
parents: 23756
diff changeset
1837 call assert_fails('au * * bwipe', 'E1155:')
97296182d336 patch 8.2.2420: too many problems with using all autocommand events
Bram Moolenaar <Bram@vim.org>
parents: 23756
diff changeset
1838 call assert_fails('au * x bwipe', 'E1155:')
13056
b931b2751650 patch 8.0.1403: using freed buffer in grep command
Christian Brabandt <cb@256bit.org>
parents: 13054
diff changeset
1839 endfunc
13170
6559e98f3e74 patch 8.0.1459: cannot handle change of directory
Christian Brabandt <cb@256bit.org>
parents: 13142
diff changeset
1840
6559e98f3e74 patch 8.0.1459: cannot handle change of directory
Christian Brabandt <cb@256bit.org>
parents: 13142
diff changeset
1841 function s:Before_test_dirchanged()
6559e98f3e74 patch 8.0.1459: cannot handle change of directory
Christian Brabandt <cb@256bit.org>
parents: 13142
diff changeset
1842 augroup test_dirchanged
6559e98f3e74 patch 8.0.1459: cannot handle change of directory
Christian Brabandt <cb@256bit.org>
parents: 13142
diff changeset
1843 autocmd!
6559e98f3e74 patch 8.0.1459: cannot handle change of directory
Christian Brabandt <cb@256bit.org>
parents: 13142
diff changeset
1844 augroup END
6559e98f3e74 patch 8.0.1459: cannot handle change of directory
Christian Brabandt <cb@256bit.org>
parents: 13142
diff changeset
1845 let s:li = []
6559e98f3e74 patch 8.0.1459: cannot handle change of directory
Christian Brabandt <cb@256bit.org>
parents: 13142
diff changeset
1846 let s:dir_this = getcwd()
19954
c087099e9163 patch 8.2.0533: tests using term_wait() can still be flaky
Bram Moolenaar <Bram@vim.org>
parents: 19932
diff changeset
1847 let s:dir_foo = s:dir_this . '/Xfoo'
15184
90ab2d3ce11d patch 8.1.0602: DirChanged is also triggered when directory didn't change
Bram Moolenaar <Bram@vim.org>
parents: 14485
diff changeset
1848 call mkdir(s:dir_foo)
19954
c087099e9163 patch 8.2.0533: tests using term_wait() can still be flaky
Bram Moolenaar <Bram@vim.org>
parents: 19932
diff changeset
1849 let s:dir_bar = s:dir_this . '/Xbar'
15184
90ab2d3ce11d patch 8.1.0602: DirChanged is also triggered when directory didn't change
Bram Moolenaar <Bram@vim.org>
parents: 14485
diff changeset
1850 call mkdir(s:dir_bar)
13170
6559e98f3e74 patch 8.0.1459: cannot handle change of directory
Christian Brabandt <cb@256bit.org>
parents: 13142
diff changeset
1851 endfunc
6559e98f3e74 patch 8.0.1459: cannot handle change of directory
Christian Brabandt <cb@256bit.org>
parents: 13142
diff changeset
1852
6559e98f3e74 patch 8.0.1459: cannot handle change of directory
Christian Brabandt <cb@256bit.org>
parents: 13142
diff changeset
1853 function s:After_test_dirchanged()
18568
26a04a556982 patch 8.1.2278: using "cd" with "exe" may fail
Bram Moolenaar <Bram@vim.org>
parents: 18283
diff changeset
1854 call chdir(s:dir_this)
15184
90ab2d3ce11d patch 8.1.0602: DirChanged is also triggered when directory didn't change
Bram Moolenaar <Bram@vim.org>
parents: 14485
diff changeset
1855 call delete(s:dir_foo, 'd')
90ab2d3ce11d patch 8.1.0602: DirChanged is also triggered when directory didn't change
Bram Moolenaar <Bram@vim.org>
parents: 14485
diff changeset
1856 call delete(s:dir_bar, 'd')
13170
6559e98f3e74 patch 8.0.1459: cannot handle change of directory
Christian Brabandt <cb@256bit.org>
parents: 13142
diff changeset
1857 augroup test_dirchanged
6559e98f3e74 patch 8.0.1459: cannot handle change of directory
Christian Brabandt <cb@256bit.org>
parents: 13142
diff changeset
1858 autocmd!
6559e98f3e74 patch 8.0.1459: cannot handle change of directory
Christian Brabandt <cb@256bit.org>
parents: 13142
diff changeset
1859 augroup END
6559e98f3e74 patch 8.0.1459: cannot handle change of directory
Christian Brabandt <cb@256bit.org>
parents: 13142
diff changeset
1860 endfunc
6559e98f3e74 patch 8.0.1459: cannot handle change of directory
Christian Brabandt <cb@256bit.org>
parents: 13142
diff changeset
1861
6559e98f3e74 patch 8.0.1459: cannot handle change of directory
Christian Brabandt <cb@256bit.org>
parents: 13142
diff changeset
1862 function Test_dirchanged_global()
6559e98f3e74 patch 8.0.1459: cannot handle change of directory
Christian Brabandt <cb@256bit.org>
parents: 13142
diff changeset
1863 call s:Before_test_dirchanged()
6559e98f3e74 patch 8.0.1459: cannot handle change of directory
Christian Brabandt <cb@256bit.org>
parents: 13142
diff changeset
1864 autocmd test_dirchanged DirChanged global call add(s:li, "cd:")
6559e98f3e74 patch 8.0.1459: cannot handle change of directory
Christian Brabandt <cb@256bit.org>
parents: 13142
diff changeset
1865 autocmd test_dirchanged DirChanged global call add(s:li, expand("<afile>"))
18568
26a04a556982 patch 8.1.2278: using "cd" with "exe" may fail
Bram Moolenaar <Bram@vim.org>
parents: 18283
diff changeset
1866 call chdir(s:dir_foo)
15184
90ab2d3ce11d patch 8.1.0602: DirChanged is also triggered when directory didn't change
Bram Moolenaar <Bram@vim.org>
parents: 14485
diff changeset
1867 call assert_equal(["cd:", s:dir_foo], s:li)
18568
26a04a556982 patch 8.1.2278: using "cd" with "exe" may fail
Bram Moolenaar <Bram@vim.org>
parents: 18283
diff changeset
1868 call chdir(s:dir_foo)
15184
90ab2d3ce11d patch 8.1.0602: DirChanged is also triggered when directory didn't change
Bram Moolenaar <Bram@vim.org>
parents: 14485
diff changeset
1869 call assert_equal(["cd:", s:dir_foo], s:li)
18568
26a04a556982 patch 8.1.2278: using "cd" with "exe" may fail
Bram Moolenaar <Bram@vim.org>
parents: 18283
diff changeset
1870 exe 'lcd ' .. fnameescape(s:dir_bar)
15184
90ab2d3ce11d patch 8.1.0602: DirChanged is also triggered when directory didn't change
Bram Moolenaar <Bram@vim.org>
parents: 14485
diff changeset
1871 call assert_equal(["cd:", s:dir_foo], s:li)
13170
6559e98f3e74 patch 8.0.1459: cannot handle change of directory
Christian Brabandt <cb@256bit.org>
parents: 13142
diff changeset
1872 call s:After_test_dirchanged()
6559e98f3e74 patch 8.0.1459: cannot handle change of directory
Christian Brabandt <cb@256bit.org>
parents: 13142
diff changeset
1873 endfunc
6559e98f3e74 patch 8.0.1459: cannot handle change of directory
Christian Brabandt <cb@256bit.org>
parents: 13142
diff changeset
1874
6559e98f3e74 patch 8.0.1459: cannot handle change of directory
Christian Brabandt <cb@256bit.org>
parents: 13142
diff changeset
1875 function Test_dirchanged_local()
6559e98f3e74 patch 8.0.1459: cannot handle change of directory
Christian Brabandt <cb@256bit.org>
parents: 13142
diff changeset
1876 call s:Before_test_dirchanged()
6559e98f3e74 patch 8.0.1459: cannot handle change of directory
Christian Brabandt <cb@256bit.org>
parents: 13142
diff changeset
1877 autocmd test_dirchanged DirChanged window call add(s:li, "lcd:")
6559e98f3e74 patch 8.0.1459: cannot handle change of directory
Christian Brabandt <cb@256bit.org>
parents: 13142
diff changeset
1878 autocmd test_dirchanged DirChanged window call add(s:li, expand("<afile>"))
18568
26a04a556982 patch 8.1.2278: using "cd" with "exe" may fail
Bram Moolenaar <Bram@vim.org>
parents: 18283
diff changeset
1879 call chdir(s:dir_foo)
13170
6559e98f3e74 patch 8.0.1459: cannot handle change of directory
Christian Brabandt <cb@256bit.org>
parents: 13142
diff changeset
1880 call assert_equal([], s:li)
18568
26a04a556982 patch 8.1.2278: using "cd" with "exe" may fail
Bram Moolenaar <Bram@vim.org>
parents: 18283
diff changeset
1881 exe 'lcd ' .. fnameescape(s:dir_bar)
15184
90ab2d3ce11d patch 8.1.0602: DirChanged is also triggered when directory didn't change
Bram Moolenaar <Bram@vim.org>
parents: 14485
diff changeset
1882 call assert_equal(["lcd:", s:dir_bar], s:li)
18568
26a04a556982 patch 8.1.2278: using "cd" with "exe" may fail
Bram Moolenaar <Bram@vim.org>
parents: 18283
diff changeset
1883 exe 'lcd ' .. fnameescape(s:dir_bar)
15184
90ab2d3ce11d patch 8.1.0602: DirChanged is also triggered when directory didn't change
Bram Moolenaar <Bram@vim.org>
parents: 14485
diff changeset
1884 call assert_equal(["lcd:", s:dir_bar], s:li)
13170
6559e98f3e74 patch 8.0.1459: cannot handle change of directory
Christian Brabandt <cb@256bit.org>
parents: 13142
diff changeset
1885 call s:After_test_dirchanged()
6559e98f3e74 patch 8.0.1459: cannot handle change of directory
Christian Brabandt <cb@256bit.org>
parents: 13142
diff changeset
1886 endfunc
6559e98f3e74 patch 8.0.1459: cannot handle change of directory
Christian Brabandt <cb@256bit.org>
parents: 13142
diff changeset
1887
6559e98f3e74 patch 8.0.1459: cannot handle change of directory
Christian Brabandt <cb@256bit.org>
parents: 13142
diff changeset
1888 function Test_dirchanged_auto()
21765
08940efa6b4e patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents: 21638
diff changeset
1889 CheckOption autochdir
13170
6559e98f3e74 patch 8.0.1459: cannot handle change of directory
Christian Brabandt <cb@256bit.org>
parents: 13142
diff changeset
1890 call s:Before_test_dirchanged()
6559e98f3e74 patch 8.0.1459: cannot handle change of directory
Christian Brabandt <cb@256bit.org>
parents: 13142
diff changeset
1891 call test_autochdir()
6559e98f3e74 patch 8.0.1459: cannot handle change of directory
Christian Brabandt <cb@256bit.org>
parents: 13142
diff changeset
1892 autocmd test_dirchanged DirChanged auto call add(s:li, "auto:")
6559e98f3e74 patch 8.0.1459: cannot handle change of directory
Christian Brabandt <cb@256bit.org>
parents: 13142
diff changeset
1893 autocmd test_dirchanged DirChanged auto call add(s:li, expand("<afile>"))
6559e98f3e74 patch 8.0.1459: cannot handle change of directory
Christian Brabandt <cb@256bit.org>
parents: 13142
diff changeset
1894 set acd
18568
26a04a556982 patch 8.1.2278: using "cd" with "exe" may fail
Bram Moolenaar <Bram@vim.org>
parents: 18283
diff changeset
1895 cd ..
13170
6559e98f3e74 patch 8.0.1459: cannot handle change of directory
Christian Brabandt <cb@256bit.org>
parents: 13142
diff changeset
1896 call assert_equal([], s:li)
15184
90ab2d3ce11d patch 8.1.0602: DirChanged is also triggered when directory didn't change
Bram Moolenaar <Bram@vim.org>
parents: 14485
diff changeset
1897 exe 'edit ' . s:dir_foo . '/Xfile'
90ab2d3ce11d patch 8.1.0602: DirChanged is also triggered when directory didn't change
Bram Moolenaar <Bram@vim.org>
parents: 14485
diff changeset
1898 call assert_equal(s:dir_foo, getcwd())
90ab2d3ce11d patch 8.1.0602: DirChanged is also triggered when directory didn't change
Bram Moolenaar <Bram@vim.org>
parents: 14485
diff changeset
1899 call assert_equal(["auto:", s:dir_foo], s:li)
13170
6559e98f3e74 patch 8.0.1459: cannot handle change of directory
Christian Brabandt <cb@256bit.org>
parents: 13142
diff changeset
1900 set noacd
6559e98f3e74 patch 8.0.1459: cannot handle change of directory
Christian Brabandt <cb@256bit.org>
parents: 13142
diff changeset
1901 bwipe!
6559e98f3e74 patch 8.0.1459: cannot handle change of directory
Christian Brabandt <cb@256bit.org>
parents: 13142
diff changeset
1902 call s:After_test_dirchanged()
6559e98f3e74 patch 8.0.1459: cannot handle change of directory
Christian Brabandt <cb@256bit.org>
parents: 13142
diff changeset
1903 endfunc
13240
5ed6e4a25925 patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents: 13178
diff changeset
1904
5ed6e4a25925 patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents: 13178
diff changeset
1905 " Test TextChangedI and TextChangedP
5ed6e4a25925 patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents: 13178
diff changeset
1906 func Test_ChangedP()
5ed6e4a25925 patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents: 13178
diff changeset
1907 new
5ed6e4a25925 patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents: 13178
diff changeset
1908 call setline(1, ['foo', 'bar', 'foobar'])
5ed6e4a25925 patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents: 13178
diff changeset
1909 call test_override("char_avail", 1)
5ed6e4a25925 patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents: 13178
diff changeset
1910 set complete=. completeopt=menuone
5ed6e4a25925 patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents: 13178
diff changeset
1911
5ed6e4a25925 patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents: 13178
diff changeset
1912 func! TextChangedAutocmd(char)
5ed6e4a25925 patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents: 13178
diff changeset
1913 let g:autocmd .= a:char
5ed6e4a25925 patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents: 13178
diff changeset
1914 endfunc
5ed6e4a25925 patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents: 13178
diff changeset
1915
5ed6e4a25925 patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents: 13178
diff changeset
1916 au! TextChanged <buffer> :call TextChangedAutocmd('N')
5ed6e4a25925 patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents: 13178
diff changeset
1917 au! TextChangedI <buffer> :call TextChangedAutocmd('I')
5ed6e4a25925 patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents: 13178
diff changeset
1918 au! TextChangedP <buffer> :call TextChangedAutocmd('P')
5ed6e4a25925 patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents: 13178
diff changeset
1919
5ed6e4a25925 patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents: 13178
diff changeset
1920 call cursor(3, 1)
5ed6e4a25925 patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents: 13178
diff changeset
1921 let g:autocmd = ''
5ed6e4a25925 patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents: 13178
diff changeset
1922 call feedkeys("o\<esc>", 'tnix')
5ed6e4a25925 patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents: 13178
diff changeset
1923 call assert_equal('I', g:autocmd)
5ed6e4a25925 patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents: 13178
diff changeset
1924
5ed6e4a25925 patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents: 13178
diff changeset
1925 let g:autocmd = ''
5ed6e4a25925 patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents: 13178
diff changeset
1926 call feedkeys("Sf", 'tnix')
5ed6e4a25925 patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents: 13178
diff changeset
1927 call assert_equal('II', g:autocmd)
5ed6e4a25925 patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents: 13178
diff changeset
1928
5ed6e4a25925 patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents: 13178
diff changeset
1929 let g:autocmd = ''
5ed6e4a25925 patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents: 13178
diff changeset
1930 call feedkeys("Sf\<C-N>", 'tnix')
5ed6e4a25925 patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents: 13178
diff changeset
1931 call assert_equal('IIP', g:autocmd)
5ed6e4a25925 patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents: 13178
diff changeset
1932
5ed6e4a25925 patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents: 13178
diff changeset
1933 let g:autocmd = ''
5ed6e4a25925 patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents: 13178
diff changeset
1934 call feedkeys("Sf\<C-N>\<C-N>", 'tnix')
5ed6e4a25925 patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents: 13178
diff changeset
1935 call assert_equal('IIPP', g:autocmd)
5ed6e4a25925 patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents: 13178
diff changeset
1936
5ed6e4a25925 patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents: 13178
diff changeset
1937 let g:autocmd = ''
5ed6e4a25925 patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents: 13178
diff changeset
1938 call feedkeys("Sf\<C-N>\<C-N>\<C-N>", 'tnix')
5ed6e4a25925 patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents: 13178
diff changeset
1939 call assert_equal('IIPPP', g:autocmd)
5ed6e4a25925 patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents: 13178
diff changeset
1940
5ed6e4a25925 patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents: 13178
diff changeset
1941 let g:autocmd = ''
5ed6e4a25925 patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents: 13178
diff changeset
1942 call feedkeys("Sf\<C-N>\<C-N>\<C-N>\<C-N>", 'tnix')
5ed6e4a25925 patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents: 13178
diff changeset
1943 call assert_equal('IIPPPP', g:autocmd)
5ed6e4a25925 patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents: 13178
diff changeset
1944
5ed6e4a25925 patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents: 13178
diff changeset
1945 call assert_equal(['foo', 'bar', 'foobar', 'foo'], getline(1, '$'))
5ed6e4a25925 patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents: 13178
diff changeset
1946 " TODO: how should it handle completeopt=noinsert,noselect?
5ed6e4a25925 patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents: 13178
diff changeset
1947
5ed6e4a25925 patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents: 13178
diff changeset
1948 " CleanUp
5ed6e4a25925 patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents: 13178
diff changeset
1949 call test_override("char_avail", 0)
5ed6e4a25925 patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents: 13178
diff changeset
1950 au! TextChanged
5ed6e4a25925 patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents: 13178
diff changeset
1951 au! TextChangedI
5ed6e4a25925 patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents: 13178
diff changeset
1952 au! TextChangedP
5ed6e4a25925 patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents: 13178
diff changeset
1953 delfu TextChangedAutocmd
5ed6e4a25925 patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents: 13178
diff changeset
1954 unlet! g:autocmd
5ed6e4a25925 patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents: 13178
diff changeset
1955 set complete&vim completeopt&vim
5ed6e4a25925 patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents: 13178
diff changeset
1956
5ed6e4a25925 patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents: 13178
diff changeset
1957 bw!
5ed6e4a25925 patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents: 13178
diff changeset
1958 endfunc
13519
4a44c90dd671 patch 8.0.1633: a TextChanged autocmd triggers when it is defined
Christian Brabandt <cb@256bit.org>
parents: 13240
diff changeset
1959
14463
3b87daa5c37a patch 8.1.0245: calling setline() in TextChangedI autocmd breaks undo
Christian Brabandt <cb@256bit.org>
parents: 13798
diff changeset
1960 let g:setline_handled = v:false
15406
63b02fcf1361 patch 8.1.0711: test files still use function!
Bram Moolenaar <Bram@vim.org>
parents: 15207
diff changeset
1961 func SetLineOne()
14463
3b87daa5c37a patch 8.1.0245: calling setline() in TextChangedI autocmd breaks undo
Christian Brabandt <cb@256bit.org>
parents: 13798
diff changeset
1962 if !g:setline_handled
3b87daa5c37a patch 8.1.0245: calling setline() in TextChangedI autocmd breaks undo
Christian Brabandt <cb@256bit.org>
parents: 13798
diff changeset
1963 call setline(1, "(x)")
3b87daa5c37a patch 8.1.0245: calling setline() in TextChangedI autocmd breaks undo
Christian Brabandt <cb@256bit.org>
parents: 13798
diff changeset
1964 let g:setline_handled = v:true
3b87daa5c37a patch 8.1.0245: calling setline() in TextChangedI autocmd breaks undo
Christian Brabandt <cb@256bit.org>
parents: 13798
diff changeset
1965 endif
3b87daa5c37a patch 8.1.0245: calling setline() in TextChangedI autocmd breaks undo
Christian Brabandt <cb@256bit.org>
parents: 13798
diff changeset
1966 endfunc
3b87daa5c37a patch 8.1.0245: calling setline() in TextChangedI autocmd breaks undo
Christian Brabandt <cb@256bit.org>
parents: 13798
diff changeset
1967
3b87daa5c37a patch 8.1.0245: calling setline() in TextChangedI autocmd breaks undo
Christian Brabandt <cb@256bit.org>
parents: 13798
diff changeset
1968 func Test_TextChangedI_with_setline()
3b87daa5c37a patch 8.1.0245: calling setline() in TextChangedI autocmd breaks undo
Christian Brabandt <cb@256bit.org>
parents: 13798
diff changeset
1969 new
3b87daa5c37a patch 8.1.0245: calling setline() in TextChangedI autocmd breaks undo
Christian Brabandt <cb@256bit.org>
parents: 13798
diff changeset
1970 call test_override('char_avail', 1)
3b87daa5c37a patch 8.1.0245: calling setline() in TextChangedI autocmd breaks undo
Christian Brabandt <cb@256bit.org>
parents: 13798
diff changeset
1971 autocmd TextChangedI <buffer> call SetLineOne()
3b87daa5c37a patch 8.1.0245: calling setline() in TextChangedI autocmd breaks undo
Christian Brabandt <cb@256bit.org>
parents: 13798
diff changeset
1972 call feedkeys("i(\<CR>\<Esc>", 'tx')
3b87daa5c37a patch 8.1.0245: calling setline() in TextChangedI autocmd breaks undo
Christian Brabandt <cb@256bit.org>
parents: 13798
diff changeset
1973 call assert_equal('(', getline(1))
3b87daa5c37a patch 8.1.0245: calling setline() in TextChangedI autocmd breaks undo
Christian Brabandt <cb@256bit.org>
parents: 13798
diff changeset
1974 call assert_equal('x)', getline(2))
3b87daa5c37a patch 8.1.0245: calling setline() in TextChangedI autocmd breaks undo
Christian Brabandt <cb@256bit.org>
parents: 13798
diff changeset
1975 undo
14485
c71d65c3672f patch 8.1.0256: using setline() in TextChangedI splits undo
Christian Brabandt <cb@256bit.org>
parents: 14463
diff changeset
1976 call assert_equal('', getline(1))
14463
3b87daa5c37a patch 8.1.0245: calling setline() in TextChangedI autocmd breaks undo
Christian Brabandt <cb@256bit.org>
parents: 13798
diff changeset
1977 call assert_equal('', getline(2))
3b87daa5c37a patch 8.1.0245: calling setline() in TextChangedI autocmd breaks undo
Christian Brabandt <cb@256bit.org>
parents: 13798
diff changeset
1978
3b87daa5c37a patch 8.1.0245: calling setline() in TextChangedI autocmd breaks undo
Christian Brabandt <cb@256bit.org>
parents: 13798
diff changeset
1979 call test_override('starting', 0)
3b87daa5c37a patch 8.1.0245: calling setline() in TextChangedI autocmd breaks undo
Christian Brabandt <cb@256bit.org>
parents: 13798
diff changeset
1980 bwipe!
3b87daa5c37a patch 8.1.0245: calling setline() in TextChangedI autocmd breaks undo
Christian Brabandt <cb@256bit.org>
parents: 13798
diff changeset
1981 endfunc
3b87daa5c37a patch 8.1.0245: calling setline() in TextChangedI autocmd breaks undo
Christian Brabandt <cb@256bit.org>
parents: 13798
diff changeset
1982
13519
4a44c90dd671 patch 8.0.1633: a TextChanged autocmd triggers when it is defined
Christian Brabandt <cb@256bit.org>
parents: 13240
diff changeset
1983 func Test_Changed_FirstTime()
17657
0da9bc55c31a patch 8.1.1826: tests use hand coded feature and option checks
Bram Moolenaar <Bram@vim.org>
parents: 17093
diff changeset
1984 CheckFeature terminal
0da9bc55c31a patch 8.1.1826: tests use hand coded feature and option checks
Bram Moolenaar <Bram@vim.org>
parents: 17093
diff changeset
1985 CheckNotGui
19687
c3f506e24eab patch 8.2.0400: not all tests using a terminal are in the list of flaky tests
Bram Moolenaar <Bram@vim.org>
parents: 19651
diff changeset
1986 " Starting a terminal to run Vim is always considered flaky.
19691
60b5abfc4897 patch 8.2.0402: setting local instead of global flag
Bram Moolenaar <Bram@vim.org>
parents: 19687
diff changeset
1987 let g:test_is_flaky = 1
17657
0da9bc55c31a patch 8.1.1826: tests use hand coded feature and option checks
Bram Moolenaar <Bram@vim.org>
parents: 17093
diff changeset
1988
13519
4a44c90dd671 patch 8.0.1633: a TextChanged autocmd triggers when it is defined
Christian Brabandt <cb@256bit.org>
parents: 13240
diff changeset
1989 " Prepare file for TextChanged event.
4a44c90dd671 patch 8.0.1633: a TextChanged autocmd triggers when it is defined
Christian Brabandt <cb@256bit.org>
parents: 13240
diff changeset
1990 call writefile([''], 'Xchanged.txt')
4a44c90dd671 patch 8.0.1633: a TextChanged autocmd triggers when it is defined
Christian Brabandt <cb@256bit.org>
parents: 13240
diff changeset
1991 let buf = term_start([GetVimProg(), '--clean', '-c', 'set noswapfile'], {'term_rows': 3})
4a44c90dd671 patch 8.0.1633: a TextChanged autocmd triggers when it is defined
Christian Brabandt <cb@256bit.org>
parents: 13240
diff changeset
1992 call assert_equal('running', term_getstatus(buf))
13559
af68603e213d patch 8.0.1653: screen dump is made too soon
Christian Brabandt <cb@256bit.org>
parents: 13519
diff changeset
1993 " Wait for the ruler (in the status line) to be shown.
15725
a3e2e7948ee4 patch 8.1.0870: Vim doesn't use the new ConPTY support in Windows 10
Bram Moolenaar <Bram@vim.org>
parents: 15687
diff changeset
1994 " In ConPTY, there is additional character which is drawn up to the width of
a3e2e7948ee4 patch 8.1.0870: Vim doesn't use the new ConPTY support in Windows 10
Bram Moolenaar <Bram@vim.org>
parents: 15687
diff changeset
1995 " the screen.
a3e2e7948ee4 patch 8.1.0870: Vim doesn't use the new ConPTY support in Windows 10
Bram Moolenaar <Bram@vim.org>
parents: 15687
diff changeset
1996 if has('conpty')
a3e2e7948ee4 patch 8.1.0870: Vim doesn't use the new ConPTY support in Windows 10
Bram Moolenaar <Bram@vim.org>
parents: 15687
diff changeset
1997 call WaitForAssert({-> assert_match('\<All.*$', term_getline(buf, 3))})
a3e2e7948ee4 patch 8.1.0870: Vim doesn't use the new ConPTY support in Windows 10
Bram Moolenaar <Bram@vim.org>
parents: 15687
diff changeset
1998 else
a3e2e7948ee4 patch 8.1.0870: Vim doesn't use the new ConPTY support in Windows 10
Bram Moolenaar <Bram@vim.org>
parents: 15687
diff changeset
1999 call WaitForAssert({-> assert_match('\<All$', term_getline(buf, 3))})
a3e2e7948ee4 patch 8.1.0870: Vim doesn't use the new ConPTY support in Windows 10
Bram Moolenaar <Bram@vim.org>
parents: 15687
diff changeset
2000 endif
13519
4a44c90dd671 patch 8.0.1633: a TextChanged autocmd triggers when it is defined
Christian Brabandt <cb@256bit.org>
parents: 13240
diff changeset
2001 " It's only adding autocmd, so that no event occurs.
4a44c90dd671 patch 8.0.1633: a TextChanged autocmd triggers when it is defined
Christian Brabandt <cb@256bit.org>
parents: 13240
diff changeset
2002 call term_sendkeys(buf, ":au! TextChanged <buffer> call writefile(['No'], 'Xchanged.txt')\<cr>")
4a44c90dd671 patch 8.0.1633: a TextChanged autocmd triggers when it is defined
Christian Brabandt <cb@256bit.org>
parents: 13240
diff changeset
2003 call term_sendkeys(buf, "\<C-\\>\<C-N>:qa!\<cr>")
13798
415185e2c970 patch 8.0.1771: in tests, when WaitFor() fails it doesn't say why
Christian Brabandt <cb@256bit.org>
parents: 13752
diff changeset
2004 call WaitForAssert({-> assert_equal('finished', term_getstatus(buf))})
13519
4a44c90dd671 patch 8.0.1633: a TextChanged autocmd triggers when it is defined
Christian Brabandt <cb@256bit.org>
parents: 13240
diff changeset
2005 call assert_equal([''], readfile('Xchanged.txt'))
4a44c90dd671 patch 8.0.1633: a TextChanged autocmd triggers when it is defined
Christian Brabandt <cb@256bit.org>
parents: 13240
diff changeset
2006
4a44c90dd671 patch 8.0.1633: a TextChanged autocmd triggers when it is defined
Christian Brabandt <cb@256bit.org>
parents: 13240
diff changeset
2007 " clean up
4a44c90dd671 patch 8.0.1633: a TextChanged autocmd triggers when it is defined
Christian Brabandt <cb@256bit.org>
parents: 13240
diff changeset
2008 call delete('Xchanged.txt')
4a44c90dd671 patch 8.0.1633: a TextChanged autocmd triggers when it is defined
Christian Brabandt <cb@256bit.org>
parents: 13240
diff changeset
2009 bwipe!
4a44c90dd671 patch 8.0.1633: a TextChanged autocmd triggers when it is defined
Christian Brabandt <cb@256bit.org>
parents: 13240
diff changeset
2010 endfunc
15611
bfcd7ffe9ac2 patch 8.1.0813: FileChangedShell not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents: 15406
diff changeset
2011
16217
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2012 func Test_autocmd_nested()
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2013 let g:did_nested = 0
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2014 augroup Testing
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2015 au WinNew * edit somefile
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2016 au BufNew * let g:did_nested = 1
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2017 augroup END
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2018 split
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2019 call assert_equal(0, g:did_nested)
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2020 close
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2021 bwipe! somefile
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2022
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2023 " old nested argument still works
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2024 augroup Testing
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2025 au!
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2026 au WinNew * nested edit somefile
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2027 au BufNew * let g:did_nested = 1
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2028 augroup END
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2029 split
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2030 call assert_equal(1, g:did_nested)
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2031 close
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2032 bwipe! somefile
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2033
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2034 " New ++nested argument works
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2035 augroup Testing
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2036 au!
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2037 au WinNew * ++nested edit somefile
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2038 au BufNew * let g:did_nested = 1
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2039 augroup END
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2040 split
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2041 call assert_equal(1, g:did_nested)
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2042 close
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2043 bwipe! somefile
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2044
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2045 augroup Testing
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2046 au!
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2047 augroup END
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2048
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2049 call assert_fails('au WinNew * ++nested ++nested echo bad', 'E983:')
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2050 call assert_fails('au WinNew * nested nested echo bad', 'E983:')
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2051 endfunc
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2052
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2053 func Test_autocmd_once()
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2054 " Without ++once WinNew triggers twice
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2055 let g:did_split = 0
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2056 augroup Testing
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2057 au WinNew * let g:did_split += 1
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2058 augroup END
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2059 split
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2060 split
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2061 call assert_equal(2, g:did_split)
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2062 call assert_true(exists('#WinNew'))
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2063 close
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2064 close
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2065
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2066 " With ++once WinNew triggers once
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2067 let g:did_split = 0
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2068 augroup Testing
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2069 au!
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2070 au WinNew * ++once let g:did_split += 1
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2071 augroup END
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2072 split
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2073 split
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2074 call assert_equal(1, g:did_split)
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2075 call assert_false(exists('#WinNew'))
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2076 close
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2077 close
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2078
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2079 call assert_fails('au WinNew * ++once ++once echo bad', 'E983:')
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2080 endfunc
81e6940504e8 patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
2081
16401
3b2db762a509 patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents: 16397
diff changeset
2082 func Test_autocmd_bufreadpre()
3b2db762a509 patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents: 16397
diff changeset
2083 new
3b2db762a509 patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents: 16397
diff changeset
2084 let b:bufreadpre = 1
19752
0927df746554 patch 8.2.0432: a few tests fail in a huge terminal
Bram Moolenaar <Bram@vim.org>
parents: 19699
diff changeset
2085 call append(0, range(1000))
16401
3b2db762a509 patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents: 16397
diff changeset
2086 w! XAutocmdBufReadPre.txt
3b2db762a509 patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents: 16397
diff changeset
2087 autocmd BufReadPre <buffer> :let b:bufreadpre += 1
19752
0927df746554 patch 8.2.0432: a few tests fail in a huge terminal
Bram Moolenaar <Bram@vim.org>
parents: 19699
diff changeset
2088 norm! 500gg
16401
3b2db762a509 patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents: 16397
diff changeset
2089 sp
19752
0927df746554 patch 8.2.0432: a few tests fail in a huge terminal
Bram Moolenaar <Bram@vim.org>
parents: 19699
diff changeset
2090 norm! 1000gg
16401
3b2db762a509 patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents: 16397
diff changeset
2091 wincmd p
3b2db762a509 patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents: 16397
diff changeset
2092 let g:wsv1 = winsaveview()
3b2db762a509 patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents: 16397
diff changeset
2093 wincmd p
3b2db762a509 patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents: 16397
diff changeset
2094 let g:wsv2 = winsaveview()
3b2db762a509 patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents: 16397
diff changeset
2095 " triggers BufReadPre, should not move the cursor in either window
3b2db762a509 patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents: 16397
diff changeset
2096 " The topline may change one line in a large window.
3b2db762a509 patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents: 16397
diff changeset
2097 edit
3b2db762a509 patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents: 16397
diff changeset
2098 call assert_inrange(g:wsv2.topline - 1, g:wsv2.topline + 1, winsaveview().topline)
3b2db762a509 patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents: 16397
diff changeset
2099 call assert_equal(g:wsv2.lnum, winsaveview().lnum)
3b2db762a509 patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents: 16397
diff changeset
2100 call assert_equal(2, b:bufreadpre)
3b2db762a509 patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents: 16397
diff changeset
2101 wincmd p
3b2db762a509 patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents: 16397
diff changeset
2102 call assert_equal(g:wsv1.topline, winsaveview().topline)
3b2db762a509 patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents: 16397
diff changeset
2103 call assert_equal(g:wsv1.lnum, winsaveview().lnum)
3b2db762a509 patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents: 16397
diff changeset
2104 call assert_equal(2, b:bufreadpre)
3b2db762a509 patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents: 16397
diff changeset
2105 " Now set the cursor position in an BufReadPre autocommand
3b2db762a509 patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents: 16397
diff changeset
2106 " (even though the position will be invalid, this should make Vim reset the
3b2db762a509 patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents: 16397
diff changeset
2107 " cursor position in the other window.
3b2db762a509 patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents: 16397
diff changeset
2108 wincmd p
3b2db762a509 patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents: 16397
diff changeset
2109 set cpo+=g
3b2db762a509 patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents: 16397
diff changeset
2110 " won't do anything, but try to set the cursor on an invalid lnum
3b2db762a509 patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents: 16397
diff changeset
2111 autocmd BufReadPre <buffer> :norm! 70gg
3b2db762a509 patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents: 16397
diff changeset
2112 " triggers BufReadPre, should not move the cursor in either window
3b2db762a509 patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents: 16397
diff changeset
2113 e
3b2db762a509 patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents: 16397
diff changeset
2114 call assert_equal(1, winsaveview().topline)
3b2db762a509 patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents: 16397
diff changeset
2115 call assert_equal(1, winsaveview().lnum)
3b2db762a509 patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents: 16397
diff changeset
2116 call assert_equal(3, b:bufreadpre)
3b2db762a509 patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents: 16397
diff changeset
2117 wincmd p
3b2db762a509 patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents: 16397
diff changeset
2118 call assert_equal(g:wsv1.topline, winsaveview().topline)
3b2db762a509 patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents: 16397
diff changeset
2119 call assert_equal(g:wsv1.lnum, winsaveview().lnum)
3b2db762a509 patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents: 16397
diff changeset
2120 call assert_equal(3, b:bufreadpre)
3b2db762a509 patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents: 16397
diff changeset
2121 close
3b2db762a509 patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents: 16397
diff changeset
2122 close
3b2db762a509 patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents: 16397
diff changeset
2123 call delete('XAutocmdBufReadPre.txt')
3b2db762a509 patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents: 16397
diff changeset
2124 set cpo-=g
3b2db762a509 patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents: 16397
diff changeset
2125 endfunc
3b2db762a509 patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
Bram Moolenaar <Bram@vim.org>
parents: 16397
diff changeset
2126
15615
536fca2cee19 patch 8.1.0815: dialog for file changed outside of Vim not tested
Bram Moolenaar <Bram@vim.org>
parents: 15611
diff changeset
2127 " FileChangedShell tested in test_filechanged.vim
16397
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2128
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2129 " Tests for the following autocommands:
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2130 " - FileWritePre writing a compressed file
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2131 " - FileReadPost reading a compressed file
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2132 " - BufNewFile reading a file template
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2133 " - BufReadPre decompressing the file to be read
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2134 " - FilterReadPre substituting characters in the temp file
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2135 " - FilterReadPost substituting characters after filtering
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2136 " - FileReadPre set options for decompression
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2137 " - FileReadPost decompress the file
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2138 func Test_ReadWrite_Autocmds()
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2139 " Run this test only on Unix-like systems and if gzip is available
21765
08940efa6b4e patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents: 21638
diff changeset
2140 CheckUnix
08940efa6b4e patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents: 21638
diff changeset
2141 CheckExecutable gzip
16397
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2142
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2143 " Make $GZIP empty, "-v" would cause trouble.
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2144 let $GZIP = ""
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2145
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2146 " Use a FileChangedShell autocommand to avoid a prompt for 'Xtestfile.gz'
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2147 " being modified outside of Vim (noticed on Solaris).
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2148 au FileChangedShell * echo 'caught FileChangedShell'
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2149
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2150 " Test for the FileReadPost, FileWritePre and FileWritePost autocmds
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2151 augroup Test1
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2152 au!
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2153 au FileWritePre *.gz '[,']!gzip
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2154 au FileWritePost *.gz undo
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2155 au FileReadPost *.gz '[,']!gzip -d
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2156 augroup END
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2157
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2158 new
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2159 set bin
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2160 call append(0, [
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2161 \ 'line 2 Abcdefghijklmnopqrstuvwxyz',
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2162 \ 'line 3 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2163 \ 'line 4 Abcdefghijklmnopqrstuvwxyz',
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2164 \ 'line 5 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2165 \ 'line 6 Abcdefghijklmnopqrstuvwxyz',
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2166 \ 'line 7 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2167 \ 'line 8 Abcdefghijklmnopqrstuvwxyz',
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2168 \ 'line 9 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2169 \ 'line 10 Abcdefghijklmnopqrstuvwxyz'
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2170 \ ])
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2171 1,9write! Xtestfile.gz
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2172 enew! | close
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2173
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2174 new
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2175 " Read and decompress the testfile
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2176 0read Xtestfile.gz
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2177 call assert_equal([
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2178 \ 'line 2 Abcdefghijklmnopqrstuvwxyz',
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2179 \ 'line 3 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2180 \ 'line 4 Abcdefghijklmnopqrstuvwxyz',
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2181 \ 'line 5 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2182 \ 'line 6 Abcdefghijklmnopqrstuvwxyz',
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2183 \ 'line 7 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2184 \ 'line 8 Abcdefghijklmnopqrstuvwxyz',
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2185 \ 'line 9 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2186 \ 'line 10 Abcdefghijklmnopqrstuvwxyz'
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2187 \ ], getline(1, 9))
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2188 enew! | close
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2189
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2190 augroup Test1
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2191 au!
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2192 augroup END
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2193
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2194 " Test for the FileAppendPre and FileAppendPost autocmds
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2195 augroup Test2
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2196 au!
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2197 au BufNewFile *.c read Xtest.c
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2198 au FileAppendPre *.out '[,']s/new/NEW/
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2199 au FileAppendPost *.out !cat Xtest.c >> test.out
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2200 augroup END
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2201
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2202 call writefile(['/*', ' * Here is a new .c file', ' */'], 'Xtest.c')
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2203 new foo.c " should load Xtest.c
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2204 call assert_equal(['/*', ' * Here is a new .c file', ' */'], getline(2, 4))
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2205 w! >> test.out " append it to the output file
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2206
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2207 let contents = readfile('test.out')
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2208 call assert_equal(' * Here is a NEW .c file', contents[2])
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2209 call assert_equal(' * Here is a new .c file', contents[5])
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2210
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2211 call delete('test.out')
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2212 enew! | close
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2213 augroup Test2
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2214 au!
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2215 augroup END
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2216
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2217 " Test for the BufReadPre and BufReadPost autocmds
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2218 augroup Test3
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2219 au!
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2220 " setup autocommands to decompress before reading and re-compress
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2221 " afterwards
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2222 au BufReadPre *.gz exe '!gzip -d ' . shellescape(expand("<afile>"))
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2223 au BufReadPre *.gz call rename(expand("<afile>:r"), expand("<afile>"))
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2224 au BufReadPost *.gz call rename(expand("<afile>"), expand("<afile>:r"))
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2225 au BufReadPost *.gz exe '!gzip ' . shellescape(expand("<afile>:r"))
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2226 augroup END
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2227
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2228 e! Xtestfile.gz " Edit compressed file
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2229 call assert_equal([
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2230 \ 'line 2 Abcdefghijklmnopqrstuvwxyz',
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2231 \ 'line 3 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2232 \ 'line 4 Abcdefghijklmnopqrstuvwxyz',
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2233 \ 'line 5 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2234 \ 'line 6 Abcdefghijklmnopqrstuvwxyz',
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2235 \ 'line 7 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2236 \ 'line 8 Abcdefghijklmnopqrstuvwxyz',
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2237 \ 'line 9 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2238 \ 'line 10 Abcdefghijklmnopqrstuvwxyz'
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2239 \ ], getline(1, 9))
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2240
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2241 w! >> test.out " Append it to the output file
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2242
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2243 augroup Test3
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2244 au!
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2245 augroup END
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2246
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2247 " Test for the FilterReadPre and FilterReadPost autocmds.
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2248 set shelltemp " need temp files here
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2249 augroup Test4
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2250 au!
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2251 au FilterReadPre *.out call rename(expand("<afile>"), expand("<afile>") . ".t")
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2252 au FilterReadPre *.out exe 'silent !sed s/e/E/ ' . shellescape(expand("<afile>")) . ".t >" . shellescape(expand("<afile>"))
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2253 au FilterReadPre *.out exe 'silent !rm ' . shellescape(expand("<afile>")) . '.t'
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2254 au FilterReadPost *.out '[,']s/x/X/g
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2255 augroup END
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2256
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2257 e! test.out " Edit the output file
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2258 1,$!cat
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2259 call assert_equal([
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2260 \ 'linE 2 AbcdefghijklmnopqrstuvwXyz',
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2261 \ 'linE 3 XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX',
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2262 \ 'linE 4 AbcdefghijklmnopqrstuvwXyz',
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2263 \ 'linE 5 XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX',
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2264 \ 'linE 6 AbcdefghijklmnopqrstuvwXyz',
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2265 \ 'linE 7 XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX',
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2266 \ 'linE 8 AbcdefghijklmnopqrstuvwXyz',
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2267 \ 'linE 9 XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX',
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2268 \ 'linE 10 AbcdefghijklmnopqrstuvwXyz'
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2269 \ ], getline(1, 9))
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2270 call assert_equal([
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2271 \ 'line 2 Abcdefghijklmnopqrstuvwxyz',
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2272 \ 'line 3 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2273 \ 'line 4 Abcdefghijklmnopqrstuvwxyz',
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2274 \ 'line 5 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2275 \ 'line 6 Abcdefghijklmnopqrstuvwxyz',
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2276 \ 'line 7 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2277 \ 'line 8 Abcdefghijklmnopqrstuvwxyz',
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2278 \ 'line 9 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2279 \ 'line 10 Abcdefghijklmnopqrstuvwxyz'
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2280 \ ], readfile('test.out'))
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2281
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2282 augroup Test4
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2283 au!
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2284 augroup END
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2285 set shelltemp&vim
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2286
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2287 " Test for the FileReadPre and FileReadPost autocmds.
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2288 augroup Test5
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2289 au!
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2290 au FileReadPre *.gz exe 'silent !gzip -d ' . shellescape(expand("<afile>"))
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2291 au FileReadPre *.gz call rename(expand("<afile>:r"), expand("<afile>"))
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2292 au FileReadPost *.gz '[,']s/l/L/
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2293 augroup END
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2294
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2295 new
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2296 0r Xtestfile.gz " Read compressed file
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2297 call assert_equal([
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2298 \ 'Line 2 Abcdefghijklmnopqrstuvwxyz',
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2299 \ 'Line 3 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2300 \ 'Line 4 Abcdefghijklmnopqrstuvwxyz',
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2301 \ 'Line 5 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2302 \ 'Line 6 Abcdefghijklmnopqrstuvwxyz',
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2303 \ 'Line 7 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2304 \ 'Line 8 Abcdefghijklmnopqrstuvwxyz',
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2305 \ 'Line 9 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2306 \ 'Line 10 Abcdefghijklmnopqrstuvwxyz'
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2307 \ ], getline(1, 9))
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2308 call assert_equal([
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2309 \ 'line 2 Abcdefghijklmnopqrstuvwxyz',
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2310 \ 'line 3 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2311 \ 'line 4 Abcdefghijklmnopqrstuvwxyz',
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2312 \ 'line 5 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2313 \ 'line 6 Abcdefghijklmnopqrstuvwxyz',
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2314 \ 'line 7 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2315 \ 'line 8 Abcdefghijklmnopqrstuvwxyz',
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2316 \ 'line 9 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2317 \ 'line 10 Abcdefghijklmnopqrstuvwxyz'
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2318 \ ], readfile('Xtestfile.gz'))
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2319
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2320 augroup Test5
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2321 au!
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2322 augroup END
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2323
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2324 au! FileChangedShell
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2325 call delete('Xtestfile.gz')
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2326 call delete('Xtest.c')
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2327 call delete('test.out')
7a942d92980d patch 8.1.1203: some autocmd tests are old style
Bram Moolenaar <Bram@vim.org>
parents: 16217
diff changeset
2328 endfunc
16617
24233eeaadd0 patch 8.1.1311: aborting an autocmd with an exception is not tested
Bram Moolenaar <Bram@vim.org>
parents: 16401
diff changeset
2329
24233eeaadd0 patch 8.1.1311: aborting an autocmd with an exception is not tested
Bram Moolenaar <Bram@vim.org>
parents: 16401
diff changeset
2330 func Test_throw_in_BufWritePre()
24233eeaadd0 patch 8.1.1311: aborting an autocmd with an exception is not tested
Bram Moolenaar <Bram@vim.org>
parents: 16401
diff changeset
2331 new
24233eeaadd0 patch 8.1.1311: aborting an autocmd with an exception is not tested
Bram Moolenaar <Bram@vim.org>
parents: 16401
diff changeset
2332 call setline(1, ['one', 'two', 'three'])
24233eeaadd0 patch 8.1.1311: aborting an autocmd with an exception is not tested
Bram Moolenaar <Bram@vim.org>
parents: 16401
diff changeset
2333 call assert_false(filereadable('Xthefile'))
24233eeaadd0 patch 8.1.1311: aborting an autocmd with an exception is not tested
Bram Moolenaar <Bram@vim.org>
parents: 16401
diff changeset
2334 augroup throwing
24233eeaadd0 patch 8.1.1311: aborting an autocmd with an exception is not tested
Bram Moolenaar <Bram@vim.org>
parents: 16401
diff changeset
2335 au BufWritePre X* throw 'do not write'
24233eeaadd0 patch 8.1.1311: aborting an autocmd with an exception is not tested
Bram Moolenaar <Bram@vim.org>
parents: 16401
diff changeset
2336 augroup END
24233eeaadd0 patch 8.1.1311: aborting an autocmd with an exception is not tested
Bram Moolenaar <Bram@vim.org>
parents: 16401
diff changeset
2337 try
24233eeaadd0 patch 8.1.1311: aborting an autocmd with an exception is not tested
Bram Moolenaar <Bram@vim.org>
parents: 16401
diff changeset
2338 w Xthefile
24233eeaadd0 patch 8.1.1311: aborting an autocmd with an exception is not tested
Bram Moolenaar <Bram@vim.org>
parents: 16401
diff changeset
2339 catch
24233eeaadd0 patch 8.1.1311: aborting an autocmd with an exception is not tested
Bram Moolenaar <Bram@vim.org>
parents: 16401
diff changeset
2340 let caught = 1
24233eeaadd0 patch 8.1.1311: aborting an autocmd with an exception is not tested
Bram Moolenaar <Bram@vim.org>
parents: 16401
diff changeset
2341 endtry
24233eeaadd0 patch 8.1.1311: aborting an autocmd with an exception is not tested
Bram Moolenaar <Bram@vim.org>
parents: 16401
diff changeset
2342 call assert_equal(1, caught)
24233eeaadd0 patch 8.1.1311: aborting an autocmd with an exception is not tested
Bram Moolenaar <Bram@vim.org>
parents: 16401
diff changeset
2343 call assert_false(filereadable('Xthefile'))
24233eeaadd0 patch 8.1.1311: aborting an autocmd with an exception is not tested
Bram Moolenaar <Bram@vim.org>
parents: 16401
diff changeset
2344
24233eeaadd0 patch 8.1.1311: aborting an autocmd with an exception is not tested
Bram Moolenaar <Bram@vim.org>
parents: 16401
diff changeset
2345 bwipe!
24233eeaadd0 patch 8.1.1311: aborting an autocmd with an exception is not tested
Bram Moolenaar <Bram@vim.org>
parents: 16401
diff changeset
2346 au! throwing
24233eeaadd0 patch 8.1.1311: aborting an autocmd with an exception is not tested
Bram Moolenaar <Bram@vim.org>
parents: 16401
diff changeset
2347 endfunc
18144
95719bfeced2 patch 8.1.2067: no tests for SafeState and SafeStateAgain
Bram Moolenaar <Bram@vim.org>
parents: 17918
diff changeset
2348
95719bfeced2 patch 8.1.2067: no tests for SafeState and SafeStateAgain
Bram Moolenaar <Bram@vim.org>
parents: 17918
diff changeset
2349 func Test_autocmd_SafeState()
95719bfeced2 patch 8.1.2067: no tests for SafeState and SafeStateAgain
Bram Moolenaar <Bram@vim.org>
parents: 17918
diff changeset
2350 CheckRunVimInTerminal
95719bfeced2 patch 8.1.2067: no tests for SafeState and SafeStateAgain
Bram Moolenaar <Bram@vim.org>
parents: 17918
diff changeset
2351
95719bfeced2 patch 8.1.2067: no tests for SafeState and SafeStateAgain
Bram Moolenaar <Bram@vim.org>
parents: 17918
diff changeset
2352 let lines =<< trim END
95719bfeced2 patch 8.1.2067: no tests for SafeState and SafeStateAgain
Bram Moolenaar <Bram@vim.org>
parents: 17918
diff changeset
2353 let g:safe = 0
95719bfeced2 patch 8.1.2067: no tests for SafeState and SafeStateAgain
Bram Moolenaar <Bram@vim.org>
parents: 17918
diff changeset
2354 let g:again = ''
95719bfeced2 patch 8.1.2067: no tests for SafeState and SafeStateAgain
Bram Moolenaar <Bram@vim.org>
parents: 17918
diff changeset
2355 au SafeState * let g:safe += 1
95719bfeced2 patch 8.1.2067: no tests for SafeState and SafeStateAgain
Bram Moolenaar <Bram@vim.org>
parents: 17918
diff changeset
2356 au SafeStateAgain * let g:again ..= 'x'
95719bfeced2 patch 8.1.2067: no tests for SafeState and SafeStateAgain
Bram Moolenaar <Bram@vim.org>
parents: 17918
diff changeset
2357 func CallTimer()
95719bfeced2 patch 8.1.2067: no tests for SafeState and SafeStateAgain
Bram Moolenaar <Bram@vim.org>
parents: 17918
diff changeset
2358 call timer_start(10, {id -> execute('let g:again ..= "t"')})
95719bfeced2 patch 8.1.2067: no tests for SafeState and SafeStateAgain
Bram Moolenaar <Bram@vim.org>
parents: 17918
diff changeset
2359 endfunc
95719bfeced2 patch 8.1.2067: no tests for SafeState and SafeStateAgain
Bram Moolenaar <Bram@vim.org>
parents: 17918
diff changeset
2360 END
95719bfeced2 patch 8.1.2067: no tests for SafeState and SafeStateAgain
Bram Moolenaar <Bram@vim.org>
parents: 17918
diff changeset
2361 call writefile(lines, 'XSafeState')
95719bfeced2 patch 8.1.2067: no tests for SafeState and SafeStateAgain
Bram Moolenaar <Bram@vim.org>
parents: 17918
diff changeset
2362 let buf = RunVimInTerminal('-S XSafeState', #{rows: 6})
95719bfeced2 patch 8.1.2067: no tests for SafeState and SafeStateAgain
Bram Moolenaar <Bram@vim.org>
parents: 17918
diff changeset
2363
23229
b545334ae654 patch 8.2.2160: various typos
Bram Moolenaar <Bram@vim.org>
parents: 23027
diff changeset
2364 " Sometimes we loop to handle a K_IGNORE, SafeState may be triggered once or
19505
e7eec9cae0ea patch 8.2.0310: autocmd test fails on a slow system
Bram Moolenaar <Bram@vim.org>
parents: 19491
diff changeset
2365 " more often.
18144
95719bfeced2 patch 8.1.2067: no tests for SafeState and SafeStateAgain
Bram Moolenaar <Bram@vim.org>
parents: 17918
diff changeset
2366 call term_sendkeys(buf, ":echo g:safe\<CR>")
19505
e7eec9cae0ea patch 8.2.0310: autocmd test fails on a slow system
Bram Moolenaar <Bram@vim.org>
parents: 19491
diff changeset
2367 call WaitForAssert({-> assert_match('^\d ', term_getline(buf, 6))}, 1000)
18144
95719bfeced2 patch 8.1.2067: no tests for SafeState and SafeStateAgain
Bram Moolenaar <Bram@vim.org>
parents: 17918
diff changeset
2368
19505
e7eec9cae0ea patch 8.2.0310: autocmd test fails on a slow system
Bram Moolenaar <Bram@vim.org>
parents: 19491
diff changeset
2369 " SafeStateAgain should be invoked at least three times
18144
95719bfeced2 patch 8.1.2067: no tests for SafeState and SafeStateAgain
Bram Moolenaar <Bram@vim.org>
parents: 17918
diff changeset
2370 call term_sendkeys(buf, ":echo g:again\<CR>")
19505
e7eec9cae0ea patch 8.2.0310: autocmd test fails on a slow system
Bram Moolenaar <Bram@vim.org>
parents: 19491
diff changeset
2371 call WaitForAssert({-> assert_match('^xxx', term_getline(buf, 6))}, 1000)
18144
95719bfeced2 patch 8.1.2067: no tests for SafeState and SafeStateAgain
Bram Moolenaar <Bram@vim.org>
parents: 17918
diff changeset
2372
95719bfeced2 patch 8.1.2067: no tests for SafeState and SafeStateAgain
Bram Moolenaar <Bram@vim.org>
parents: 17918
diff changeset
2373 call term_sendkeys(buf, ":let g:again = ''\<CR>:call CallTimer()\<CR>")
19954
c087099e9163 patch 8.2.0533: tests using term_wait() can still be flaky
Bram Moolenaar <Bram@vim.org>
parents: 19932
diff changeset
2374 call TermWait(buf, 50)
18148
f7d9f8fe70be patch 8.1.2069: test for SafeStateAgain may still fail
Bram Moolenaar <Bram@vim.org>
parents: 18146
diff changeset
2375 call term_sendkeys(buf, ":\<CR>")
19954
c087099e9163 patch 8.2.0533: tests using term_wait() can still be flaky
Bram Moolenaar <Bram@vim.org>
parents: 19932
diff changeset
2376 call TermWait(buf, 50)
18144
95719bfeced2 patch 8.1.2067: no tests for SafeState and SafeStateAgain
Bram Moolenaar <Bram@vim.org>
parents: 17918
diff changeset
2377 call term_sendkeys(buf, ":echo g:again\<CR>")
95719bfeced2 patch 8.1.2067: no tests for SafeState and SafeStateAgain
Bram Moolenaar <Bram@vim.org>
parents: 17918
diff changeset
2378 call WaitForAssert({-> assert_match('xtx', term_getline(buf, 6))}, 1000)
95719bfeced2 patch 8.1.2067: no tests for SafeState and SafeStateAgain
Bram Moolenaar <Bram@vim.org>
parents: 17918
diff changeset
2379
95719bfeced2 patch 8.1.2067: no tests for SafeState and SafeStateAgain
Bram Moolenaar <Bram@vim.org>
parents: 17918
diff changeset
2380 call StopVimInTerminal(buf)
95719bfeced2 patch 8.1.2067: no tests for SafeState and SafeStateAgain
Bram Moolenaar <Bram@vim.org>
parents: 17918
diff changeset
2381 call delete('XSafeState')
95719bfeced2 patch 8.1.2067: no tests for SafeState and SafeStateAgain
Bram Moolenaar <Bram@vim.org>
parents: 17918
diff changeset
2382 endfunc
18227
7d90fa3e5f8d patch 8.1.2108: cannot close the cmdline window from CmdWinEnter
Bram Moolenaar <Bram@vim.org>
parents: 18148
diff changeset
2383
7d90fa3e5f8d patch 8.1.2108: cannot close the cmdline window from CmdWinEnter
Bram Moolenaar <Bram@vim.org>
parents: 18148
diff changeset
2384 func Test_autocmd_CmdWinEnter()
7d90fa3e5f8d patch 8.1.2108: cannot close the cmdline window from CmdWinEnter
Bram Moolenaar <Bram@vim.org>
parents: 18148
diff changeset
2385 CheckRunVimInTerminal
23748
93f90f2ff4e9 patch 8.2.2415: no way to check for the cmdwin feature
Bram Moolenaar <Bram@vim.org>
parents: 23634
diff changeset
2386 CheckFeature cmdwin
93f90f2ff4e9 patch 8.2.2415: no way to check for the cmdwin feature
Bram Moolenaar <Bram@vim.org>
parents: 23634
diff changeset
2387
18227
7d90fa3e5f8d patch 8.1.2108: cannot close the cmdline window from CmdWinEnter
Bram Moolenaar <Bram@vim.org>
parents: 18148
diff changeset
2388 let lines =<< trim END
7d90fa3e5f8d patch 8.1.2108: cannot close the cmdline window from CmdWinEnter
Bram Moolenaar <Bram@vim.org>
parents: 18148
diff changeset
2389 let b:dummy_var = 'This is a dummy'
7d90fa3e5f8d patch 8.1.2108: cannot close the cmdline window from CmdWinEnter
Bram Moolenaar <Bram@vim.org>
parents: 18148
diff changeset
2390 autocmd CmdWinEnter * quit
7d90fa3e5f8d patch 8.1.2108: cannot close the cmdline window from CmdWinEnter
Bram Moolenaar <Bram@vim.org>
parents: 18148
diff changeset
2391 let winnr = winnr('$')
7d90fa3e5f8d patch 8.1.2108: cannot close the cmdline window from CmdWinEnter
Bram Moolenaar <Bram@vim.org>
parents: 18148
diff changeset
2392 END
23278
51b1a7e3e4ab patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
2393 let filename = 'XCmdWinEnter'
18227
7d90fa3e5f8d patch 8.1.2108: cannot close the cmdline window from CmdWinEnter
Bram Moolenaar <Bram@vim.org>
parents: 18148
diff changeset
2394 call writefile(lines, filename)
7d90fa3e5f8d patch 8.1.2108: cannot close the cmdline window from CmdWinEnter
Bram Moolenaar <Bram@vim.org>
parents: 18148
diff changeset
2395 let buf = RunVimInTerminal('-S '.filename, #{rows: 6})
7d90fa3e5f8d patch 8.1.2108: cannot close the cmdline window from CmdWinEnter
Bram Moolenaar <Bram@vim.org>
parents: 18148
diff changeset
2396
7d90fa3e5f8d patch 8.1.2108: cannot close the cmdline window from CmdWinEnter
Bram Moolenaar <Bram@vim.org>
parents: 18148
diff changeset
2397 call term_sendkeys(buf, "q:")
19954
c087099e9163 patch 8.2.0533: tests using term_wait() can still be flaky
Bram Moolenaar <Bram@vim.org>
parents: 19932
diff changeset
2398 call TermWait(buf)
18227
7d90fa3e5f8d patch 8.1.2108: cannot close the cmdline window from CmdWinEnter
Bram Moolenaar <Bram@vim.org>
parents: 18148
diff changeset
2399 call term_sendkeys(buf, ":echo b:dummy_var\<cr>")
19651
283c8bc6a8e2 patch 8.2.0382: some tests fail when run under valgrind
Bram Moolenaar <Bram@vim.org>
parents: 19505
diff changeset
2400 call WaitForAssert({-> assert_match('^This is a dummy', term_getline(buf, 6))}, 2000)
18227
7d90fa3e5f8d patch 8.1.2108: cannot close the cmdline window from CmdWinEnter
Bram Moolenaar <Bram@vim.org>
parents: 18148
diff changeset
2401 call term_sendkeys(buf, ":echo &buftype\<cr>")
7d90fa3e5f8d patch 8.1.2108: cannot close the cmdline window from CmdWinEnter
Bram Moolenaar <Bram@vim.org>
parents: 18148
diff changeset
2402 call WaitForAssert({-> assert_notmatch('^nofile', term_getline(buf, 6))}, 1000)
7d90fa3e5f8d patch 8.1.2108: cannot close the cmdline window from CmdWinEnter
Bram Moolenaar <Bram@vim.org>
parents: 18148
diff changeset
2403 call term_sendkeys(buf, ":echo winnr\<cr>")
7d90fa3e5f8d patch 8.1.2108: cannot close the cmdline window from CmdWinEnter
Bram Moolenaar <Bram@vim.org>
parents: 18148
diff changeset
2404 call WaitForAssert({-> assert_match('^1', term_getline(buf, 6))}, 1000)
7d90fa3e5f8d patch 8.1.2108: cannot close the cmdline window from CmdWinEnter
Bram Moolenaar <Bram@vim.org>
parents: 18148
diff changeset
2405
7d90fa3e5f8d patch 8.1.2108: cannot close the cmdline window from CmdWinEnter
Bram Moolenaar <Bram@vim.org>
parents: 18148
diff changeset
2406 " clean up
7d90fa3e5f8d patch 8.1.2108: cannot close the cmdline window from CmdWinEnter
Bram Moolenaar <Bram@vim.org>
parents: 18148
diff changeset
2407 call StopVimInTerminal(buf)
7d90fa3e5f8d patch 8.1.2108: cannot close the cmdline window from CmdWinEnter
Bram Moolenaar <Bram@vim.org>
parents: 18148
diff changeset
2408 call delete(filename)
7d90fa3e5f8d patch 8.1.2108: cannot close the cmdline window from CmdWinEnter
Bram Moolenaar <Bram@vim.org>
parents: 18148
diff changeset
2409 endfunc
18283
0cb608fc9c60 patch 8.1.2136: using freed memory with autocmd from fuzzer
Bram Moolenaar <Bram@vim.org>
parents: 18227
diff changeset
2410
0cb608fc9c60 patch 8.1.2136: using freed memory with autocmd from fuzzer
Bram Moolenaar <Bram@vim.org>
parents: 18227
diff changeset
2411 func Test_autocmd_was_using_freed_memory()
18767
068337e86133 patch 8.1.2373: cannot build with +popupwin but without +quickfix
Bram Moolenaar <Bram@vim.org>
parents: 18619
diff changeset
2412 CheckFeature quickfix
068337e86133 patch 8.1.2373: cannot build with +popupwin but without +quickfix
Bram Moolenaar <Bram@vim.org>
parents: 18619
diff changeset
2413
18283
0cb608fc9c60 patch 8.1.2136: using freed memory with autocmd from fuzzer
Bram Moolenaar <Bram@vim.org>
parents: 18227
diff changeset
2414 pedit xx
0cb608fc9c60 patch 8.1.2136: using freed memory with autocmd from fuzzer
Bram Moolenaar <Bram@vim.org>
parents: 18227
diff changeset
2415 n x
23847
b0e7fa957cd1 patch 8.2.2465: using freed memory in :psearch
Bram Moolenaar <Bram@vim.org>
parents: 23845
diff changeset
2416 augroup winenter
b0e7fa957cd1 patch 8.2.2465: using freed memory in :psearch
Bram Moolenaar <Bram@vim.org>
parents: 23845
diff changeset
2417 au WinEnter * if winnr('$') > 2 | quit | endif
b0e7fa957cd1 patch 8.2.2465: using freed memory in :psearch
Bram Moolenaar <Bram@vim.org>
parents: 23845
diff changeset
2418 augroup END
18283
0cb608fc9c60 patch 8.1.2136: using freed memory with autocmd from fuzzer
Bram Moolenaar <Bram@vim.org>
parents: 18227
diff changeset
2419 split
23847
b0e7fa957cd1 patch 8.2.2465: using freed memory in :psearch
Bram Moolenaar <Bram@vim.org>
parents: 23845
diff changeset
2420
b0e7fa957cd1 patch 8.2.2465: using freed memory in :psearch
Bram Moolenaar <Bram@vim.org>
parents: 23845
diff changeset
2421 augroup winenter
b0e7fa957cd1 patch 8.2.2465: using freed memory in :psearch
Bram Moolenaar <Bram@vim.org>
parents: 23845
diff changeset
2422 au! WinEnter
b0e7fa957cd1 patch 8.2.2465: using freed memory in :psearch
Bram Moolenaar <Bram@vim.org>
parents: 23845
diff changeset
2423 augroup END
b0e7fa957cd1 patch 8.2.2465: using freed memory in :psearch
Bram Moolenaar <Bram@vim.org>
parents: 23845
diff changeset
2424
b0e7fa957cd1 patch 8.2.2465: using freed memory in :psearch
Bram Moolenaar <Bram@vim.org>
parents: 23845
diff changeset
2425 bwipe xx
b0e7fa957cd1 patch 8.2.2465: using freed memory in :psearch
Bram Moolenaar <Bram@vim.org>
parents: 23845
diff changeset
2426 bwipe x
b0e7fa957cd1 patch 8.2.2465: using freed memory in :psearch
Bram Moolenaar <Bram@vim.org>
parents: 23845
diff changeset
2427 pclose
18283
0cb608fc9c60 patch 8.1.2136: using freed memory with autocmd from fuzzer
Bram Moolenaar <Bram@vim.org>
parents: 18227
diff changeset
2428 endfunc
18619
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18592
diff changeset
2429
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18592
diff changeset
2430 func Test_BufWrite_lockmarks()
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18592
diff changeset
2431 edit! Xtest
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18592
diff changeset
2432 call setline(1, ['a', 'b', 'c', 'd'])
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18592
diff changeset
2433
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18592
diff changeset
2434 " :lockmarks preserves the marks
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18592
diff changeset
2435 call SetChangeMarks(2, 3)
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18592
diff changeset
2436 lockmarks write
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18592
diff changeset
2437 call assert_equal([2, 3], [line("'["), line("']")])
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18592
diff changeset
2438
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18592
diff changeset
2439 " *WritePre autocmds get the correct line range, but lockmarks preserves the
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18592
diff changeset
2440 " original values for the user
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18592
diff changeset
2441 augroup lockmarks
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18592
diff changeset
2442 au!
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18592
diff changeset
2443 au BufWritePre,FilterWritePre * call assert_equal([1, 4], [line("'["), line("']")])
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18592
diff changeset
2444 au FileWritePre * call assert_equal([3, 4], [line("'["), line("']")])
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18592
diff changeset
2445 augroup END
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18592
diff changeset
2446
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18592
diff changeset
2447 lockmarks write
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18592
diff changeset
2448 call assert_equal([2, 3], [line("'["), line("']")])
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18592
diff changeset
2449
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18592
diff changeset
2450 if executable('cat')
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18592
diff changeset
2451 lockmarks %!cat
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18592
diff changeset
2452 call assert_equal([2, 3], [line("'["), line("']")])
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18592
diff changeset
2453 endif
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18592
diff changeset
2454
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18592
diff changeset
2455 lockmarks 3,4write Xtest2
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18592
diff changeset
2456 call assert_equal([2, 3], [line("'["), line("']")])
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18592
diff changeset
2457
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18592
diff changeset
2458 au! lockmarks
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18592
diff changeset
2459 augroup! lockmarks
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18592
diff changeset
2460 call delete('Xtest')
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18592
diff changeset
2461 call delete('Xtest2')
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18592
diff changeset
2462 endfunc
19073
45eb6f37692e patch 8.2.0097: crash with autocommand and spellfile
Bram Moolenaar <Bram@vim.org>
parents: 18832
diff changeset
2463
45eb6f37692e patch 8.2.0097: crash with autocommand and spellfile
Bram Moolenaar <Bram@vim.org>
parents: 18832
diff changeset
2464 func Test_FileType_spell()
45eb6f37692e patch 8.2.0097: crash with autocommand and spellfile
Bram Moolenaar <Bram@vim.org>
parents: 18832
diff changeset
2465 if !isdirectory('/tmp')
45eb6f37692e patch 8.2.0097: crash with autocommand and spellfile
Bram Moolenaar <Bram@vim.org>
parents: 18832
diff changeset
2466 throw "Skipped: requires /tmp directory"
45eb6f37692e patch 8.2.0097: crash with autocommand and spellfile
Bram Moolenaar <Bram@vim.org>
parents: 18832
diff changeset
2467 endif
45eb6f37692e patch 8.2.0097: crash with autocommand and spellfile
Bram Moolenaar <Bram@vim.org>
parents: 18832
diff changeset
2468
45eb6f37692e patch 8.2.0097: crash with autocommand and spellfile
Bram Moolenaar <Bram@vim.org>
parents: 18832
diff changeset
2469 " this was crashing with an invalid free()
45eb6f37692e patch 8.2.0097: crash with autocommand and spellfile
Bram Moolenaar <Bram@vim.org>
parents: 18832
diff changeset
2470 setglobal spellfile=/tmp/en.utf-8.add
45eb6f37692e patch 8.2.0097: crash with autocommand and spellfile
Bram Moolenaar <Bram@vim.org>
parents: 18832
diff changeset
2471 augroup crash
45eb6f37692e patch 8.2.0097: crash with autocommand and spellfile
Bram Moolenaar <Bram@vim.org>
parents: 18832
diff changeset
2472 autocmd!
45eb6f37692e patch 8.2.0097: crash with autocommand and spellfile
Bram Moolenaar <Bram@vim.org>
parents: 18832
diff changeset
2473 autocmd BufNewFile,BufReadPost crashfile setf somefiletype
45eb6f37692e patch 8.2.0097: crash with autocommand and spellfile
Bram Moolenaar <Bram@vim.org>
parents: 18832
diff changeset
2474 autocmd BufNewFile,BufReadPost crashfile set ft=anotherfiletype
45eb6f37692e patch 8.2.0097: crash with autocommand and spellfile
Bram Moolenaar <Bram@vim.org>
parents: 18832
diff changeset
2475 autocmd FileType anotherfiletype setlocal spell
45eb6f37692e patch 8.2.0097: crash with autocommand and spellfile
Bram Moolenaar <Bram@vim.org>
parents: 18832
diff changeset
2476 augroup END
45eb6f37692e patch 8.2.0097: crash with autocommand and spellfile
Bram Moolenaar <Bram@vim.org>
parents: 18832
diff changeset
2477 func! NoCrash() abort
45eb6f37692e patch 8.2.0097: crash with autocommand and spellfile
Bram Moolenaar <Bram@vim.org>
parents: 18832
diff changeset
2478 edit /tmp/crashfile
45eb6f37692e patch 8.2.0097: crash with autocommand and spellfile
Bram Moolenaar <Bram@vim.org>
parents: 18832
diff changeset
2479 endfunc
45eb6f37692e patch 8.2.0097: crash with autocommand and spellfile
Bram Moolenaar <Bram@vim.org>
parents: 18832
diff changeset
2480 call NoCrash()
45eb6f37692e patch 8.2.0097: crash with autocommand and spellfile
Bram Moolenaar <Bram@vim.org>
parents: 18832
diff changeset
2481
45eb6f37692e patch 8.2.0097: crash with autocommand and spellfile
Bram Moolenaar <Bram@vim.org>
parents: 18832
diff changeset
2482 au! crash
45eb6f37692e patch 8.2.0097: crash with autocommand and spellfile
Bram Moolenaar <Bram@vim.org>
parents: 18832
diff changeset
2483 setglobal spellfile=
45eb6f37692e patch 8.2.0097: crash with autocommand and spellfile
Bram Moolenaar <Bram@vim.org>
parents: 18832
diff changeset
2484 endfunc
19425
67fbe280a502 patch 8.2.0270: some code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents: 19073
diff changeset
2485
19435
8f8a5a15d00a patch 8.2.0275: some Ex code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents: 19425
diff changeset
2486 " Test closing a window or editing another buffer from a FileChangedRO handler
8f8a5a15d00a patch 8.2.0275: some Ex code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents: 19425
diff changeset
2487 " in a readonly buffer
8f8a5a15d00a patch 8.2.0275: some Ex code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents: 19425
diff changeset
2488 func Test_FileChangedRO_winclose()
22576
170077e26bde patch 8.2.1836: autocmd test fails on pacifist systems
Bram Moolenaar <Bram@vim.org>
parents: 22375
diff changeset
2489 call test_override('ui_delay', 10)
170077e26bde patch 8.2.1836: autocmd test fails on pacifist systems
Bram Moolenaar <Bram@vim.org>
parents: 22375
diff changeset
2490
19435
8f8a5a15d00a patch 8.2.0275: some Ex code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents: 19425
diff changeset
2491 augroup FileChangedROTest
8f8a5a15d00a patch 8.2.0275: some Ex code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents: 19425
diff changeset
2492 au!
8f8a5a15d00a patch 8.2.0275: some Ex code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents: 19425
diff changeset
2493 autocmd FileChangedRO * quit
8f8a5a15d00a patch 8.2.0275: some Ex code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents: 19425
diff changeset
2494 augroup END
8f8a5a15d00a patch 8.2.0275: some Ex code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents: 19425
diff changeset
2495 new
8f8a5a15d00a patch 8.2.0275: some Ex code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents: 19425
diff changeset
2496 set readonly
8f8a5a15d00a patch 8.2.0275: some Ex code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents: 19425
diff changeset
2497 call assert_fails('normal i', 'E788:')
8f8a5a15d00a patch 8.2.0275: some Ex code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents: 19425
diff changeset
2498 close
8f8a5a15d00a patch 8.2.0275: some Ex code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents: 19425
diff changeset
2499 augroup! FileChangedROTest
8f8a5a15d00a patch 8.2.0275: some Ex code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents: 19425
diff changeset
2500
8f8a5a15d00a patch 8.2.0275: some Ex code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents: 19425
diff changeset
2501 augroup FileChangedROTest
8f8a5a15d00a patch 8.2.0275: some Ex code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents: 19425
diff changeset
2502 au!
8f8a5a15d00a patch 8.2.0275: some Ex code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents: 19425
diff changeset
2503 autocmd FileChangedRO * edit Xfile
8f8a5a15d00a patch 8.2.0275: some Ex code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents: 19425
diff changeset
2504 augroup END
8f8a5a15d00a patch 8.2.0275: some Ex code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents: 19425
diff changeset
2505 new
8f8a5a15d00a patch 8.2.0275: some Ex code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents: 19425
diff changeset
2506 set readonly
8f8a5a15d00a patch 8.2.0275: some Ex code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents: 19425
diff changeset
2507 call assert_fails('normal i', 'E788:')
8f8a5a15d00a patch 8.2.0275: some Ex code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents: 19425
diff changeset
2508 close
8f8a5a15d00a patch 8.2.0275: some Ex code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents: 19425
diff changeset
2509 augroup! FileChangedROTest
22576
170077e26bde patch 8.2.1836: autocmd test fails on pacifist systems
Bram Moolenaar <Bram@vim.org>
parents: 22375
diff changeset
2510 call test_override('ALL', 0)
19435
8f8a5a15d00a patch 8.2.0275: some Ex code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents: 19425
diff changeset
2511 endfunc
8f8a5a15d00a patch 8.2.0275: some Ex code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents: 19425
diff changeset
2512
19489
31ac050a29a7 patch 8.2.0302: setting 'term' may cause error in TermChanged autocommand
Bram Moolenaar <Bram@vim.org>
parents: 19435
diff changeset
2513 func LogACmd()
31ac050a29a7 patch 8.2.0302: setting 'term' may cause error in TermChanged autocommand
Bram Moolenaar <Bram@vim.org>
parents: 19435
diff changeset
2514 call add(g:logged, line('$'))
31ac050a29a7 patch 8.2.0302: setting 'term' may cause error in TermChanged autocommand
Bram Moolenaar <Bram@vim.org>
parents: 19435
diff changeset
2515 endfunc
31ac050a29a7 patch 8.2.0302: setting 'term' may cause error in TermChanged autocommand
Bram Moolenaar <Bram@vim.org>
parents: 19435
diff changeset
2516
31ac050a29a7 patch 8.2.0302: setting 'term' may cause error in TermChanged autocommand
Bram Moolenaar <Bram@vim.org>
parents: 19435
diff changeset
2517 func Test_TermChanged()
19491
7803c6e82a87 patch 8.2.0303: TermChanged test fails in the GUI
Bram Moolenaar <Bram@vim.org>
parents: 19489
diff changeset
2518 CheckNotGui
7803c6e82a87 patch 8.2.0303: TermChanged test fails in the GUI
Bram Moolenaar <Bram@vim.org>
parents: 19489
diff changeset
2519
19489
31ac050a29a7 patch 8.2.0302: setting 'term' may cause error in TermChanged autocommand
Bram Moolenaar <Bram@vim.org>
parents: 19435
diff changeset
2520 enew!
31ac050a29a7 patch 8.2.0302: setting 'term' may cause error in TermChanged autocommand
Bram Moolenaar <Bram@vim.org>
parents: 19435
diff changeset
2521 tabnew
31ac050a29a7 patch 8.2.0302: setting 'term' may cause error in TermChanged autocommand
Bram Moolenaar <Bram@vim.org>
parents: 19435
diff changeset
2522 call setline(1, ['a', 'b', 'c', 'd'])
31ac050a29a7 patch 8.2.0302: setting 'term' may cause error in TermChanged autocommand
Bram Moolenaar <Bram@vim.org>
parents: 19435
diff changeset
2523 $
31ac050a29a7 patch 8.2.0302: setting 'term' may cause error in TermChanged autocommand
Bram Moolenaar <Bram@vim.org>
parents: 19435
diff changeset
2524 au TermChanged * call LogACmd()
31ac050a29a7 patch 8.2.0302: setting 'term' may cause error in TermChanged autocommand
Bram Moolenaar <Bram@vim.org>
parents: 19435
diff changeset
2525 let g:logged = []
31ac050a29a7 patch 8.2.0302: setting 'term' may cause error in TermChanged autocommand
Bram Moolenaar <Bram@vim.org>
parents: 19435
diff changeset
2526 let term_save = &term
31ac050a29a7 patch 8.2.0302: setting 'term' may cause error in TermChanged autocommand
Bram Moolenaar <Bram@vim.org>
parents: 19435
diff changeset
2527 set term=xterm
31ac050a29a7 patch 8.2.0302: setting 'term' may cause error in TermChanged autocommand
Bram Moolenaar <Bram@vim.org>
parents: 19435
diff changeset
2528 call assert_equal([1, 4], g:logged)
31ac050a29a7 patch 8.2.0302: setting 'term' may cause error in TermChanged autocommand
Bram Moolenaar <Bram@vim.org>
parents: 19435
diff changeset
2529
31ac050a29a7 patch 8.2.0302: setting 'term' may cause error in TermChanged autocommand
Bram Moolenaar <Bram@vim.org>
parents: 19435
diff changeset
2530 au! TermChanged
31ac050a29a7 patch 8.2.0302: setting 'term' may cause error in TermChanged autocommand
Bram Moolenaar <Bram@vim.org>
parents: 19435
diff changeset
2531 let &term = term_save
31ac050a29a7 patch 8.2.0302: setting 'term' may cause error in TermChanged autocommand
Bram Moolenaar <Bram@vim.org>
parents: 19435
diff changeset
2532 bwipe!
31ac050a29a7 patch 8.2.0302: setting 'term' may cause error in TermChanged autocommand
Bram Moolenaar <Bram@vim.org>
parents: 19435
diff changeset
2533 endfunc
31ac050a29a7 patch 8.2.0302: setting 'term' may cause error in TermChanged autocommand
Bram Moolenaar <Bram@vim.org>
parents: 19435
diff changeset
2534
19699
4e9c794c3af1 patch 8.2.0406: FileReadCmd event not well tested
Bram Moolenaar <Bram@vim.org>
parents: 19691
diff changeset
2535 " Test for FileReadCmd autocmd
4e9c794c3af1 patch 8.2.0406: FileReadCmd event not well tested
Bram Moolenaar <Bram@vim.org>
parents: 19691
diff changeset
2536 func Test_autocmd_FileReadCmd()
4e9c794c3af1 patch 8.2.0406: FileReadCmd event not well tested
Bram Moolenaar <Bram@vim.org>
parents: 19691
diff changeset
2537 func ReadFileCmd()
4e9c794c3af1 patch 8.2.0406: FileReadCmd event not well tested
Bram Moolenaar <Bram@vim.org>
parents: 19691
diff changeset
2538 call append(line('$'), "v:cmdarg = " .. v:cmdarg)
4e9c794c3af1 patch 8.2.0406: FileReadCmd event not well tested
Bram Moolenaar <Bram@vim.org>
parents: 19691
diff changeset
2539 endfunc
4e9c794c3af1 patch 8.2.0406: FileReadCmd event not well tested
Bram Moolenaar <Bram@vim.org>
parents: 19691
diff changeset
2540 augroup FileReadCmdTest
4e9c794c3af1 patch 8.2.0406: FileReadCmd event not well tested
Bram Moolenaar <Bram@vim.org>
parents: 19691
diff changeset
2541 au!
4e9c794c3af1 patch 8.2.0406: FileReadCmd event not well tested
Bram Moolenaar <Bram@vim.org>
parents: 19691
diff changeset
2542 au FileReadCmd Xtest call ReadFileCmd()
4e9c794c3af1 patch 8.2.0406: FileReadCmd event not well tested
Bram Moolenaar <Bram@vim.org>
parents: 19691
diff changeset
2543 augroup END
4e9c794c3af1 patch 8.2.0406: FileReadCmd event not well tested
Bram Moolenaar <Bram@vim.org>
parents: 19691
diff changeset
2544
4e9c794c3af1 patch 8.2.0406: FileReadCmd event not well tested
Bram Moolenaar <Bram@vim.org>
parents: 19691
diff changeset
2545 new
4e9c794c3af1 patch 8.2.0406: FileReadCmd event not well tested
Bram Moolenaar <Bram@vim.org>
parents: 19691
diff changeset
2546 read ++bin Xtest
4e9c794c3af1 patch 8.2.0406: FileReadCmd event not well tested
Bram Moolenaar <Bram@vim.org>
parents: 19691
diff changeset
2547 read ++nobin Xtest
4e9c794c3af1 patch 8.2.0406: FileReadCmd event not well tested
Bram Moolenaar <Bram@vim.org>
parents: 19691
diff changeset
2548 read ++edit Xtest
4e9c794c3af1 patch 8.2.0406: FileReadCmd event not well tested
Bram Moolenaar <Bram@vim.org>
parents: 19691
diff changeset
2549 read ++bad=keep Xtest
4e9c794c3af1 patch 8.2.0406: FileReadCmd event not well tested
Bram Moolenaar <Bram@vim.org>
parents: 19691
diff changeset
2550 read ++bad=drop Xtest
4e9c794c3af1 patch 8.2.0406: FileReadCmd event not well tested
Bram Moolenaar <Bram@vim.org>
parents: 19691
diff changeset
2551 read ++bad=- Xtest
4e9c794c3af1 patch 8.2.0406: FileReadCmd event not well tested
Bram Moolenaar <Bram@vim.org>
parents: 19691
diff changeset
2552 read ++ff=unix Xtest
4e9c794c3af1 patch 8.2.0406: FileReadCmd event not well tested
Bram Moolenaar <Bram@vim.org>
parents: 19691
diff changeset
2553 read ++ff=dos Xtest
4e9c794c3af1 patch 8.2.0406: FileReadCmd event not well tested
Bram Moolenaar <Bram@vim.org>
parents: 19691
diff changeset
2554 read ++ff=mac Xtest
4e9c794c3af1 patch 8.2.0406: FileReadCmd event not well tested
Bram Moolenaar <Bram@vim.org>
parents: 19691
diff changeset
2555 read ++enc=utf-8 Xtest
4e9c794c3af1 patch 8.2.0406: FileReadCmd event not well tested
Bram Moolenaar <Bram@vim.org>
parents: 19691
diff changeset
2556
4e9c794c3af1 patch 8.2.0406: FileReadCmd event not well tested
Bram Moolenaar <Bram@vim.org>
parents: 19691
diff changeset
2557 call assert_equal(['',
4e9c794c3af1 patch 8.2.0406: FileReadCmd event not well tested
Bram Moolenaar <Bram@vim.org>
parents: 19691
diff changeset
2558 \ 'v:cmdarg = ++bin',
4e9c794c3af1 patch 8.2.0406: FileReadCmd event not well tested
Bram Moolenaar <Bram@vim.org>
parents: 19691
diff changeset
2559 \ 'v:cmdarg = ++nobin',
4e9c794c3af1 patch 8.2.0406: FileReadCmd event not well tested
Bram Moolenaar <Bram@vim.org>
parents: 19691
diff changeset
2560 \ 'v:cmdarg = ++edit',
4e9c794c3af1 patch 8.2.0406: FileReadCmd event not well tested
Bram Moolenaar <Bram@vim.org>
parents: 19691
diff changeset
2561 \ 'v:cmdarg = ++bad=keep',
4e9c794c3af1 patch 8.2.0406: FileReadCmd event not well tested
Bram Moolenaar <Bram@vim.org>
parents: 19691
diff changeset
2562 \ 'v:cmdarg = ++bad=drop',
4e9c794c3af1 patch 8.2.0406: FileReadCmd event not well tested
Bram Moolenaar <Bram@vim.org>
parents: 19691
diff changeset
2563 \ 'v:cmdarg = ++bad=-',
4e9c794c3af1 patch 8.2.0406: FileReadCmd event not well tested
Bram Moolenaar <Bram@vim.org>
parents: 19691
diff changeset
2564 \ 'v:cmdarg = ++ff=unix',
4e9c794c3af1 patch 8.2.0406: FileReadCmd event not well tested
Bram Moolenaar <Bram@vim.org>
parents: 19691
diff changeset
2565 \ 'v:cmdarg = ++ff=dos',
4e9c794c3af1 patch 8.2.0406: FileReadCmd event not well tested
Bram Moolenaar <Bram@vim.org>
parents: 19691
diff changeset
2566 \ 'v:cmdarg = ++ff=mac',
4e9c794c3af1 patch 8.2.0406: FileReadCmd event not well tested
Bram Moolenaar <Bram@vim.org>
parents: 19691
diff changeset
2567 \ 'v:cmdarg = ++enc=utf-8'], getline(1, '$'))
4e9c794c3af1 patch 8.2.0406: FileReadCmd event not well tested
Bram Moolenaar <Bram@vim.org>
parents: 19691
diff changeset
2568
4e9c794c3af1 patch 8.2.0406: FileReadCmd event not well tested
Bram Moolenaar <Bram@vim.org>
parents: 19691
diff changeset
2569 close!
4e9c794c3af1 patch 8.2.0406: FileReadCmd event not well tested
Bram Moolenaar <Bram@vim.org>
parents: 19691
diff changeset
2570 augroup FileReadCmdTest
4e9c794c3af1 patch 8.2.0406: FileReadCmd event not well tested
Bram Moolenaar <Bram@vim.org>
parents: 19691
diff changeset
2571 au!
4e9c794c3af1 patch 8.2.0406: FileReadCmd event not well tested
Bram Moolenaar <Bram@vim.org>
parents: 19691
diff changeset
2572 augroup END
4e9c794c3af1 patch 8.2.0406: FileReadCmd event not well tested
Bram Moolenaar <Bram@vim.org>
parents: 19691
diff changeset
2573 delfunc ReadFileCmd
4e9c794c3af1 patch 8.2.0406: FileReadCmd event not well tested
Bram Moolenaar <Bram@vim.org>
parents: 19691
diff changeset
2574 endfunc
4e9c794c3af1 patch 8.2.0406: FileReadCmd event not well tested
Bram Moolenaar <Bram@vim.org>
parents: 19691
diff changeset
2575
19932
2c4d9ca33769 patch 8.2.0522: several errors are not tested for
Bram Moolenaar <Bram@vim.org>
parents: 19836
diff changeset
2576 " Test for passing invalid arguments to autocmd
2c4d9ca33769 patch 8.2.0522: several errors are not tested for
Bram Moolenaar <Bram@vim.org>
parents: 19836
diff changeset
2577 func Test_autocmd_invalid_args()
2c4d9ca33769 patch 8.2.0522: several errors are not tested for
Bram Moolenaar <Bram@vim.org>
parents: 19836
diff changeset
2578 " Additional character after * for event
2c4d9ca33769 patch 8.2.0522: several errors are not tested for
Bram Moolenaar <Bram@vim.org>
parents: 19836
diff changeset
2579 call assert_fails('autocmd *a Xfile set ff=unix', 'E215:')
2c4d9ca33769 patch 8.2.0522: several errors are not tested for
Bram Moolenaar <Bram@vim.org>
parents: 19836
diff changeset
2580 augroup Test
2c4d9ca33769 patch 8.2.0522: several errors are not tested for
Bram Moolenaar <Bram@vim.org>
parents: 19836
diff changeset
2581 augroup END
2c4d9ca33769 patch 8.2.0522: several errors are not tested for
Bram Moolenaar <Bram@vim.org>
parents: 19836
diff changeset
2582 " Invalid autocmd event
2c4d9ca33769 patch 8.2.0522: several errors are not tested for
Bram Moolenaar <Bram@vim.org>
parents: 19836
diff changeset
2583 call assert_fails('autocmd Bufabc Xfile set ft=vim', 'E216:')
2c4d9ca33769 patch 8.2.0522: several errors are not tested for
Bram Moolenaar <Bram@vim.org>
parents: 19836
diff changeset
2584 " Invalid autocmd event in a autocmd group
2c4d9ca33769 patch 8.2.0522: several errors are not tested for
Bram Moolenaar <Bram@vim.org>
parents: 19836
diff changeset
2585 call assert_fails('autocmd Test Bufabc Xfile set ft=vim', 'E216:')
2c4d9ca33769 patch 8.2.0522: several errors are not tested for
Bram Moolenaar <Bram@vim.org>
parents: 19836
diff changeset
2586 augroup! Test
2c4d9ca33769 patch 8.2.0522: several errors are not tested for
Bram Moolenaar <Bram@vim.org>
parents: 19836
diff changeset
2587 " Execute all autocmds
2c4d9ca33769 patch 8.2.0522: several errors are not tested for
Bram Moolenaar <Bram@vim.org>
parents: 19836
diff changeset
2588 call assert_fails('doautocmd * BufEnter', 'E217:')
2c4d9ca33769 patch 8.2.0522: several errors are not tested for
Bram Moolenaar <Bram@vim.org>
parents: 19836
diff changeset
2589 call assert_fails('augroup! x1a2b3', 'E367:')
2c4d9ca33769 patch 8.2.0522: several errors are not tested for
Bram Moolenaar <Bram@vim.org>
parents: 19836
diff changeset
2590 call assert_fails('autocmd BufNew <buffer=999> pwd', 'E680:')
22375
595ea7f099cd patch 8.2.1736: failure to compile a pattern not tested much
Bram Moolenaar <Bram@vim.org>
parents: 22087
diff changeset
2591 call assert_fails('autocmd BufNew \) set ff=unix', 'E55:')
19932
2c4d9ca33769 patch 8.2.0522: several errors are not tested for
Bram Moolenaar <Bram@vim.org>
parents: 19836
diff changeset
2592 endfunc
2c4d9ca33769 patch 8.2.0522: several errors are not tested for
Bram Moolenaar <Bram@vim.org>
parents: 19836
diff changeset
2593
2c4d9ca33769 patch 8.2.0522: several errors are not tested for
Bram Moolenaar <Bram@vim.org>
parents: 19836
diff changeset
2594 " Test for deep nesting of autocmds
2c4d9ca33769 patch 8.2.0522: several errors are not tested for
Bram Moolenaar <Bram@vim.org>
parents: 19836
diff changeset
2595 func Test_autocmd_deep_nesting()
2c4d9ca33769 patch 8.2.0522: several errors are not tested for
Bram Moolenaar <Bram@vim.org>
parents: 19836
diff changeset
2596 autocmd BufEnter Xfile doautocmd BufEnter Xfile
2c4d9ca33769 patch 8.2.0522: several errors are not tested for
Bram Moolenaar <Bram@vim.org>
parents: 19836
diff changeset
2597 call assert_fails('doautocmd BufEnter Xfile', 'E218:')
2c4d9ca33769 patch 8.2.0522: several errors are not tested for
Bram Moolenaar <Bram@vim.org>
parents: 19836
diff changeset
2598 autocmd! BufEnter Xfile
2c4d9ca33769 patch 8.2.0522: several errors are not tested for
Bram Moolenaar <Bram@vim.org>
parents: 19836
diff changeset
2599 endfunc
2c4d9ca33769 patch 8.2.0522: several errors are not tested for
Bram Moolenaar <Bram@vim.org>
parents: 19836
diff changeset
2600
20800
e76b83c07bd8 patch 8.2.0952: no simple way to interrupt Vim
Bram Moolenaar <Bram@vim.org>
parents: 20120
diff changeset
2601 " Tests for SigUSR1 autocmd event, which is only available on posix systems.
e76b83c07bd8 patch 8.2.0952: no simple way to interrupt Vim
Bram Moolenaar <Bram@vim.org>
parents: 20120
diff changeset
2602 func Test_autocmd_sigusr1()
e76b83c07bd8 patch 8.2.0952: no simple way to interrupt Vim
Bram Moolenaar <Bram@vim.org>
parents: 20120
diff changeset
2603 CheckUnix
22576
170077e26bde patch 8.2.1836: autocmd test fails on pacifist systems
Bram Moolenaar <Bram@vim.org>
parents: 22375
diff changeset
2604 CheckExecutable /bin/kill
20800
e76b83c07bd8 patch 8.2.0952: no simple way to interrupt Vim
Bram Moolenaar <Bram@vim.org>
parents: 20120
diff changeset
2605
e76b83c07bd8 patch 8.2.0952: no simple way to interrupt Vim
Bram Moolenaar <Bram@vim.org>
parents: 20120
diff changeset
2606 let g:sigusr1_passed = 0
e76b83c07bd8 patch 8.2.0952: no simple way to interrupt Vim
Bram Moolenaar <Bram@vim.org>
parents: 20120
diff changeset
2607 au SigUSR1 * let g:sigusr1_passed = 1
e76b83c07bd8 patch 8.2.0952: no simple way to interrupt Vim
Bram Moolenaar <Bram@vim.org>
parents: 20120
diff changeset
2608 call system('/bin/kill -s usr1 ' . getpid())
e76b83c07bd8 patch 8.2.0952: no simple way to interrupt Vim
Bram Moolenaar <Bram@vim.org>
parents: 20120
diff changeset
2609 call WaitForAssert({-> assert_true(g:sigusr1_passed)})
e76b83c07bd8 patch 8.2.0952: no simple way to interrupt Vim
Bram Moolenaar <Bram@vim.org>
parents: 20120
diff changeset
2610
e76b83c07bd8 patch 8.2.0952: no simple way to interrupt Vim
Bram Moolenaar <Bram@vim.org>
parents: 20120
diff changeset
2611 au! SigUSR1
e76b83c07bd8 patch 8.2.0952: no simple way to interrupt Vim
Bram Moolenaar <Bram@vim.org>
parents: 20120
diff changeset
2612 unlet g:sigusr1_passed
e76b83c07bd8 patch 8.2.0952: no simple way to interrupt Vim
Bram Moolenaar <Bram@vim.org>
parents: 20120
diff changeset
2613 endfunc
e76b83c07bd8 patch 8.2.0952: no simple way to interrupt Vim
Bram Moolenaar <Bram@vim.org>
parents: 20120
diff changeset
2614
20861
1725bb56178a patch 8.2.0982: insufficient testing for reading/writing files
Bram Moolenaar <Bram@vim.org>
parents: 20824
diff changeset
2615 " Test for BufReadPre autocmd deleting the file
1725bb56178a patch 8.2.0982: insufficient testing for reading/writing files
Bram Moolenaar <Bram@vim.org>
parents: 20824
diff changeset
2616 func Test_BufReadPre_delfile()
1725bb56178a patch 8.2.0982: insufficient testing for reading/writing files
Bram Moolenaar <Bram@vim.org>
parents: 20824
diff changeset
2617 augroup TestAuCmd
1725bb56178a patch 8.2.0982: insufficient testing for reading/writing files
Bram Moolenaar <Bram@vim.org>
parents: 20824
diff changeset
2618 au!
1725bb56178a patch 8.2.0982: insufficient testing for reading/writing files
Bram Moolenaar <Bram@vim.org>
parents: 20824
diff changeset
2619 autocmd BufReadPre Xfile call delete('Xfile')
1725bb56178a patch 8.2.0982: insufficient testing for reading/writing files
Bram Moolenaar <Bram@vim.org>
parents: 20824
diff changeset
2620 augroup END
1725bb56178a patch 8.2.0982: insufficient testing for reading/writing files
Bram Moolenaar <Bram@vim.org>
parents: 20824
diff changeset
2621 call writefile([], 'Xfile')
1725bb56178a patch 8.2.0982: insufficient testing for reading/writing files
Bram Moolenaar <Bram@vim.org>
parents: 20824
diff changeset
2622 call assert_fails('new Xfile', 'E200:')
1725bb56178a patch 8.2.0982: insufficient testing for reading/writing files
Bram Moolenaar <Bram@vim.org>
parents: 20824
diff changeset
2623 call assert_equal('Xfile', @%)
1725bb56178a patch 8.2.0982: insufficient testing for reading/writing files
Bram Moolenaar <Bram@vim.org>
parents: 20824
diff changeset
2624 call assert_equal(1, &readonly)
1725bb56178a patch 8.2.0982: insufficient testing for reading/writing files
Bram Moolenaar <Bram@vim.org>
parents: 20824
diff changeset
2625 call delete('Xfile')
1725bb56178a patch 8.2.0982: insufficient testing for reading/writing files
Bram Moolenaar <Bram@vim.org>
parents: 20824
diff changeset
2626 augroup TestAuCmd
1725bb56178a patch 8.2.0982: insufficient testing for reading/writing files
Bram Moolenaar <Bram@vim.org>
parents: 20824
diff changeset
2627 au!
1725bb56178a patch 8.2.0982: insufficient testing for reading/writing files
Bram Moolenaar <Bram@vim.org>
parents: 20824
diff changeset
2628 augroup END
1725bb56178a patch 8.2.0982: insufficient testing for reading/writing files
Bram Moolenaar <Bram@vim.org>
parents: 20824
diff changeset
2629 close!
1725bb56178a patch 8.2.0982: insufficient testing for reading/writing files
Bram Moolenaar <Bram@vim.org>
parents: 20824
diff changeset
2630 endfunc
1725bb56178a patch 8.2.0982: insufficient testing for reading/writing files
Bram Moolenaar <Bram@vim.org>
parents: 20824
diff changeset
2631
1725bb56178a patch 8.2.0982: insufficient testing for reading/writing files
Bram Moolenaar <Bram@vim.org>
parents: 20824
diff changeset
2632 " Test for BufReadPre autocmd changing the current buffer
1725bb56178a patch 8.2.0982: insufficient testing for reading/writing files
Bram Moolenaar <Bram@vim.org>
parents: 20824
diff changeset
2633 func Test_BufReadPre_changebuf()
1725bb56178a patch 8.2.0982: insufficient testing for reading/writing files
Bram Moolenaar <Bram@vim.org>
parents: 20824
diff changeset
2634 augroup TestAuCmd
1725bb56178a patch 8.2.0982: insufficient testing for reading/writing files
Bram Moolenaar <Bram@vim.org>
parents: 20824
diff changeset
2635 au!
1725bb56178a patch 8.2.0982: insufficient testing for reading/writing files
Bram Moolenaar <Bram@vim.org>
parents: 20824
diff changeset
2636 autocmd BufReadPre Xfile edit Xsomeotherfile
1725bb56178a patch 8.2.0982: insufficient testing for reading/writing files
Bram Moolenaar <Bram@vim.org>
parents: 20824
diff changeset
2637 augroup END
1725bb56178a patch 8.2.0982: insufficient testing for reading/writing files
Bram Moolenaar <Bram@vim.org>
parents: 20824
diff changeset
2638 call writefile([], 'Xfile')
1725bb56178a patch 8.2.0982: insufficient testing for reading/writing files
Bram Moolenaar <Bram@vim.org>
parents: 20824
diff changeset
2639 call assert_fails('new Xfile', 'E201:')
1725bb56178a patch 8.2.0982: insufficient testing for reading/writing files
Bram Moolenaar <Bram@vim.org>
parents: 20824
diff changeset
2640 call assert_equal('Xsomeotherfile', @%)
1725bb56178a patch 8.2.0982: insufficient testing for reading/writing files
Bram Moolenaar <Bram@vim.org>
parents: 20824
diff changeset
2641 call assert_equal(1, &readonly)
1725bb56178a patch 8.2.0982: insufficient testing for reading/writing files
Bram Moolenaar <Bram@vim.org>
parents: 20824
diff changeset
2642 call delete('Xfile')
1725bb56178a patch 8.2.0982: insufficient testing for reading/writing files
Bram Moolenaar <Bram@vim.org>
parents: 20824
diff changeset
2643 augroup TestAuCmd
1725bb56178a patch 8.2.0982: insufficient testing for reading/writing files
Bram Moolenaar <Bram@vim.org>
parents: 20824
diff changeset
2644 au!
1725bb56178a patch 8.2.0982: insufficient testing for reading/writing files
Bram Moolenaar <Bram@vim.org>
parents: 20824
diff changeset
2645 augroup END
1725bb56178a patch 8.2.0982: insufficient testing for reading/writing files
Bram Moolenaar <Bram@vim.org>
parents: 20824
diff changeset
2646 close!
1725bb56178a patch 8.2.0982: insufficient testing for reading/writing files
Bram Moolenaar <Bram@vim.org>
parents: 20824
diff changeset
2647 endfunc
1725bb56178a patch 8.2.0982: insufficient testing for reading/writing files
Bram Moolenaar <Bram@vim.org>
parents: 20824
diff changeset
2648
1725bb56178a patch 8.2.0982: insufficient testing for reading/writing files
Bram Moolenaar <Bram@vim.org>
parents: 20824
diff changeset
2649 " Test for BufWipeouti autocmd changing the current buffer when reading a file
1725bb56178a patch 8.2.0982: insufficient testing for reading/writing files
Bram Moolenaar <Bram@vim.org>
parents: 20824
diff changeset
2650 " in an empty buffer with 'f' flag in 'cpo'
1725bb56178a patch 8.2.0982: insufficient testing for reading/writing files
Bram Moolenaar <Bram@vim.org>
parents: 20824
diff changeset
2651 func Test_BufDelete_changebuf()
1725bb56178a patch 8.2.0982: insufficient testing for reading/writing files
Bram Moolenaar <Bram@vim.org>
parents: 20824
diff changeset
2652 new
1725bb56178a patch 8.2.0982: insufficient testing for reading/writing files
Bram Moolenaar <Bram@vim.org>
parents: 20824
diff changeset
2653 augroup TestAuCmd
1725bb56178a patch 8.2.0982: insufficient testing for reading/writing files
Bram Moolenaar <Bram@vim.org>
parents: 20824
diff changeset
2654 au!
1725bb56178a patch 8.2.0982: insufficient testing for reading/writing files
Bram Moolenaar <Bram@vim.org>
parents: 20824
diff changeset
2655 autocmd BufWipeout * let bufnr = bufadd('somefile') | exe "b " .. bufnr
1725bb56178a patch 8.2.0982: insufficient testing for reading/writing files
Bram Moolenaar <Bram@vim.org>
parents: 20824
diff changeset
2656 augroup END
1725bb56178a patch 8.2.0982: insufficient testing for reading/writing files
Bram Moolenaar <Bram@vim.org>
parents: 20824
diff changeset
2657 let save_cpo = &cpo
1725bb56178a patch 8.2.0982: insufficient testing for reading/writing files
Bram Moolenaar <Bram@vim.org>
parents: 20824
diff changeset
2658 set cpo+=f
21265
6a4806e326dd patch 8.2.1183: assert_fails() checks the last error message
Bram Moolenaar <Bram@vim.org>
parents: 21016
diff changeset
2659 call assert_fails('r Xfile', ['E812:', 'E484:'])
20861
1725bb56178a patch 8.2.0982: insufficient testing for reading/writing files
Bram Moolenaar <Bram@vim.org>
parents: 20824
diff changeset
2660 call assert_equal('somefile', @%)
1725bb56178a patch 8.2.0982: insufficient testing for reading/writing files
Bram Moolenaar <Bram@vim.org>
parents: 20824
diff changeset
2661 let &cpo = save_cpo
1725bb56178a patch 8.2.0982: insufficient testing for reading/writing files
Bram Moolenaar <Bram@vim.org>
parents: 20824
diff changeset
2662 augroup TestAuCmd
1725bb56178a patch 8.2.0982: insufficient testing for reading/writing files
Bram Moolenaar <Bram@vim.org>
parents: 20824
diff changeset
2663 au!
1725bb56178a patch 8.2.0982: insufficient testing for reading/writing files
Bram Moolenaar <Bram@vim.org>
parents: 20824
diff changeset
2664 augroup END
1725bb56178a patch 8.2.0982: insufficient testing for reading/writing files
Bram Moolenaar <Bram@vim.org>
parents: 20824
diff changeset
2665 close!
1725bb56178a patch 8.2.0982: insufficient testing for reading/writing files
Bram Moolenaar <Bram@vim.org>
parents: 20824
diff changeset
2666 endfunc
1725bb56178a patch 8.2.0982: insufficient testing for reading/writing files
Bram Moolenaar <Bram@vim.org>
parents: 20824
diff changeset
2667
20879
0ab45b558621 patch 8.2.0991: cannot get window type for autocmd and preview window
Bram Moolenaar <Bram@vim.org>
parents: 20861
diff changeset
2668 " Test for the temporary internal window used to execute autocmds
0ab45b558621 patch 8.2.0991: cannot get window type for autocmd and preview window
Bram Moolenaar <Bram@vim.org>
parents: 20861
diff changeset
2669 func Test_autocmd_window()
0ab45b558621 patch 8.2.0991: cannot get window type for autocmd and preview window
Bram Moolenaar <Bram@vim.org>
parents: 20861
diff changeset
2670 %bw!
0ab45b558621 patch 8.2.0991: cannot get window type for autocmd and preview window
Bram Moolenaar <Bram@vim.org>
parents: 20861
diff changeset
2671 edit one.txt
0ab45b558621 patch 8.2.0991: cannot get window type for autocmd and preview window
Bram Moolenaar <Bram@vim.org>
parents: 20861
diff changeset
2672 tabnew two.txt
0ab45b558621 patch 8.2.0991: cannot get window type for autocmd and preview window
Bram Moolenaar <Bram@vim.org>
parents: 20861
diff changeset
2673 let g:blist = []
21004
0650d220f742 patch 8.2.1053: insufficient testing for 'statusline' and 'tabline'
Bram Moolenaar <Bram@vim.org>
parents: 20889
diff changeset
2674 augroup aucmd_win_test1
20879
0ab45b558621 patch 8.2.0991: cannot get window type for autocmd and preview window
Bram Moolenaar <Bram@vim.org>
parents: 20861
diff changeset
2675 au!
0ab45b558621 patch 8.2.0991: cannot get window type for autocmd and preview window
Bram Moolenaar <Bram@vim.org>
parents: 20861
diff changeset
2676 au BufEnter * call add(g:blist, [expand('<afile>'),
0ab45b558621 patch 8.2.0991: cannot get window type for autocmd and preview window
Bram Moolenaar <Bram@vim.org>
parents: 20861
diff changeset
2677 \ win_gettype(bufwinnr(expand('<afile>')))])
0ab45b558621 patch 8.2.0991: cannot get window type for autocmd and preview window
Bram Moolenaar <Bram@vim.org>
parents: 20861
diff changeset
2678 augroup END
0ab45b558621 patch 8.2.0991: cannot get window type for autocmd and preview window
Bram Moolenaar <Bram@vim.org>
parents: 20861
diff changeset
2679
0ab45b558621 patch 8.2.0991: cannot get window type for autocmd and preview window
Bram Moolenaar <Bram@vim.org>
parents: 20861
diff changeset
2680 doautoall BufEnter
20889
27401f09fe9b patch 8.2.0996: using "aucmdwin" in win_gettype() is not ideal
Bram Moolenaar <Bram@vim.org>
parents: 20879
diff changeset
2681 call assert_equal([['one.txt', 'autocmd'], ['two.txt', '']], g:blist)
20879
0ab45b558621 patch 8.2.0991: cannot get window type for autocmd and preview window
Bram Moolenaar <Bram@vim.org>
parents: 20861
diff changeset
2682
21004
0650d220f742 patch 8.2.1053: insufficient testing for 'statusline' and 'tabline'
Bram Moolenaar <Bram@vim.org>
parents: 20889
diff changeset
2683 augroup aucmd_win_test1
20879
0ab45b558621 patch 8.2.0991: cannot get window type for autocmd and preview window
Bram Moolenaar <Bram@vim.org>
parents: 20861
diff changeset
2684 au!
0ab45b558621 patch 8.2.0991: cannot get window type for autocmd and preview window
Bram Moolenaar <Bram@vim.org>
parents: 20861
diff changeset
2685 augroup END
21004
0650d220f742 patch 8.2.1053: insufficient testing for 'statusline' and 'tabline'
Bram Moolenaar <Bram@vim.org>
parents: 20889
diff changeset
2686 augroup! aucmd_win_test1
0650d220f742 patch 8.2.1053: insufficient testing for 'statusline' and 'tabline'
Bram Moolenaar <Bram@vim.org>
parents: 20889
diff changeset
2687 %bw!
0650d220f742 patch 8.2.1053: insufficient testing for 'statusline' and 'tabline'
Bram Moolenaar <Bram@vim.org>
parents: 20889
diff changeset
2688 endfunc
0650d220f742 patch 8.2.1053: insufficient testing for 'statusline' and 'tabline'
Bram Moolenaar <Bram@vim.org>
parents: 20889
diff changeset
2689
0650d220f742 patch 8.2.1053: insufficient testing for 'statusline' and 'tabline'
Bram Moolenaar <Bram@vim.org>
parents: 20889
diff changeset
2690 " Test for trying to close the temporary window used for executing an autocmd
0650d220f742 patch 8.2.1053: insufficient testing for 'statusline' and 'tabline'
Bram Moolenaar <Bram@vim.org>
parents: 20889
diff changeset
2691 func Test_close_autocmd_window()
0650d220f742 patch 8.2.1053: insufficient testing for 'statusline' and 'tabline'
Bram Moolenaar <Bram@vim.org>
parents: 20889
diff changeset
2692 %bw!
0650d220f742 patch 8.2.1053: insufficient testing for 'statusline' and 'tabline'
Bram Moolenaar <Bram@vim.org>
parents: 20889
diff changeset
2693 edit one.txt
0650d220f742 patch 8.2.1053: insufficient testing for 'statusline' and 'tabline'
Bram Moolenaar <Bram@vim.org>
parents: 20889
diff changeset
2694 tabnew two.txt
0650d220f742 patch 8.2.1053: insufficient testing for 'statusline' and 'tabline'
Bram Moolenaar <Bram@vim.org>
parents: 20889
diff changeset
2695 augroup aucmd_win_test2
0650d220f742 patch 8.2.1053: insufficient testing for 'statusline' and 'tabline'
Bram Moolenaar <Bram@vim.org>
parents: 20889
diff changeset
2696 au!
0650d220f742 patch 8.2.1053: insufficient testing for 'statusline' and 'tabline'
Bram Moolenaar <Bram@vim.org>
parents: 20889
diff changeset
2697 au BufEnter * if expand('<afile>') == 'one.txt' | 1close | endif
0650d220f742 patch 8.2.1053: insufficient testing for 'statusline' and 'tabline'
Bram Moolenaar <Bram@vim.org>
parents: 20889
diff changeset
2698 augroup END
0650d220f742 patch 8.2.1053: insufficient testing for 'statusline' and 'tabline'
Bram Moolenaar <Bram@vim.org>
parents: 20889
diff changeset
2699
0650d220f742 patch 8.2.1053: insufficient testing for 'statusline' and 'tabline'
Bram Moolenaar <Bram@vim.org>
parents: 20889
diff changeset
2700 call assert_fails('doautoall BufEnter', 'E813:')
0650d220f742 patch 8.2.1053: insufficient testing for 'statusline' and 'tabline'
Bram Moolenaar <Bram@vim.org>
parents: 20889
diff changeset
2701
0650d220f742 patch 8.2.1053: insufficient testing for 'statusline' and 'tabline'
Bram Moolenaar <Bram@vim.org>
parents: 20889
diff changeset
2702 augroup aucmd_win_test2
0650d220f742 patch 8.2.1053: insufficient testing for 'statusline' and 'tabline'
Bram Moolenaar <Bram@vim.org>
parents: 20889
diff changeset
2703 au!
0650d220f742 patch 8.2.1053: insufficient testing for 'statusline' and 'tabline'
Bram Moolenaar <Bram@vim.org>
parents: 20889
diff changeset
2704 augroup END
0650d220f742 patch 8.2.1053: insufficient testing for 'statusline' and 'tabline'
Bram Moolenaar <Bram@vim.org>
parents: 20889
diff changeset
2705 augroup! aucmd_win_test2
21016
0738c44504cb patch 8.2.1059: crash when using :tabonly in an autocommand
Bram Moolenaar <Bram@vim.org>
parents: 21004
diff changeset
2706 %bwipe!
0738c44504cb patch 8.2.1059: crash when using :tabonly in an autocommand
Bram Moolenaar <Bram@vim.org>
parents: 21004
diff changeset
2707 endfunc
0738c44504cb patch 8.2.1059: crash when using :tabonly in an autocommand
Bram Moolenaar <Bram@vim.org>
parents: 21004
diff changeset
2708
0738c44504cb patch 8.2.1059: crash when using :tabonly in an autocommand
Bram Moolenaar <Bram@vim.org>
parents: 21004
diff changeset
2709 " Test for trying to close the tab that has the temporary window for exeucing
0738c44504cb patch 8.2.1059: crash when using :tabonly in an autocommand
Bram Moolenaar <Bram@vim.org>
parents: 21004
diff changeset
2710 " an autocmd.
0738c44504cb patch 8.2.1059: crash when using :tabonly in an autocommand
Bram Moolenaar <Bram@vim.org>
parents: 21004
diff changeset
2711 func Test_close_autocmd_tab()
0738c44504cb patch 8.2.1059: crash when using :tabonly in an autocommand
Bram Moolenaar <Bram@vim.org>
parents: 21004
diff changeset
2712 edit one.txt
0738c44504cb patch 8.2.1059: crash when using :tabonly in an autocommand
Bram Moolenaar <Bram@vim.org>
parents: 21004
diff changeset
2713 tabnew two.txt
0738c44504cb patch 8.2.1059: crash when using :tabonly in an autocommand
Bram Moolenaar <Bram@vim.org>
parents: 21004
diff changeset
2714 augroup aucmd_win_test
0738c44504cb patch 8.2.1059: crash when using :tabonly in an autocommand
Bram Moolenaar <Bram@vim.org>
parents: 21004
diff changeset
2715 au!
0738c44504cb patch 8.2.1059: crash when using :tabonly in an autocommand
Bram Moolenaar <Bram@vim.org>
parents: 21004
diff changeset
2716 au BufEnter * if expand('<afile>') == 'one.txt' | tabfirst | tabonly | endif
0738c44504cb patch 8.2.1059: crash when using :tabonly in an autocommand
Bram Moolenaar <Bram@vim.org>
parents: 21004
diff changeset
2717 augroup END
0738c44504cb patch 8.2.1059: crash when using :tabonly in an autocommand
Bram Moolenaar <Bram@vim.org>
parents: 21004
diff changeset
2718
0738c44504cb patch 8.2.1059: crash when using :tabonly in an autocommand
Bram Moolenaar <Bram@vim.org>
parents: 21004
diff changeset
2719 call assert_fails('doautoall BufEnter', 'E813:')
0738c44504cb patch 8.2.1059: crash when using :tabonly in an autocommand
Bram Moolenaar <Bram@vim.org>
parents: 21004
diff changeset
2720
0738c44504cb patch 8.2.1059: crash when using :tabonly in an autocommand
Bram Moolenaar <Bram@vim.org>
parents: 21004
diff changeset
2721 tabonly
0738c44504cb patch 8.2.1059: crash when using :tabonly in an autocommand
Bram Moolenaar <Bram@vim.org>
parents: 21004
diff changeset
2722 augroup aucmd_win_test
0738c44504cb patch 8.2.1059: crash when using :tabonly in an autocommand
Bram Moolenaar <Bram@vim.org>
parents: 21004
diff changeset
2723 au!
0738c44504cb patch 8.2.1059: crash when using :tabonly in an autocommand
Bram Moolenaar <Bram@vim.org>
parents: 21004
diff changeset
2724 augroup END
0738c44504cb patch 8.2.1059: crash when using :tabonly in an autocommand
Bram Moolenaar <Bram@vim.org>
parents: 21004
diff changeset
2725 augroup! aucmd_win_test
0738c44504cb patch 8.2.1059: crash when using :tabonly in an autocommand
Bram Moolenaar <Bram@vim.org>
parents: 21004
diff changeset
2726 %bwipe!
20879
0ab45b558621 patch 8.2.0991: cannot get window type for autocmd and preview window
Bram Moolenaar <Bram@vim.org>
parents: 20861
diff changeset
2727 endfunc
0ab45b558621 patch 8.2.0991: cannot get window type for autocmd and preview window
Bram Moolenaar <Bram@vim.org>
parents: 20861
diff changeset
2728
23843
d97258eca25d patch 8.2.2463: using :arglocal in an autocommand may use freed memory
Bram Moolenaar <Bram@vim.org>
parents: 23760
diff changeset
2729 " This was using freed memory.
d97258eca25d patch 8.2.2463: using :arglocal in an autocommand may use freed memory
Bram Moolenaar <Bram@vim.org>
parents: 23760
diff changeset
2730 func Test_BufNew_arglocal()
d97258eca25d patch 8.2.2463: using :arglocal in an autocommand may use freed memory
Bram Moolenaar <Bram@vim.org>
parents: 23760
diff changeset
2731 arglocal
d97258eca25d patch 8.2.2463: using :arglocal in an autocommand may use freed memory
Bram Moolenaar <Bram@vim.org>
parents: 23760
diff changeset
2732 au BufNew * arglocal
d97258eca25d patch 8.2.2463: using :arglocal in an autocommand may use freed memory
Bram Moolenaar <Bram@vim.org>
parents: 23760
diff changeset
2733 call assert_fails('drop xx', 'E1156:')
d97258eca25d patch 8.2.2463: using :arglocal in an autocommand may use freed memory
Bram Moolenaar <Bram@vim.org>
parents: 23760
diff changeset
2734
d97258eca25d patch 8.2.2463: using :arglocal in an autocommand may use freed memory
Bram Moolenaar <Bram@vim.org>
parents: 23760
diff changeset
2735 au! BufNew
d97258eca25d patch 8.2.2463: using :arglocal in an autocommand may use freed memory
Bram Moolenaar <Bram@vim.org>
parents: 23760
diff changeset
2736 endfunc
d97258eca25d patch 8.2.2463: using :arglocal in an autocommand may use freed memory
Bram Moolenaar <Bram@vim.org>
parents: 23760
diff changeset
2737
23845
7517eb94239b patch 8.2.2464: using freed memory if window closed in autocommand
Bram Moolenaar <Bram@vim.org>
parents: 23843
diff changeset
2738 func Test_autocmd_closes_window()
7517eb94239b patch 8.2.2464: using freed memory if window closed in autocommand
Bram Moolenaar <Bram@vim.org>
parents: 23843
diff changeset
2739 au BufNew,BufWinLeave * e %e
7517eb94239b patch 8.2.2464: using freed memory if window closed in autocommand
Bram Moolenaar <Bram@vim.org>
parents: 23843
diff changeset
2740 file yyy
7517eb94239b patch 8.2.2464: using freed memory if window closed in autocommand
Bram Moolenaar <Bram@vim.org>
parents: 23843
diff changeset
2741 au BufNew,BufWinLeave * ball
23861
5d11a15dbaa9 patch 8.2.2472: crash when using command line window in an autocommand
Bram Moolenaar <Bram@vim.org>
parents: 23847
diff changeset
2742 n xxx
5d11a15dbaa9 patch 8.2.2472: crash when using command line window in an autocommand
Bram Moolenaar <Bram@vim.org>
parents: 23847
diff changeset
2743
5d11a15dbaa9 patch 8.2.2472: crash when using command line window in an autocommand
Bram Moolenaar <Bram@vim.org>
parents: 23847
diff changeset
2744 %bwipe
23845
7517eb94239b patch 8.2.2464: using freed memory if window closed in autocommand
Bram Moolenaar <Bram@vim.org>
parents: 23843
diff changeset
2745 au! BufNew
7517eb94239b patch 8.2.2464: using freed memory if window closed in autocommand
Bram Moolenaar <Bram@vim.org>
parents: 23843
diff changeset
2746 au! BufWinLeave
7517eb94239b patch 8.2.2464: using freed memory if window closed in autocommand
Bram Moolenaar <Bram@vim.org>
parents: 23843
diff changeset
2747 endfunc
7517eb94239b patch 8.2.2464: using freed memory if window closed in autocommand
Bram Moolenaar <Bram@vim.org>
parents: 23843
diff changeset
2748
23847
b0e7fa957cd1 patch 8.2.2465: using freed memory in :psearch
Bram Moolenaar <Bram@vim.org>
parents: 23845
diff changeset
2749 func Test_autocmd_quit_psearch()
b0e7fa957cd1 patch 8.2.2465: using freed memory in :psearch
Bram Moolenaar <Bram@vim.org>
parents: 23845
diff changeset
2750 sn aa bb
b0e7fa957cd1 patch 8.2.2465: using freed memory in :psearch
Bram Moolenaar <Bram@vim.org>
parents: 23845
diff changeset
2751 augroup aucmd_win_test
b0e7fa957cd1 patch 8.2.2465: using freed memory in :psearch
Bram Moolenaar <Bram@vim.org>
parents: 23845
diff changeset
2752 au!
b0e7fa957cd1 patch 8.2.2465: using freed memory in :psearch
Bram Moolenaar <Bram@vim.org>
parents: 23845
diff changeset
2753 au BufEnter,BufLeave,BufNew,WinEnter,WinLeave,WinNew * if winnr('$') > 1 | q | endif
b0e7fa957cd1 patch 8.2.2465: using freed memory in :psearch
Bram Moolenaar <Bram@vim.org>
parents: 23845
diff changeset
2754 augroup END
b0e7fa957cd1 patch 8.2.2465: using freed memory in :psearch
Bram Moolenaar <Bram@vim.org>
parents: 23845
diff changeset
2755 ps /
b0e7fa957cd1 patch 8.2.2465: using freed memory in :psearch
Bram Moolenaar <Bram@vim.org>
parents: 23845
diff changeset
2756
b0e7fa957cd1 patch 8.2.2465: using freed memory in :psearch
Bram Moolenaar <Bram@vim.org>
parents: 23845
diff changeset
2757 augroup aucmd_win_test
b0e7fa957cd1 patch 8.2.2465: using freed memory in :psearch
Bram Moolenaar <Bram@vim.org>
parents: 23845
diff changeset
2758 au!
b0e7fa957cd1 patch 8.2.2465: using freed memory in :psearch
Bram Moolenaar <Bram@vim.org>
parents: 23845
diff changeset
2759 augroup END
b0e7fa957cd1 patch 8.2.2465: using freed memory in :psearch
Bram Moolenaar <Bram@vim.org>
parents: 23845
diff changeset
2760 endfunc
b0e7fa957cd1 patch 8.2.2465: using freed memory in :psearch
Bram Moolenaar <Bram@vim.org>
parents: 23845
diff changeset
2761
23861
5d11a15dbaa9 patch 8.2.2472: crash when using command line window in an autocommand
Bram Moolenaar <Bram@vim.org>
parents: 23847
diff changeset
2762 " Fuzzer found some strange combination that caused a crash.
5d11a15dbaa9 patch 8.2.2472: crash when using command line window in an autocommand
Bram Moolenaar <Bram@vim.org>
parents: 23847
diff changeset
2763 func Test_autocmd_normal_mess()
5d11a15dbaa9 patch 8.2.2472: crash when using command line window in an autocommand
Bram Moolenaar <Bram@vim.org>
parents: 23847
diff changeset
2764 augroup aucmd_normal_test
5d11a15dbaa9 patch 8.2.2472: crash when using command line window in an autocommand
Bram Moolenaar <Bram@vim.org>
parents: 23847
diff changeset
2765 au BufLeave,BufWinLeave,BufHidden,BufUnload,BufDelete,BufWipeout * norm 7q/qc
5d11a15dbaa9 patch 8.2.2472: crash when using command line window in an autocommand
Bram Moolenaar <Bram@vim.org>
parents: 23847
diff changeset
2766 augroup END
5d11a15dbaa9 patch 8.2.2472: crash when using command line window in an autocommand
Bram Moolenaar <Bram@vim.org>
parents: 23847
diff changeset
2767 o4
5d11a15dbaa9 patch 8.2.2472: crash when using command line window in an autocommand
Bram Moolenaar <Bram@vim.org>
parents: 23847
diff changeset
2768 silent! H
5d11a15dbaa9 patch 8.2.2472: crash when using command line window in an autocommand
Bram Moolenaar <Bram@vim.org>
parents: 23847
diff changeset
2769 e xx
5d11a15dbaa9 patch 8.2.2472: crash when using command line window in an autocommand
Bram Moolenaar <Bram@vim.org>
parents: 23847
diff changeset
2770 normal G
5d11a15dbaa9 patch 8.2.2472: crash when using command line window in an autocommand
Bram Moolenaar <Bram@vim.org>
parents: 23847
diff changeset
2771
5d11a15dbaa9 patch 8.2.2472: crash when using command line window in an autocommand
Bram Moolenaar <Bram@vim.org>
parents: 23847
diff changeset
2772 augroup aucmd_normal_test
5d11a15dbaa9 patch 8.2.2472: crash when using command line window in an autocommand
Bram Moolenaar <Bram@vim.org>
parents: 23847
diff changeset
2773 au!
5d11a15dbaa9 patch 8.2.2472: crash when using command line window in an autocommand
Bram Moolenaar <Bram@vim.org>
parents: 23847
diff changeset
2774 augroup END
5d11a15dbaa9 patch 8.2.2472: crash when using command line window in an autocommand
Bram Moolenaar <Bram@vim.org>
parents: 23847
diff changeset
2775 endfunc
5d11a15dbaa9 patch 8.2.2472: crash when using command line window in an autocommand
Bram Moolenaar <Bram@vim.org>
parents: 23847
diff changeset
2776
19425
67fbe280a502 patch 8.2.0270: some code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents: 19073
diff changeset
2777 " vim: shiftwidth=2 sts=2 expandtab