diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/download-unicode-files.sh | 2 | ||||
-rwxr-xr-x | scripts/gen_vimdoc.py | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/scripts/download-unicode-files.sh b/scripts/download-unicode-files.sh index 5f38d0589a..12474d3c1e 100755 --- a/scripts/download-unicode-files.sh +++ b/scripts/download-unicode-files.sh @@ -30,7 +30,7 @@ for filename in $data_files ; do done for filename in $emoji_files ; do - curl -L -o "$UNIDIR/$filename" "$DOWNLOAD_URL_BASE/emoji/latest/$filename" + curl -L -o "$UNIDIR/$filename" "$DOWNLOAD_URL_BASE/UNIDATA/emoji/$filename" ( cd "$UNIDIR" git add $filename diff --git a/scripts/gen_vimdoc.py b/scripts/gen_vimdoc.py index f754452c02..c42b568220 100755 --- a/scripts/gen_vimdoc.py +++ b/scripts/gen_vimdoc.py @@ -113,10 +113,12 @@ CONFIG = { 'section_order': [ 'vim.lua', 'shared.lua', + 'uri.lua', ], 'files': ' '.join([ os.path.join(base_dir, 'src/nvim/lua/vim.lua'), os.path.join(base_dir, 'runtime/lua/vim/shared.lua'), + os.path.join(base_dir, 'runtime/lua/vim/uri.lua'), ]), 'file_patterns': '*.lua', 'fn_name_prefix': '', @@ -129,6 +131,7 @@ CONFIG = { 'module_override': { # `shared` functions are exposed on the `vim` module. 'shared': 'vim', + 'uri': 'vim', }, 'append_only': [ 'shared.lua', |