@@ -37,6 +37,7 @@ const vimHelpDownloadUrls = [
37
37
`https://raw.githubusercontent.com/vim/vim/v${ VIM_VERSION } /runtime/doc/builtin.txt` ,
38
38
`https://raw.githubusercontent.com/vim/vim/v${ VIM_VERSION } /runtime/doc/channel.txt` ,
39
39
`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` ,
40
41
`https://raw.githubusercontent.com/vim/vim/v${ VIM_VERSION } /runtime/doc/sign.txt` ,
41
42
`https://raw.githubusercontent.com/vim/vim/v${ VIM_VERSION } /runtime/doc/terminal.txt` ,
42
43
`https://raw.githubusercontent.com/vim/vim/v${ VIM_VERSION } /runtime/doc/testing.txt` ,
@@ -50,10 +51,10 @@ const vimDefs = parse(vimHelps.join("\n"));
50
51
const vimFnSet = difference ( new Set ( vimDefs . map ( ( def ) => def . fn ) ) , manualFnSet ) ;
51
52
52
53
const nvimHelpDownloadUrls = [
54
+ `https://raw.githubusercontent.com/neovim/neovim/v${ NVIM_VERSION } /runtime/doc/api.txt` ,
53
55
`https://raw.githubusercontent.com/neovim/neovim/v${ NVIM_VERSION } /runtime/doc/builtin.txt` ,
54
56
`https://raw.githubusercontent.com/neovim/neovim/v${ NVIM_VERSION } /runtime/doc/eval.txt` ,
55
57
`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` ,
57
58
] ;
58
59
for ( const nvimHelpDownloadUrl of nvimHelpDownloadUrls ) {
59
60
console . log ( `Download from ${ nvimHelpDownloadUrl } ` ) ;
0 commit comments