aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/gen_vimdoc.py2
-rw-r--r--scripts/lua2dox.lua2
-rwxr-xr-xscripts/release.sh1
-rwxr-xr-xscripts/vim-patch.sh10
4 files changed, 9 insertions, 6 deletions
diff --git a/scripts/gen_vimdoc.py b/scripts/gen_vimdoc.py
index 50accbdde8..876d46c18f 100755
--- a/scripts/gen_vimdoc.py
+++ b/scripts/gen_vimdoc.py
@@ -95,7 +95,7 @@ CONFIG = {
'append_only': [],
},
'lua': {
- 'filename': 'if_lua.txt',
+ 'filename': 'lua.txt',
'section_start_token': '*lua-vim*',
'section_order': [
'vim.lua',
diff --git a/scripts/lua2dox.lua b/scripts/lua2dox.lua
index 438f734917..171621e38d 100644
--- a/scripts/lua2dox.lua
+++ b/scripts/lua2dox.lua
@@ -65,7 +65,7 @@ FILTER_PATTERNS = *.lua=lua2dox_filter
Either add them to the end or find the appropriate entry in Doxyfile.
-There are other lines that you might like to alter, but see futher documentation for details.
+There are other lines that you might like to alter, but see further documentation for details.
<li> When Doxyfile is edited run "doxygen"
diff --git a/scripts/release.sh b/scripts/release.sh
index 67268ba9bf..5b4902a2d7 100755
--- a/scripts/release.sh
+++ b/scripts/release.sh
@@ -93,6 +93,7 @@ fi
_do_bump_commit
echo "
Next steps:
+ - Update runtime/nvim.appdata.xml on _master_
- Run tests/CI (version_spec.lua)!
- Push the tag:
git push --follow-tags
diff --git a/scripts/vim-patch.sh b/scripts/vim-patch.sh
index 2a04805606..b6a0df4649 100755
--- a/scripts/vim-patch.sh
+++ b/scripts/vim-patch.sh
@@ -501,13 +501,15 @@ show_vimpatches() {
fi
done
- printf "\nInstructions:
+ cat << EOF
+
+Instructions:
To port one of the above patches to Neovim, execute this script with the patch revision as argument and follow the instructions, e.g.
- '%s -p v8.0.1234', or '%s -P v8.0.1234'
+ '${BASENAME} -p v8.0.1234', or '${BASENAME} -P v8.0.1234'
NOTE: Please port the _oldest_ patch if you possibly can.
- You can use '%s -l path/to/file' to see what patches are missing for a file.
-" "${BASENAME}" "${BASENAME}"
+ You can use '${BASENAME} -l path/to/file' to see what patches are missing for a file.
+EOF
}
review_commit() {