diff options
author | Christian Clason <c.clason@uni-graz.at> | 2021-09-10 13:20:11 +0200 |
---|---|---|
committer | Christian Clason <c.clason@uni-graz.at> | 2021-09-10 13:20:11 +0200 |
commit | c58a667e57d8dd84bbbd3ba1ddafb6a603b7b37b (patch) | |
tree | e322111c330ef7ec7b9d56eba201246d3f7c5f43 /scripts/vim-patch.sh | |
parent | be557dddf42c52faa3032396b256acd01529c7b1 (diff) | |
download | rneovim-c58a667e57d8dd84bbbd3ba1ddafb6a603b7b37b.tar.gz rneovim-c58a667e57d8dd84bbbd3ba1ddafb6a603b7b37b.tar.bz2 rneovim-c58a667e57d8dd84bbbd3ba1ddafb6a603b7b37b.zip |
chore(vim-patch): add doc/vim9.txt to unwanted files
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 e9242c4dbe..f4b817dfff 100755 --- a/scripts/vim-patch.sh +++ b/scripts/vim-patch.sh @@ -190,7 +190,7 @@ preprocess_patch() { 2>/dev/null $nvim --cmd 'set dir=/tmp' +'g@^diff --git a/src/\S*\<\%(testdir/\)\@<!\%('"${na_src}"'\)@norm! d/\v(^diff)|%$
' +w +q "$file" # Remove unwanted Vim doc files. - local na_doc='channel\.txt\|netbeans\.txt\|os_\w\+\.txt\|term\.txt\|todo\.txt\|version\d\.txt\|sponsor\.txt\|intro\.txt\|tags' + local na_doc='channel\.txt\|netbeans\.txt\|os_\w\+\.txt\|term\.txt\|todo\.txt\|version\d\.txt\|vim9\.txt\|sponsor\.txt\|intro\.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. |