diff options
author | lonerover <pathfinder1644@yahoo.com> | 2017-02-08 12:05:38 +0800 |
---|---|---|
committer | lonerover <pathfinder1644@yahoo.com> | 2017-02-14 16:14:41 +0800 |
commit | 891d412d6cc6ecea1c807ded5522cb1e23b8afc2 (patch) | |
tree | 208bddd9ab72f3ae64e07b38561e16432ed2efd3 /scripts/vim-patch.sh | |
parent | a2d44c9af6d899273205fa9a9b0ee048823ea476 (diff) | |
download | rneovim-891d412d6cc6ecea1c807ded5522cb1e23b8afc2.tar.gz rneovim-891d412d6cc6ecea1c807ded5522cb1e23b8afc2.tar.bz2 rneovim-891d412d6cc6ecea1c807ded5522cb1e23b8afc2.zip |
vim-patch.sh: don't ignore runtime/doc/tagsrch.txt
Diffstat (limited to 'scripts/vim-patch.sh')
-rwxr-xr-x | scripts/vim-patch.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/vim-patch.sh b/scripts/vim-patch.sh index ad0317aa4b..75915372a3 100755 --- a/scripts/vim-patch.sh +++ b/scripts/vim-patch.sh @@ -136,7 +136,7 @@ preprocess_patch() { 2>/dev/null $nvim --cmd 'set dir=/tmp' +'g@^diff --git a/src/\S*\<\%('${na_src}'\)@norm! d/\v(^diff)|%$
' +w +q "$file" # Remove channel.txt, netbeans.txt, os_*.txt, todo.txt, version*.txt, tags - local na_doc='channel\.txt\|netbeans\.txt\|os_\w\+\.txt\|todo\.txt\|version\d\.txt\|tags' + local na_doc='channel\.txt\|netbeans\.txt\|os_\w\+\.txt\|todo\.txt\|version\d\.txt\|tags$' 2>/dev/null $nvim --cmd 'set dir=/tmp' +'g@^diff --git a/runtime/doc/\%('${na_doc}'\)@norm! d/\v(^diff)|%$
' +w +q "$file" # Remove some testdir/Make_*.mak files |