vim-patch: move test_urls.vim out of runtime/

Rename it to check_urls.vim, similar to check-includes.py.
This commit is contained in:
Jan Edmund Lazo 2018-10-13 12:41:44 -04:00
parent abd5b0c6c3
commit 89621464fc
2 changed files with 4 additions and 0 deletions

View File

@ -179,6 +179,10 @@ preprocess_patch() {
# Rename path to matchit plugin.
LC_ALL=C sed -e 's@\( [ab]/runtime\)/pack/dist/opt/matchit/\(plugin/matchit.vim\)@\1/\2@g' \
"$file" > "$file".tmp && mv "$file".tmp "$file"
# Rename test_urls.vim to check_urls.vim
LC_ALL=C sed -e 's@\( [ab]\)/runtime/doc/test\(_urls.vim\)@\1/scripts/check\2@g' \
"$file" > "$file".tmp && mv "$file".tmp "$file"
}
get_vimpatch() {