diff options
author | James McCoy <jamessan@jamessan.com> | 2017-02-27 09:29:46 -0500 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2017-02-27 09:31:25 -0500 |
commit | 0882ca50d805e23dad955ab6a204ee021af6d7d8 (patch) | |
tree | d62663ce9cd558a8d9a33ec51a1871f7fca96777 | |
parent | 6041fd7a86e1fcebac96eb4d30fe2028089127b3 (diff) | |
download | rneovim-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]
-rwxr-xr-x | scripts/vim-patch.sh | 4 |
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 |