diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-08-03 10:13:43 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-03 10:13:43 +0200 |
commit | 5cc4ea38c01e5307a7bfa7b2e238d69e1062c194 (patch) | |
tree | 536633af92e2e1c850fb4eee9f2b73842f6c96e2 /scripts/vim-patch.sh | |
parent | 8160a0e04244d054c4555a5a1af09963470964a1 (diff) | |
parent | 29f44aab5a52747c36bac27cbe8e06efb82eba1d (diff) | |
download | rneovim-5cc4ea38c01e5307a7bfa7b2e238d69e1062c194.tar.gz rneovim-5cc4ea38c01e5307a7bfa7b2e238d69e1062c194.tar.bz2 rneovim-5cc4ea38c01e5307a7bfa7b2e238d69e1062c194.zip |
Merge #7105 from justinmk/doc-tui
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 37c472ce5b..5ebb6a38b3 100755 --- a/scripts/vim-patch.sh +++ b/scripts/vim-patch.sh @@ -135,7 +135,7 @@ preprocess_patch() { local na_src='proto\|Make*\|gui_*\|if_lua\|if_mzsch\|if_olepp\|if_ole\|if_perl\|if_py\|if_ruby\|if_tcl\|if_xcmdsrv' 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 + # Remove channel.txt, netbeans.txt, os_*.txt, term.txt, todo.txt, version*.txt, tags local na_doc='channel\.txt\|netbeans\.txt\|os_\w\+\.txt\|term\.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" |