diff options
author | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-10-13 12:41:44 -0400 |
---|---|---|
committer | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-11-12 12:36:40 -0500 |
commit | 89621464fce8bbdca3ca767e9a00c3b82de68180 (patch) | |
tree | ae415eae896b666dc6a711481bf9ccd0895b8deb /scripts/vim-patch.sh | |
parent | abd5b0c6c38cc8ad6970192d8261fbc260f6fa40 (diff) | |
download | rneovim-89621464fce8bbdca3ca767e9a00c3b82de68180.tar.gz rneovim-89621464fce8bbdca3ca767e9a00c3b82de68180.tar.bz2 rneovim-89621464fce8bbdca3ca767e9a00c3b82de68180.zip |
vim-patch: move test_urls.vim out of runtime/
Rename it to check_urls.vim, similar to check-includes.py.
Diffstat (limited to 'scripts/vim-patch.sh')
-rwxr-xr-x | scripts/vim-patch.sh | 4 |
1 files changed, 4 insertions, 0 deletions
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() { |