Re: Vim9: Not able to invoke one exported function from another
Yegappan wrote: > Using the latest Vim, when I source the following script: > > - > vim9script > > mkdir('Xtest/autoload', 'p') > > var lines =<< trim END > vim9script > import "./a.vim" > def Xt
Vim9: Not able to invoke one exported function from another
Hi, Using the latest Vim, when I source the following script: - vim9script mkdir('Xtest/autoload', 'p') var lines =<< trim END vim9script import "./a.vim" def Xtest#Test(): string return a.F1()