view src/testdir/test_exists_autocmd.vim @ 25694:ce91372ca07b v8.2.3383

patch 8.2.3383: Vim9: completion for :disassemble adds parenthesis Commit: https://github.com/vim/vim/commit/9aecf79c45da5593e4d8c0de1b2d212edc4765ce Author: naohiro ono <obcat@icloud.com> Date: Sat Aug 28 15:56:06 2021 +0200 patch 8.2.3383: Vim9: completion for :disassemble adds parenthesis Problem: Vim9: completion for :disassemble adds parenthesis. Solution: Don't add parenthesis. (Naohiro Ono, closes https://github.com/vim/vim/issues/8802)
author Bram Moolenaar <Bram@vim.org>
date Sat, 28 Aug 2021 16:00:04 +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