@@ -37,6 +37,7 @@ const vimHelpDownloadUrls = [
3737 `https://raw.githubusercontent.com/vim/vim/v${ VIM_VERSION } /runtime/doc/builtin.txt` ,
3838 `https://raw.githubusercontent.com/vim/vim/v${ VIM_VERSION } /runtime/doc/channel.txt` ,
3939 `https://raw.githubusercontent.com/vim/vim/v${ VIM_VERSION } /runtime/doc/eval.txt` ,
40+ `https://raw.githubusercontent.com/vim/vim/v${ VIM_VERSION } /runtime/doc/popup.txt` ,
4041 `https://raw.githubusercontent.com/vim/vim/v${ VIM_VERSION } /runtime/doc/sign.txt` ,
4142 `https://raw.githubusercontent.com/vim/vim/v${ VIM_VERSION } /runtime/doc/terminal.txt` ,
4243 `https://raw.githubusercontent.com/vim/vim/v${ VIM_VERSION } /runtime/doc/testing.txt` ,
@@ -50,10 +51,10 @@ const vimDefs = parse(vimHelps.join("\n"));
5051const vimFnSet = difference ( new Set ( vimDefs . map ( ( def ) => def . fn ) ) , manualFnSet ) ;
5152
5253const nvimHelpDownloadUrls = [
54+ `https://raw.githubusercontent.com/neovim/neovim/v${ NVIM_VERSION } /runtime/doc/api.txt` ,
5355 `https://raw.githubusercontent.com/neovim/neovim/v${ NVIM_VERSION } /runtime/doc/builtin.txt` ,
5456 `https://raw.githubusercontent.com/neovim/neovim/v${ NVIM_VERSION } /runtime/doc/eval.txt` ,
5557 `https://raw.githubusercontent.com/neovim/neovim/v${ NVIM_VERSION } /runtime/doc/sign.txt` ,
56- `https://raw.githubusercontent.com/neovim/neovim/v${ NVIM_VERSION } /runtime/doc/api.txt` ,
5758] ;
5859for ( const nvimHelpDownloadUrl of nvimHelpDownloadUrls ) {
5960 console . log ( `Download from ${ nvimHelpDownloadUrl } ` ) ;
0 commit comments