diff options
author | Bram Moolenaar <Bram@vim.org> | 2021-07-28 20:10:16 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-07-28 20:10:16 +0200 |
commit | 53f7fccc9413c9f770694b56f40f242d383b2d5f (patch) | |
tree | 6803c702a3f895b63acd2cd8afb4a9737eb47bea /runtime/pack | |
parent | 327d3ee4557027b51aad86e68743a85ed3a6f52b (diff) | |
download | vim-git-53f7fccc9413c9f770694b56f40f242d383b2d5f.tar.gz |
Update runtime files
Diffstat (limited to 'runtime/pack')
-rw-r--r-- | runtime/pack/dist/opt/matchit/doc/matchit.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/pack/dist/opt/matchit/doc/matchit.txt b/runtime/pack/dist/opt/matchit/doc/matchit.txt index f2c51e10b..ce8e7046f 100644 --- a/runtime/pack/dist/opt/matchit/doc/matchit.txt +++ b/runtime/pack/dist/opt/matchit/doc/matchit.txt @@ -4,7 +4,7 @@ For instructions on installing this file, type `:help matchit-install` inside Vim. -For Vim version 8.1. Last change: 2020 Mar 01 +For Vim version 8.1. Last change: 2021 May 17 VIM REFERENCE MANUAL by Benji Fisher et al @@ -320,7 +320,7 @@ should work (and have the same effect as "foobar:barfoo:endfoobar"), although this has not been thoroughly tested. You can use |zero-width| patterns such as |\@<=| and |\zs|. (The latter has -not been thouroughly tested in matchit.vim.) For example, if the keyword "if" +not been thoroughly tested in matchit.vim.) For example, if the keyword "if" must occur at the start of the line, with optional white space, you might use the pattern "\(^\s*\)\@<=if" so that the cursor will end on the "i" instead of at the start of the line. For another example, if HTML had only one tag then |