comparison src/testdir/test_quickfix.vim @ 31259:a7dba627a21b v9.0.0963

patch 9.0.0963: function name does not match autocmd event name Commit: https://github.com/vim/vim/commit/269aa2b29ac3e4c0083d929e2477c95e7bd1177a Author: zeertzjq <zeertzjq@outlook.com> Date: Mon Nov 28 11:36:50 2022 +0000 patch 9.0.0963: function name does not match autocmd event name Problem: Function name does not match autocmd event name. Solution: Rename "optionsset" to "optionset". (closes https://github.com/vim/vim/issues/11630)
author Bram Moolenaar <Bram@vim.org>
date Mon, 28 Nov 2022 12:45:04 +0100
parents f55ddd3748f5
children b6bef244837e
comparison
equal deleted inserted replaced
31258:83cca39db17d 31259:a7dba627a21b
3392 augroup END 3392 augroup END
3393 augroup! QF_Test 3393 augroup! QF_Test
3394 endfunc 3394 endfunc
3395 3395
3396 func Test_cclose_in_autocmd() 3396 func Test_cclose_in_autocmd()
3397 " Problem is only triggered if "starting" is zero, so that the OptionsSet 3397 " Problem is only triggered if "starting" is zero, so that the OptionSet
3398 " event will be triggered. 3398 " event will be triggered.
3399 call test_override('starting', 1) 3399 call test_override('starting', 1)
3400 augroup QF_Test 3400 augroup QF_Test
3401 au! 3401 au!
3402 au FileType qf :call assert_fails(':cclose', 'E788:') 3402 au FileType qf :call assert_fails(':cclose', 'E788:')