annotate src/testdir/test_signs.in @ 7765:9c0d554a497e v7.4.1180

commit https://github.com/vim/vim/commit/7465c6375fd60eab603681bcad8a8744ddc31614 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Jan 25 22:20:27 2016 +0100 patch 7.4.1180 Problem: Crash with invalid argument to glob2regpat(). Solution: Check for NULL. (Justin M. Keyes, closes https://github.com/vim/vim/issues/596) Add a test.
author Christian Brabandt <cb@256bit.org>
date Mon, 25 Jan 2016 22:30:05 +0100
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