From dec38601c5af8a5b52087926c387cfa71faaaeb1 Mon Sep 17 00:00:00 2001 From: Jan Edmund Lazo Date: Sat, 13 Oct 2018 15:02:57 -0400 Subject: [PATCH] vim-patch: rename path to check_colors.vim --- scripts/vim-patch.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/vim-patch.sh b/scripts/vim-patch.sh index bb434316a7..c16956b0b9 100755 --- a/scripts/vim-patch.sh +++ b/scripts/vim-patch.sh @@ -183,6 +183,10 @@ preprocess_patch() { # 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" + + # Rename path to check_colors.vim + LC_ALL=C sed -e 's@\( [ab]/runtime\)/colors/\(tools/check_colors.vim\)@\1/\2@g' \ + "$file" > "$file".tmp && mv "$file".tmp "$file" } get_vimpatch() {