Re: Vim9: Not able to invoke one exported function from another

2022-01-11 Fir de Conversatie Bram Moolenaar
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

2022-01-10 Fir de Conversatie Yegappan Lakshmanan
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()