Skip to content

Commit 2e1696d

Browse files
authored
Merge pull request #235 from vim-denops/add-popup
👍 Add functions in `popup.txt` for Vim
2 parents 1b02e30 + ef8588d commit 2e1696d

File tree

3 files changed

+4303
-3677
lines changed

3 files changed

+4303
-3677
lines changed

.scripts/gen-function/gen-function.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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"));
5051
const vimFnSet = difference(new Set(vimDefs.map((def) => def.fn)), manualFnSet);
5152

5253
const 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
];
5859
for (const nvimHelpDownloadUrl of nvimHelpDownloadUrls) {
5960
console.log(`Download from ${nvimHelpDownloadUrl}`);

0 commit comments

Comments
 (0)