diff options
author | Johan Klokkhammer Helsing <johanhelsing@gmail.com> | 2015-11-03 21:59:03 +0100 |
---|---|---|
committer | Florian Walch <florian@fwalch.com> | 2015-11-08 17:03:22 +0100 |
commit | cbb70448788358c0da95090607a40a26f43bdb9f (patch) | |
tree | 90f534672f6cc2ea7bba4e224b14094c667161b7 | |
parent | 69360615803625e8fce7eea0318331678c07d3c8 (diff) | |
download | rneovim-cbb70448788358c0da95090607a40a26f43bdb9f.tar.gz rneovim-cbb70448788358c0da95090607a40a26f43bdb9f.tar.bz2 rneovim-cbb70448788358c0da95090607a40a26f43bdb9f.zip |
Fix the examples for vim-patch.sh so they are valid commands. #3631
The examples were missing the required -p flag.
-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 a1b58c7c91..4a567727d8 100755 --- a/scripts/vim-patch.sh +++ b/scripts/vim-patch.sh @@ -205,8 +205,8 @@ list_vim_patches() { echo " To port one of the above patches to Neovim, execute" echo " this script with the patch revision as argument." echo - echo " Examples: '${BASENAME} 7.4.487'" - echo " '${BASENAME} 1e8ebf870720e7b671f98f22d653009826304c4f'" + echo " Examples: '${BASENAME} -p 7.4.487'" + echo " '${BASENAME} -p 1e8ebf870720e7b671f98f22d653009826304c4f'" } review_pr() { |