Mercurial > vim
view src/testdir/test_exists_autocmd.vim @ 32234:e87f89061076 v9.0.1448
patch 9.0.1448: diff test fails on MacOS 13
Commit: https://github.com/vim/vim/commit/d76670fc0d9bd9e09d8a3aa68ef58f796136d964
Author: ichizok <gclient.gaap@gmail.com>
Date: Thu Apr 13 17:23:45 2023 +0100
patch 9.0.1448: diff test fails on MacOS 13
Problem: Diff test fails on MacOS 13.
Solution: Install GNU diffutils. (Ozaki Kiichi, closes https://github.com/vim/vim/issues/12258)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Thu, 13 Apr 2023 18:30: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