diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-04-29 16:56:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-29 16:56:40 +0200 |
commit | 0df1b6655be5385c9cbb70dca1c042c6447ec50b (patch) | |
tree | 40036d5266f153856219fc2fd5b04ec3f848bb26 /scripts/vim-patch.sh | |
parent | 5a304b78647d1a3913cbab197ccde033ae0510cd (diff) | |
download | rneovim-0df1b6655be5385c9cbb70dca1c042c6447ec50b.tar.gz rneovim-0df1b6655be5385c9cbb70dca1c042c6447ec50b.tar.bz2 rneovim-0df1b6655be5385c9cbb70dca1c042c6447ec50b.zip |
doc: Removed t_XX options/keycodes. (#6616)
Closes #4482
TODO: revisit find_key_option_len()
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 3ade90a65b..3b083e7b83 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\|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" # Remove "Last change ..." changes in doc files. |