annotate src/testdir/test_signs.in @ 7645:1529ae1c456a v7.4.1122

commit https://github.com/vim/vim/commit/42c9cfa7f4d2f176234e385573ff2fb1f61915e5 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jan 17 18:49:57 2016 +0100 patch 7.4.1122 Problem: Test 92 and 93 fail when using gvim on a system with a non utf-8 locale. Solution: Avoid using .gvimrc by adding -U NONE. (Yukihiro Nakadaira)
author Christian Brabandt <cb@256bit.org>
date Sun, 17 Jan 2016 19:00:04 +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