diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-07-29 22:11:05 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-07-29 22:11:05 +0200 |
commit | ea2d8d25718836bf627b67b7fcd28a1e528bb7b9 (patch) | |
tree | 7e7b8bf47580bd922ef16614903881ef4e8892cd /src/testdir/sautest | |
parent | c7e44a7e4caedc1bc33f5c8e481109c0ae002823 (diff) | |
download | vim-git-ea2d8d25718836bf627b67b7fcd28a1e528bb7b9.tar.gz |
patch 8.2.1325: Vim9: using Vim9 script for autaload not testedv8.2.1325
Problem: Vim9: using Vim9 script for autaload not tested.
Solution: Add a test. Update help.
Diffstat (limited to 'src/testdir/sautest')
-rw-r--r-- | src/testdir/sautest/autoload/auto9.vim | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/testdir/sautest/autoload/auto9.vim b/src/testdir/sautest/autoload/auto9.vim new file mode 100644 index 000000000..c89ce3a33 --- /dev/null +++ b/src/testdir/sautest/autoload/auto9.vim @@ -0,0 +1,9 @@ +vim9script + +func auto9#getsome() + return 'some' +endfunc + +def auto9#add42(count: number): number + return count + 42 +enddef |