annotate src/testdir/test72.in @ 6299:3eb160c5b3a1 v7.4.483

updated for version 7.4.483 Problem: A 0x80 byte is not handled correctly in abbreviations. Solution: Unescape special characters. Add a test. (Christian Brabandt)
author Bram Moolenaar <bram@vim.org>
date Tue, 21 Oct 2014 16:22:17 +0200
parents 1134bba900c1
children fd4dc6581b0e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2232
2e6906bbc5f4 A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
1 Tests for undo file.
2e6906bbc5f4 A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
2 Since this script is sourced we need to explicitly break changes up in
2e6906bbc5f4 A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
3 undo-able pieces. Do that by setting 'undolevels'.
2e6906bbc5f4 A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
4
2e6906bbc5f4 A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
5 STARTTEST
2e6906bbc5f4 A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
6 :so small.vim
2e6906bbc5f4 A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
7 :"
2e6906bbc5f4 A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
8 :" Test 'undofile': first a simple one-line change.
2504
dcb3ab4587b4 Set 'visualbell' in test 72 to avoid a beep.
Bram Moolenaar <bram@vim.org>
parents: 2459
diff changeset
9 :set nocompatible viminfo+=nviminfo visualbell
2456
2876ac15b8c8 Avoid that running tests changes viminfo.
Bram Moolenaar <bram@vim.org>
parents: 2438
diff changeset
10 :set ul=100 undofile nomore
6136
1134bba900c1 updated for version 7.4.406
Bram Moolenaar <bram@vim.org>
parents: 6122
diff changeset
11 :set ff=unix
2232
2e6906bbc5f4 A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
12 :e! Xtestfile
2e6906bbc5f4 A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
13 ggdGithis is one line:set ul=100
2e6906bbc5f4 A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
14 :s/one/ONE/
2e6906bbc5f4 A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
15 :set ul=100
2e6906bbc5f4 A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
16 :w
2e6906bbc5f4 A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
17 :bwipe!
2e6906bbc5f4 A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
18 :e Xtestfile
2e6906bbc5f4 A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
19 u:.w! test.out
2e6906bbc5f4 A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
20 :"
2e6906bbc5f4 A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
21 :" Test 'undofile', change in original file fails check
2e6906bbc5f4 A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
22 :set noundofile
2e6906bbc5f4 A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
23 :e! Xtestfile
2e6906bbc5f4 A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
24 :s/line/Line/
2e6906bbc5f4 A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
25 :w
2e6906bbc5f4 A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
26 :set undofile
2e6906bbc5f4 A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
27 :bwipe!
2e6906bbc5f4 A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
28 :e Xtestfile
2459
64df5d008ccb Fix: test 69 didn't work on MS-Windows. Test 72 beeped too often.
Bram Moolenaar <bram@vim.org>
parents: 2456
diff changeset
29 :" TODO: this beeps
2232
2e6906bbc5f4 A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
30 u:.w >>test.out
2e6906bbc5f4 A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
31 :"
2e6906bbc5f4 A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
32 :" Test 'undofile', add 10 lines, delete 6 lines, undo 3
2e6906bbc5f4 A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
33 :set undofile
2e6906bbc5f4 A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
34 ggdGione
2e6906bbc5f4 A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
35 two
2e6906bbc5f4 A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
36 three
2e6906bbc5f4 A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
37 four
2e6906bbc5f4 A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
38 five
2e6906bbc5f4 A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
39 six
2e6906bbc5f4 A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
40 seven
2e6906bbc5f4 A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
41 eight
2e6906bbc5f4 A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
42 nine
2e6906bbc5f4 A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
43 ten:set ul=100
2e6906bbc5f4 A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
44 3Gdd:set ul=100
2e6906bbc5f4 A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
45 dd:set ul=100
2e6906bbc5f4 A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
46 dd:set ul=100
2e6906bbc5f4 A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
47 dd:set ul=100
2e6906bbc5f4 A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
48 dd:set ul=100
2e6906bbc5f4 A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
49 dd:set ul=100
2e6906bbc5f4 A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
50 :w
2e6906bbc5f4 A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
51 :bwipe!
2e6906bbc5f4 A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
52 :e Xtestfile
2e6906bbc5f4 A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
53 uuu:w >>test.out
2e6906bbc5f4 A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
54 :"
3246
c4898d6d73a2 updated for version 7.3.392
Bram Moolenaar <bram@vim.org>
parents: 2504
diff changeset
55 :" Test that reading the undofiles when setting undofile works
c4898d6d73a2 updated for version 7.3.392
Bram Moolenaar <bram@vim.org>
parents: 2504
diff changeset
56 :set noundofile ul=0
c4898d6d73a2 updated for version 7.3.392
Bram Moolenaar <bram@vim.org>
parents: 2504
diff changeset
57 i
c4898d6d73a2 updated for version 7.3.392
Bram Moolenaar <bram@vim.org>
parents: 2504
diff changeset
58 u:e! Xtestfile
c4898d6d73a2 updated for version 7.3.392
Bram Moolenaar <bram@vim.org>
parents: 2504
diff changeset
59 :set undofile ul=100
c4898d6d73a2 updated for version 7.3.392
Bram Moolenaar <bram@vim.org>
parents: 2504
diff changeset
60 uuuuuu:w >>test.out
2438
9614fe67034c Fix test 72 not setting encryption method. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents: 2267
diff changeset
61 :" And now with encryption, cryptmethod=zip
2239
732cb7b31956 Crypt the text in the undo file if the file itself is crypted.
Bram Moolenaar <bram@vim.org>
parents: 2232
diff changeset
62 :e! Xtestfile
2438
9614fe67034c Fix test 72 not setting encryption method. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents: 2267
diff changeset
63 :set undofile cm=zip
2459
64df5d008ccb Fix: test 69 didn't work on MS-Windows. Test 72 beeped too often.
Bram Moolenaar <bram@vim.org>
parents: 2456
diff changeset
64 ggdGimonday
2239
732cb7b31956 Crypt the text in the undo file if the file itself is crypted.
Bram Moolenaar <bram@vim.org>
parents: 2232
diff changeset
65 tuesday
732cb7b31956 Crypt the text in the undo file if the file itself is crypted.
Bram Moolenaar <bram@vim.org>
parents: 2232
diff changeset
66 wednesday
732cb7b31956 Crypt the text in the undo file if the file itself is crypted.
Bram Moolenaar <bram@vim.org>
parents: 2232
diff changeset
67 thursday
732cb7b31956 Crypt the text in the undo file if the file itself is crypted.
Bram Moolenaar <bram@vim.org>
parents: 2232
diff changeset
68 friday:set ul=100
732cb7b31956 Crypt the text in the undo file if the file itself is crypted.
Bram Moolenaar <bram@vim.org>
parents: 2232
diff changeset
69 kkkdd:set ul=100
732cb7b31956 Crypt the text in the undo file if the file itself is crypted.
Bram Moolenaar <bram@vim.org>
parents: 2232
diff changeset
70 dd:set ul=100
732cb7b31956 Crypt the text in the undo file if the file itself is crypted.
Bram Moolenaar <bram@vim.org>
parents: 2232
diff changeset
71 dd:set ul=100
732cb7b31956 Crypt the text in the undo file if the file itself is crypted.
Bram Moolenaar <bram@vim.org>
parents: 2232
diff changeset
72 :X
732cb7b31956 Crypt the text in the undo file if the file itself is crypted.
Bram Moolenaar <bram@vim.org>
parents: 2232
diff changeset
73 foobar
732cb7b31956 Crypt the text in the undo file if the file itself is crypted.
Bram Moolenaar <bram@vim.org>
parents: 2232
diff changeset
74 foobar
732cb7b31956 Crypt the text in the undo file if the file itself is crypted.
Bram Moolenaar <bram@vim.org>
parents: 2232
diff changeset
75 :w!
732cb7b31956 Crypt the text in the undo file if the file itself is crypted.
Bram Moolenaar <bram@vim.org>
parents: 2232
diff changeset
76 :bwipe!
732cb7b31956 Crypt the text in the undo file if the file itself is crypted.
Bram Moolenaar <bram@vim.org>
parents: 2232
diff changeset
77 :e Xtestfile
732cb7b31956 Crypt the text in the undo file if the file itself is crypted.
Bram Moolenaar <bram@vim.org>
parents: 2232
diff changeset
78 foobar
732cb7b31956 Crypt the text in the undo file if the file itself is crypted.
Bram Moolenaar <bram@vim.org>
parents: 2232
diff changeset
79 :set key=
732cb7b31956 Crypt the text in the undo file if the file itself is crypted.
Bram Moolenaar <bram@vim.org>
parents: 2232
diff changeset
80 uu:w >>test.out
732cb7b31956 Crypt the text in the undo file if the file itself is crypted.
Bram Moolenaar <bram@vim.org>
parents: 2232
diff changeset
81 :"
732cb7b31956 Crypt the text in the undo file if the file itself is crypted.
Bram Moolenaar <bram@vim.org>
parents: 2232
diff changeset
82 :"
2438
9614fe67034c Fix test 72 not setting encryption method. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents: 2267
diff changeset
83 :" With encryption, cryptmethod=blowfish
2239
732cb7b31956 Crypt the text in the undo file if the file itself is crypted.
Bram Moolenaar <bram@vim.org>
parents: 2232
diff changeset
84 :e! Xtestfile
6122
18ac55444b37 updated for version 7.4.399
Bram Moolenaar <bram@vim.org>
parents: 5704
diff changeset
85 rubbish
2438
9614fe67034c Fix test 72 not setting encryption method. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents: 2267
diff changeset
86 :set undofile cm=blowfish
2459
64df5d008ccb Fix: test 69 didn't work on MS-Windows. Test 72 beeped too often.
Bram Moolenaar <bram@vim.org>
parents: 2456
diff changeset
87 ggdGijan
2239
732cb7b31956 Crypt the text in the undo file if the file itself is crypted.
Bram Moolenaar <bram@vim.org>
parents: 2232
diff changeset
88 feb
732cb7b31956 Crypt the text in the undo file if the file itself is crypted.
Bram Moolenaar <bram@vim.org>
parents: 2232
diff changeset
89 mar
732cb7b31956 Crypt the text in the undo file if the file itself is crypted.
Bram Moolenaar <bram@vim.org>
parents: 2232
diff changeset
90 apr
732cb7b31956 Crypt the text in the undo file if the file itself is crypted.
Bram Moolenaar <bram@vim.org>
parents: 2232
diff changeset
91 jun:set ul=100
732cb7b31956 Crypt the text in the undo file if the file itself is crypted.
Bram Moolenaar <bram@vim.org>
parents: 2232
diff changeset
92 kk0ifoo :set ul=100
732cb7b31956 Crypt the text in the undo file if the file itself is crypted.
Bram Moolenaar <bram@vim.org>
parents: 2232
diff changeset
93 dd:set ul=100
732cb7b31956 Crypt the text in the undo file if the file itself is crypted.
Bram Moolenaar <bram@vim.org>
parents: 2232
diff changeset
94 ibar :set ul=100
732cb7b31956 Crypt the text in the undo file if the file itself is crypted.
Bram Moolenaar <bram@vim.org>
parents: 2232
diff changeset
95 :X
732cb7b31956 Crypt the text in the undo file if the file itself is crypted.
Bram Moolenaar <bram@vim.org>
parents: 2232
diff changeset
96 foobar
732cb7b31956 Crypt the text in the undo file if the file itself is crypted.
Bram Moolenaar <bram@vim.org>
parents: 2232
diff changeset
97 foobar
732cb7b31956 Crypt the text in the undo file if the file itself is crypted.
Bram Moolenaar <bram@vim.org>
parents: 2232
diff changeset
98 :w!
732cb7b31956 Crypt the text in the undo file if the file itself is crypted.
Bram Moolenaar <bram@vim.org>
parents: 2232
diff changeset
99 :bwipe!
732cb7b31956 Crypt the text in the undo file if the file itself is crypted.
Bram Moolenaar <bram@vim.org>
parents: 2232
diff changeset
100 :e Xtestfile
732cb7b31956 Crypt the text in the undo file if the file itself is crypted.
Bram Moolenaar <bram@vim.org>
parents: 2232
diff changeset
101 foobar
732cb7b31956 Crypt the text in the undo file if the file itself is crypted.
Bram Moolenaar <bram@vim.org>
parents: 2232
diff changeset
102 :set key=
732cb7b31956 Crypt the text in the undo file if the file itself is crypted.
Bram Moolenaar <bram@vim.org>
parents: 2232
diff changeset
103 /bar
732cb7b31956 Crypt the text in the undo file if the file itself is crypted.
Bram Moolenaar <bram@vim.org>
parents: 2232
diff changeset
104 :.w >>test.out
732cb7b31956 Crypt the text in the undo file if the file itself is crypted.
Bram Moolenaar <bram@vim.org>
parents: 2232
diff changeset
105 u:.w >>test.out
732cb7b31956 Crypt the text in the undo file if the file itself is crypted.
Bram Moolenaar <bram@vim.org>
parents: 2232
diff changeset
106 u:.w >>test.out
732cb7b31956 Crypt the text in the undo file if the file itself is crypted.
Bram Moolenaar <bram@vim.org>
parents: 2232
diff changeset
107 u:.w >>test.out
732cb7b31956 Crypt the text in the undo file if the file itself is crypted.
Bram Moolenaar <bram@vim.org>
parents: 2232
diff changeset
108 :"
6122
18ac55444b37 updated for version 7.4.399
Bram Moolenaar <bram@vim.org>
parents: 5704
diff changeset
109 :" With encryption, cryptmethod=blowfish2
18ac55444b37 updated for version 7.4.399
Bram Moolenaar <bram@vim.org>
parents: 5704
diff changeset
110 :e! Xtestfile
18ac55444b37 updated for version 7.4.399
Bram Moolenaar <bram@vim.org>
parents: 5704
diff changeset
111 rubbish
18ac55444b37 updated for version 7.4.399
Bram Moolenaar <bram@vim.org>
parents: 5704
diff changeset
112 :set undofile cm=blowfish2
18ac55444b37 updated for version 7.4.399
Bram Moolenaar <bram@vim.org>
parents: 5704
diff changeset
113 ggdGijan
18ac55444b37 updated for version 7.4.399
Bram Moolenaar <bram@vim.org>
parents: 5704
diff changeset
114 feb
18ac55444b37 updated for version 7.4.399
Bram Moolenaar <bram@vim.org>
parents: 5704
diff changeset
115 mar
18ac55444b37 updated for version 7.4.399
Bram Moolenaar <bram@vim.org>
parents: 5704
diff changeset
116 apr
18ac55444b37 updated for version 7.4.399
Bram Moolenaar <bram@vim.org>
parents: 5704
diff changeset
117 jun:set ul=100
18ac55444b37 updated for version 7.4.399
Bram Moolenaar <bram@vim.org>
parents: 5704
diff changeset
118 kk0ifoo :set ul=100
18ac55444b37 updated for version 7.4.399
Bram Moolenaar <bram@vim.org>
parents: 5704
diff changeset
119 dd:set ul=100
18ac55444b37 updated for version 7.4.399
Bram Moolenaar <bram@vim.org>
parents: 5704
diff changeset
120 ibar :set ul=100
18ac55444b37 updated for version 7.4.399
Bram Moolenaar <bram@vim.org>
parents: 5704
diff changeset
121 :X
18ac55444b37 updated for version 7.4.399
Bram Moolenaar <bram@vim.org>
parents: 5704
diff changeset
122 foo2bar
18ac55444b37 updated for version 7.4.399
Bram Moolenaar <bram@vim.org>
parents: 5704
diff changeset
123 foo2bar
18ac55444b37 updated for version 7.4.399
Bram Moolenaar <bram@vim.org>
parents: 5704
diff changeset
124 :w!
18ac55444b37 updated for version 7.4.399
Bram Moolenaar <bram@vim.org>
parents: 5704
diff changeset
125 :bwipe!
18ac55444b37 updated for version 7.4.399
Bram Moolenaar <bram@vim.org>
parents: 5704
diff changeset
126 :e Xtestfile
18ac55444b37 updated for version 7.4.399
Bram Moolenaar <bram@vim.org>
parents: 5704
diff changeset
127 foo2bar
18ac55444b37 updated for version 7.4.399
Bram Moolenaar <bram@vim.org>
parents: 5704
diff changeset
128 :set key=
18ac55444b37 updated for version 7.4.399
Bram Moolenaar <bram@vim.org>
parents: 5704
diff changeset
129 /bar
18ac55444b37 updated for version 7.4.399
Bram Moolenaar <bram@vim.org>
parents: 5704
diff changeset
130 :.w >>test.out
18ac55444b37 updated for version 7.4.399
Bram Moolenaar <bram@vim.org>
parents: 5704
diff changeset
131 u:.w >>test.out
18ac55444b37 updated for version 7.4.399
Bram Moolenaar <bram@vim.org>
parents: 5704
diff changeset
132 u:.w >>test.out
18ac55444b37 updated for version 7.4.399
Bram Moolenaar <bram@vim.org>
parents: 5704
diff changeset
133 u:.w >>test.out
18ac55444b37 updated for version 7.4.399
Bram Moolenaar <bram@vim.org>
parents: 5704
diff changeset
134 :"
2232
2e6906bbc5f4 A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
135 :" Rename the undo file so that it gets cleaned up.
5704
47a673b20e49 updated for version 7.4.197
Bram Moolenaar <bram@vim.org>
parents: 3246
diff changeset
136 :if has("vms")
47a673b20e49 updated for version 7.4.197
Bram Moolenaar <bram@vim.org>
parents: 3246
diff changeset
137 : call rename("_un_Xtestfile", "Xtestundo")
47a673b20e49 updated for version 7.4.197
Bram Moolenaar <bram@vim.org>
parents: 3246
diff changeset
138 :else
47a673b20e49 updated for version 7.4.197
Bram Moolenaar <bram@vim.org>
parents: 3246
diff changeset
139 : call rename(".Xtestfile.un~", "Xtestundo")
47a673b20e49 updated for version 7.4.197
Bram Moolenaar <bram@vim.org>
parents: 3246
diff changeset
140 :endif
2232
2e6906bbc5f4 A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
141 :qa!
2e6906bbc5f4 A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
142 ENDTEST
2e6906bbc5f4 A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
143
2e6906bbc5f4 A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
144 1111 -----
2e6906bbc5f4 A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
145 2222 -----
2e6906bbc5f4 A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
146
2e6906bbc5f4 A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
147 123456789