Mercurial > vim
annotate src/testdir/test_changelist.vim @ 14033:bcda3b864c31 v8.1.0034
patch 8.1.0034: cursor not restored with ":edit #"
commit https://github.com/vim/vim/commit/adb8fbec4f4059d214fe6acf2485ffd35e803450
Author: Bram Moolenaar <Bram@vim.org>
Date: Mon Jun 4 20:34:23 2018 +0200
patch 8.1.0034: cursor not restored with ":edit #"
Problem: Cursor not restored with ":edit #".
Solution: Don't assume autocommands moved the cursor when it was moved to
the first non-blank.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Mon, 04 Jun 2018 20:45:06 +0200 |
parents | 3f3d9ed211b2 |
children | 4935244c1128 |
rev | line source |
---|---|
13280
fbda23eb0996
patch 8.0.1514: getting the list of changes is not easy
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
1 " Tests for the changelist functionality |
fbda23eb0996
patch 8.0.1514: getting the list of changes is not easy
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
2 |
fbda23eb0996
patch 8.0.1514: getting the list of changes is not easy
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
3 " Tests for the getchangelist() function |
fbda23eb0996
patch 8.0.1514: getting the list of changes is not easy
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
4 func Test_getchangelist() |
fbda23eb0996
patch 8.0.1514: getting the list of changes is not easy
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
5 if !has("jumplist") |
fbda23eb0996
patch 8.0.1514: getting the list of changes is not easy
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
6 return |
fbda23eb0996
patch 8.0.1514: getting the list of changes is not easy
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
7 endif |
fbda23eb0996
patch 8.0.1514: getting the list of changes is not easy
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
8 |
fbda23eb0996
patch 8.0.1514: getting the list of changes is not easy
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
9 bwipe! |
fbda23eb0996
patch 8.0.1514: getting the list of changes is not easy
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
10 enew |
fbda23eb0996
patch 8.0.1514: getting the list of changes is not easy
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
11 call assert_equal([], getchangelist(10)) |
13290
3f3d9ed211b2
patch 8.0.1519: getchangelist() does not use argument as bufname()
Christian Brabandt <cb@256bit.org>
parents:
13280
diff
changeset
|
12 call assert_equal([[], 0], getchangelist('%')) |
13280
fbda23eb0996
patch 8.0.1514: getting the list of changes is not easy
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
13 |
fbda23eb0996
patch 8.0.1514: getting the list of changes is not easy
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
14 call writefile(['line1', 'line2', 'line3'], 'Xfile1.txt') |
fbda23eb0996
patch 8.0.1514: getting the list of changes is not easy
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
15 call writefile(['line1', 'line2', 'line3'], 'Xfile2.txt') |
fbda23eb0996
patch 8.0.1514: getting the list of changes is not easy
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
16 |
fbda23eb0996
patch 8.0.1514: getting the list of changes is not easy
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
17 edit Xfile1.txt |
fbda23eb0996
patch 8.0.1514: getting the list of changes is not easy
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
18 exe "normal 1Goline\<C-G>u1.1" |
fbda23eb0996
patch 8.0.1514: getting the list of changes is not easy
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
19 exe "normal 3Goline\<C-G>u2.1" |
fbda23eb0996
patch 8.0.1514: getting the list of changes is not easy
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
20 exe "normal 5Goline\<C-G>u3.1" |
fbda23eb0996
patch 8.0.1514: getting the list of changes is not easy
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
21 normal g; |
fbda23eb0996
patch 8.0.1514: getting the list of changes is not easy
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
22 call assert_equal([[ |
fbda23eb0996
patch 8.0.1514: getting the list of changes is not easy
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
23 \ {'lnum' : 2, 'col' : 4, 'coladd' : 0}, |
fbda23eb0996
patch 8.0.1514: getting the list of changes is not easy
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
24 \ {'lnum' : 4, 'col' : 4, 'coladd' : 0}, |
fbda23eb0996
patch 8.0.1514: getting the list of changes is not easy
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
25 \ {'lnum' : 6, 'col' : 4, 'coladd' : 0}], 2], |
13290
3f3d9ed211b2
patch 8.0.1519: getchangelist() does not use argument as bufname()
Christian Brabandt <cb@256bit.org>
parents:
13280
diff
changeset
|
26 \ getchangelist('%')) |
13280
fbda23eb0996
patch 8.0.1514: getting the list of changes is not easy
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
27 |
fbda23eb0996
patch 8.0.1514: getting the list of changes is not easy
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
28 hide edit Xfile2.txt |
fbda23eb0996
patch 8.0.1514: getting the list of changes is not easy
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
29 exe "normal 1GOline\<C-G>u1.0" |
fbda23eb0996
patch 8.0.1514: getting the list of changes is not easy
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
30 exe "normal 2Goline\<C-G>u2.0" |
fbda23eb0996
patch 8.0.1514: getting the list of changes is not easy
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
31 call assert_equal([[ |
fbda23eb0996
patch 8.0.1514: getting the list of changes is not easy
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
32 \ {'lnum' : 1, 'col' : 6, 'coladd' : 0}, |
fbda23eb0996
patch 8.0.1514: getting the list of changes is not easy
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
33 \ {'lnum' : 3, 'col' : 6, 'coladd' : 0}], 2], |
13290
3f3d9ed211b2
patch 8.0.1519: getchangelist() does not use argument as bufname()
Christian Brabandt <cb@256bit.org>
parents:
13280
diff
changeset
|
34 \ getchangelist('%')) |
13280
fbda23eb0996
patch 8.0.1514: getting the list of changes is not easy
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
35 hide enew |
fbda23eb0996
patch 8.0.1514: getting the list of changes is not easy
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
36 |
fbda23eb0996
patch 8.0.1514: getting the list of changes is not easy
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
37 call assert_equal([[ |
fbda23eb0996
patch 8.0.1514: getting the list of changes is not easy
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
38 \ {'lnum' : 2, 'col' : 4, 'coladd' : 0}, |
fbda23eb0996
patch 8.0.1514: getting the list of changes is not easy
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
39 \ {'lnum' : 4, 'col' : 4, 'coladd' : 0}, |
fbda23eb0996
patch 8.0.1514: getting the list of changes is not easy
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
40 \ {'lnum' : 6, 'col' : 4, 'coladd' : 0}], 3], getchangelist(2)) |
fbda23eb0996
patch 8.0.1514: getting the list of changes is not easy
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
41 call assert_equal([[ |
fbda23eb0996
patch 8.0.1514: getting the list of changes is not easy
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
42 \ {'lnum' : 1, 'col' : 6, 'coladd' : 0}, |
fbda23eb0996
patch 8.0.1514: getting the list of changes is not easy
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
43 \ {'lnum' : 3, 'col' : 6, 'coladd' : 0}], 2], getchangelist(3)) |
fbda23eb0996
patch 8.0.1514: getting the list of changes is not easy
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
44 |
fbda23eb0996
patch 8.0.1514: getting the list of changes is not easy
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
45 bwipe! |
fbda23eb0996
patch 8.0.1514: getting the list of changes is not easy
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
46 call delete('Xfile1.txt') |
fbda23eb0996
patch 8.0.1514: getting the list of changes is not easy
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
47 call delete('Xfile2.txt') |
fbda23eb0996
patch 8.0.1514: getting the list of changes is not easy
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
48 endfunc |