aboutsummaryrefslogtreecommitdiff
path: root/scripts/vim-patch.sh
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2017-02-27 09:29:46 -0500
committerJames McCoy <jamessan@jamessan.com>2017-02-27 09:31:25 -0500
commit0882ca50d805e23dad955ab6a204ee021af6d7d8 (patch)
treed62663ce9cd558a8d9a33ec51a1871f7fca96777 /scripts/vim-patch.sh
parent6041fd7a86e1fcebac96eb4d30fe2028089127b3 (diff)
downloadrneovim-0882ca50d805e23dad955ab6a204ee021af6d7d8.tar.gz
rneovim-0882ca50d805e23dad955ab6a204ee021af6d7d8.tar.bz2
rneovim-0882ca50d805e23dad955ab6a204ee021af6d7d8.zip
vim-patch.sh: Bump base Vim version to 7.4.1980
All patches up through 7.4.1974 have been merged and 7.4.1975-1979 are pending in a PR. [ci skip]
Diffstat (limited to 'scripts/vim-patch.sh')
-rwxr-xr-xscripts/vim-patch.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/vim-patch.sh b/scripts/vim-patch.sh
index 75915372a3..bf4b7d9080 100755
--- a/scripts/vim-patch.sh
+++ b/scripts/vim-patch.sh
@@ -305,9 +305,9 @@ list_vim_patches() {
printf "\nVim patches missing from Neovim:\n"
- # Get commits since 7.4.602.
+ # Get missing Vim commits
local vim_commits
- vim_commits="$(cd "${VIM_SOURCE_DIR}" && git log --reverse --format='%H' v7.4.602..HEAD)"
+ vim_commits="$(cd "${VIM_SOURCE_DIR}" && git log --reverse --format='%H' v7.4.1979..HEAD)"
local vim_commit
for vim_commit in ${vim_commits}; do