annotate src/testdir/test_signs.in @ 9007:d5c6f1c5cd28 v7.4.1789

commit https://github.com/vim/vim/commit/437905c25d4cedfa16d0f87392e4a000d22362b7 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Apr 26 19:01:05 2016 +0200 patch 7.4.1789 Problem: Cannot use ch_read() in the close callback. Solution: Do not discard the channel if there is readahead. Do not discard readahead if there is a close callback.
author Christian Brabandt <cb@256bit.org>
date Tue, 26 Apr 2016 19:15:06 +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