view src/testdir/test_exists_autocmd.vim @ 28513:6a1e5b188374 v8.2.4781

patch 8.2.4781: Maxima files are not recognized Commit: https://github.com/vim/vim/commit/d0a20c9d111da75febb60ffee2e15f727ab6a5ad Author: Doron Behar <doron.behar@gmail.com> Date: Mon Apr 18 14:32:42 2022 +0100 patch 8.2.4781: Maxima files are not recognized Problem: Maxima files are not recognized. Solution: Add patterns to detect Maxima files. (Doron Behar, closes https://github.com/vim/vim/issues/10211)
author Bram Moolenaar <Bram@vim.org>
date Mon, 18 Apr 2022 15:45:02 +0200
parents 08940efa6b4e
children
line wrap: on
line source

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

function Test_AutoCommands()
  let results=[]
  augroup auexists
  augroup END
  call assert_true(exists("##BufEnter"))
  call assert_false(exists("#BufEnter"))
  au BufEnter * let g:entered=1
  call assert_true(exists("#BufEnter"))
  call assert_false(exists("#auexists#BufEnter"))
  augroup auexists
  au BufEnter * let g:entered=1
  augroup END
  call assert_true(exists("#auexists#BufEnter"))
  call assert_false(exists("#BufEnter#*.test"))
  au BufEnter *.test let g:entered=1
  call assert_true(exists("#BufEnter#*.test"))
  edit testfile.test
  call assert_false(exists("#BufEnter#<buffer>"))
  au BufEnter <buffer> let g:entered=1
  call assert_true(exists("#BufEnter#<buffer>"))
  edit testfile2.test
  call assert_false(exists("#BufEnter#<buffer>"))
endfunction

" vim: shiftwidth=2 sts=2 expandtab