annotate src/testdir/test_signs.in @ 6961:c2b132add309 v7.4.798

patch 7.4.798 Problem: Repeating a change in Visual mode does not work as expected. (Urtica Dioica) Solution: Make redo in Visual mode work better. (Christian Brabandt)
author Bram Moolenaar <bram@vim.org>
date Tue, 28 Jul 2015 11:21:32 +0200
parents 6a598be6d4e8
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
6309
6a598be6d4e8 Add the missing test files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
1 Tests for signs
6a598be6d4e8 Add the missing test files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
2 STARTTEST
6a598be6d4e8 Add the missing test files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
3 :so small.vim
6a598be6d4e8 Add the missing test files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
4 :if !has("signs")
6a598be6d4e8 Add the missing test files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
5 : e! test.ok
6a598be6d4e8 Add the missing test files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
6 : wq! test.out
6a598be6d4e8 Add the missing test files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
7 :endif
6a598be6d4e8 Add the missing test files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
8 :"
6a598be6d4e8 Add the missing test files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
9 :sign define JumpSign text=x
6a598be6d4e8 Add the missing test files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
10 :exe 'sign place 42 line=2 name=JumpSign buffer=' . bufnr('')
6a598be6d4e8 Add the missing test files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
11 :" Split the window to the bottom to verify :sign-jump will stay in the current
6a598be6d4e8 Add the missing test files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
12 :" window if the buffer is displayed there
6a598be6d4e8 Add the missing test files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
13 :bot split
6a598be6d4e8 Add the missing test files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
14 :exe 'sign jump 42 buffer=' . bufnr('')
6a598be6d4e8 Add the missing test files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
15 :call append(line('$'), winnr())
6a598be6d4e8 Add the missing test files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
16 :$-1,$w! test.out
6a598be6d4e8 Add the missing test files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
17 ENDTEST
6a598be6d4e8 Add the missing test files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
18
6a598be6d4e8 Add the missing test files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
19 STARTTEST
6a598be6d4e8 Add the missing test files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
20 :qa!
6a598be6d4e8 Add the missing test files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
21 ENDTEST
6a598be6d4e8 Add the missing test files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
22