Mercurial > vim
annotate src/testdir/test67.in @ 10444:2edda415c28a v8.0.0116
commit https://github.com/vim/vim/commit/6dbf66aa3e2197ce41f2b1cc7602bb9c15840548
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Dec 1 21:32:32 2016 +0100
patch 8.0.0116
Problem: When reading English help and using CTRl-] the language from
'helplang' is used.
Solution: Make help tag jumps keep the language. (Tatsuki, test by Hirohito
Higashi, closes #1249)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Thu, 01 Dec 2016 21:45:04 +0100 |
parents | e5dddd764fef |
children |
rev | line source |
---|---|
1962 | 1 Test that groups and patterns are tested correctly when calling exists() for |
2 autocommands. | |
3 | |
4 STARTTEST | |
5 :so small.vim | |
6 :let results=[] | |
7 :augroup auexists | |
8 :augroup END | |
9 :call add(results, "##BufEnter: " . exists("##BufEnter")) | |
10 :call add(results, "#BufEnter: " . exists("#BufEnter")) | |
11 :au BufEnter * let g:entered=1 | |
12 :call add(results, "#BufEnter: " . exists("#BufEnter")) | |
13 :call add(results, "#auexists#BufEnter: " . exists("#auexists#BufEnter")) | |
14 :augroup auexists | |
15 :au BufEnter * let g:entered=1 | |
16 :augroup END | |
17 :call add(results, "#auexists#BufEnter: " . exists("#auexists#BufEnter")) | |
18 :call add(results, "#BufEnter#*.test: " . exists("#BufEnter#*.test")) | |
19 :au BufEnter *.test let g:entered=1 | |
20 :call add(results, "#BufEnter#*.test: " . exists("#BufEnter#*.test")) | |
21 :edit testfile.test | |
22 :call add(results, "#BufEnter#<buffer>: " . exists("#BufEnter#<buffer>")) | |
23 :au BufEnter <buffer> let g:entered=1 | |
24 :call add(results, "#BufEnter#<buffer>: " . exists("#BufEnter#<buffer>")) | |
25 :edit testfile2.test | |
26 :call add(results, "#BufEnter#<buffer>: " . exists("#BufEnter#<buffer>")) | |
10270
e5dddd764fef
commit https://github.com/vim/vim/commit/3e8474dd50f64c998bb665ce852f584a58dede6b
Christian Brabandt <cb@256bit.org>
parents:
1962
diff
changeset
|
27 :e! test.out |
1962 | 28 :call append(0, results) |
29 :$d | |
30 :w | |
31 :qa! | |
32 ENDTEST | |
33 |