From 89621464fce8bbdca3ca767e9a00c3b82de68180 Mon Sep 17 00:00:00 2001 From: Jan Edmund Lazo Date: Sat, 13 Oct 2018 12:41:44 -0400 Subject: vim-patch: move test_urls.vim out of runtime/ Rename it to check_urls.vim, similar to check-includes.py. --- scripts/vim-patch.sh | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'scripts/vim-patch.sh') diff --git a/scripts/vim-patch.sh b/scripts/vim-patch.sh index 725863102a..bb434316a7 100755 --- a/scripts/vim-patch.sh +++ b/scripts/vim-patch.sh @@ -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() { -- cgit