forked from aniani/vim
Problem: Vim9: using Vim9 script for autaload not tested. Solution: Add a test. Update help.
10 lines
124 B
VimL
10 lines
124 B
VimL
vim9script
|
|
|
|
func auto9#getsome()
|
|
return 'some'
|
|
endfunc
|
|
|
|
def auto9#add42(count: number): number
|
|
return count + 42
|
|
enddef
|