view src/testdir/test67.in @ 11537:e0eb2de60f09 v8.0.0651

patch 8.0.0651: build failure without the auto command feature commit https://github.com/vim/vim/commit/157069b04e64eff72d2b34a2f727dfb6e2190cf3 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jun 22 14:56:12 2017 +0200 patch 8.0.0651: build failure without the auto command feature Problem: Build failure without the auto command feature. Solution: Add #ifdef. (closes https://github.com/vim/vim/issues/1782)
author Christian Brabandt <cb@256bit.org>
date Thu, 22 Jun 2017 15:00:04 +0200
parents e5dddd764fef
children
line wrap: on
line source

Test that groups and patterns are tested correctly when calling exists() for
autocommands.

STARTTEST
:so small.vim
:let results=[]
:augroup auexists
:augroup END
:call add(results, "##BufEnter: " . exists("##BufEnter"))
:call add(results, "#BufEnter: " . exists("#BufEnter"))
:au BufEnter * let g:entered=1
:call add(results, "#BufEnter: " . exists("#BufEnter"))
:call add(results, "#auexists#BufEnter: " . exists("#auexists#BufEnter"))
:augroup auexists
:au BufEnter * let g:entered=1
:augroup END
:call add(results, "#auexists#BufEnter: " . exists("#auexists#BufEnter"))
:call add(results, "#BufEnter#*.test: " . exists("#BufEnter#*.test"))
:au BufEnter *.test let g:entered=1
:call add(results, "#BufEnter#*.test: " . exists("#BufEnter#*.test"))
:edit testfile.test
:call add(results, "#BufEnter#<buffer>: " . exists("#BufEnter#<buffer>"))
:au BufEnter <buffer> let g:entered=1
:call add(results, "#BufEnter#<buffer>: " . exists("#BufEnter#<buffer>"))
:edit testfile2.test
:call add(results, "#BufEnter#<buffer>: " . exists("#BufEnter#<buffer>"))
:e! test.out
:call append(0, results)
:$d
:w
:qa!
ENDTEST