diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-08-01 15:29:47 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2019-08-01 15:43:53 +0200 |
commit | 5342342426777160300a431ef8c9200fb151f793 (patch) | |
tree | a42d08dce118ecbad51c0c74fa475e37ecf7b06e /scripts/vim-patch.sh | |
parent | 62b5f25b6b2c2f49b9e2e6525e87dacd41d82183 (diff) | |
download | rneovim-5342342426777160300a431ef8c9200fb151f793.tar.gz rneovim-5342342426777160300a431ef8c9200fb151f793.tar.bz2 rneovim-5342342426777160300a431ef8c9200fb151f793.zip |
runtime: move matchit.vim to /pack/dist/opt/
Align matchit.vim with upstream Vim. We don't want to maintain a fork of
matchit.vim; our small changes should be sent to
https://github.com/chrisbra/matchit
Diffstat (limited to 'scripts/vim-patch.sh')
-rwxr-xr-x | scripts/vim-patch.sh | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/scripts/vim-patch.sh b/scripts/vim-patch.sh index d16266dd36..7de9d9c0a3 100755 --- a/scripts/vim-patch.sh +++ b/scripts/vim-patch.sh @@ -178,12 +178,6 @@ preprocess_patch() { LC_ALL=C sed -e 's/\( [ab]\/src\)/\1\/nvim/g' \ "$file" > "$file".tmp && mv "$file".tmp "$file" - # 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" - LC_ALL=C sed -e 's@\( [ab]/runtime\)/pack/dist/opt/matchit/doc/\(matchit.txt\)@\1/doc/pi_\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" |