diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-11-28 20:01:36 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-28 20:01:36 +0800 |
commit | b2bb3973d9c7f25acfead2718d74fcf5b1e4551e (patch) | |
tree | 49ed3882a2c55875fdcd66fe5af443ad52a63887 /src/nvim/testdir | |
parent | a6f0444ab9b5d8947ff7e48718a6b3a484a096fa (diff) | |
download | rneovim-b2bb3973d9c7f25acfead2718d74fcf5b1e4551e.tar.gz rneovim-b2bb3973d9c7f25acfead2718d74fcf5b1e4551e.tar.bz2 rneovim-b2bb3973d9c7f25acfead2718d74fcf5b1e4551e.zip |
vim-patch:9.0.0963: function name does not match autocmd event name (#21215)
Problem: Function name does not match autocmd event name.
Solution: Rename "optionsset" to "optionset". (closes vim/vim#11630)
https://github.com/vim/vim/commit/269aa2b29ac3e4c0083d929e2477c95e7bd1177a
Diffstat (limited to 'src/nvim/testdir')
-rw-r--r-- | src/nvim/testdir/test_quickfix.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/testdir/test_quickfix.vim b/src/nvim/testdir/test_quickfix.vim index 5edcf9ce0e..bde6f5a4fc 100644 --- a/src/nvim/testdir/test_quickfix.vim +++ b/src/nvim/testdir/test_quickfix.vim @@ -3237,7 +3237,7 @@ func Test_cclose_from_copen() endfunc func Test_cclose_in_autocmd() - " Problem is only triggered if "starting" is zero, so that the OptionsSet + " Problem is only triggered if "starting" is zero, so that the OptionSet " event will be triggered. " call test_override('starting', 1) augroup QF_Test |