commit | ea2d8d25718836bf627b67b7fcd28a1e528bb7b9 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Wed Jul 29 22:11:05 2020 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Wed Jul 29 22:11:05 2020 +0200 |
tree | 7e7b8bf47580bd922ef16614903881ef4e8892cd | |
parent | c7e44a7e4caedc1bc33f5c8e481109c0ae002823 [diff] [blame] |
patch 8.2.1325: Vim9: using Vim9 script for autaload not tested Problem: Vim9: using Vim9 script for autaload not tested. Solution: Add a test. Update help.
diff --git a/src/testdir/sautest/autoload/auto9.vim b/src/testdir/sautest/autoload/auto9.vim new file mode 100644 index 0000000..c89ce3a --- /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