diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-04-15 17:38:46 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-15 17:38:46 +0800 |
commit | 071c455420dec7992a06a55e8bd443b769ded369 (patch) | |
tree | 3b019807e8e654cb779463008a438450174b4faf /test/old/testdir/test_normal.vim | |
parent | 0a61cb60a633f05e3f05f8d5dae241910a92ee1f (diff) | |
parent | 1b556c04bfd3f4c381db5f62a2e25ebf63165712 (diff) | |
download | rneovim-071c455420dec7992a06a55e8bd443b769ded369.tar.gz rneovim-071c455420dec7992a06a55e8bd443b769ded369.tar.bz2 rneovim-071c455420dec7992a06a55e8bd443b769ded369.zip |
Merge pull request #23102 from zeertzjq/vim-8.2.1378
vim-patch:8.2.{1378,3856,4361,4373,4476}
Diffstat (limited to 'test/old/testdir/test_normal.vim')
-rw-r--r-- | test/old/testdir/test_normal.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/old/testdir/test_normal.vim b/test/old/testdir/test_normal.vim index ca91ab2ceb..fe8611d527 100644 --- a/test/old/testdir/test_normal.vim +++ b/test/old/testdir/test_normal.vim @@ -732,10 +732,10 @@ func Test_opfunc_callback() bw! # Test for using a script-local function name - def s:LocalOpFunc(type: string): void + def LocalOpFunc(type: string): void g:LocalOpFuncArgs = [type] enddef - &opfunc = s:LocalOpFunc + &opfunc = LocalOpFunc g:LocalOpFuncArgs = [] normal! g@l assert_equal(['char'], g:LocalOpFuncArgs) |