]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
runtime(doc) Update help text for matchbufline() and matchstrlist()
authorYegappan Lakshmanan <yegappan@yahoo.com>
Sat, 24 Feb 2024 09:09:43 +0000 (10:09 +0100)
committerChristian Brabandt <cb@256bit.org>
Sat, 24 Feb 2024 09:09:43 +0000 (10:09 +0100)
closes: #14080

Signed-off-by: Yegappan Lakshmanan <yegappan@yahoo.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
runtime/doc/builtin.txt
runtime/doc/tags

index b117bf84b11a3948aa00af688edab8cd812a64d2..849b1808f1e196fd9c0d208f2a91bbf01d72e860 100644 (file)
@@ -1,4 +1,4 @@
-*builtin.txt*  For Vim version 9.1.  Last change: 2024 Feb 22
+*builtin.txt*  For Vim version 9.1.  Last change: 2024 Feb 24
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -6090,6 +6090,7 @@ match({expr}, {pat} [, {start} [, {count}]])                      *match()*
                Note that when {count} is added the way {start} works changes,
                see above.
 
+                                               *match-pattern*
                See |pattern| for the patterns that are accepted.
                The 'ignorecase' option is used to set the ignore-caseness of
                the pattern.  'smartcase' is NOT used.  The matching is always
@@ -6237,6 +6238,9 @@ matchbufline({buf}, {pat}, {lnum}, {end}, [, {dict}])
                This function works only for loaded buffers. First call
                |bufload()| if needed.
 
+               See |match-pattern| for information about the effect of some
+               option settings on the pattern.
+
                When {buf} is not a valid buffer, the buffer is not loaded or
                {lnum} or {end} is not valid then an error is given and an
                empty |List| is returned.
@@ -6411,6 +6415,9 @@ matchstrlist({list}, {pat} [, {dict}])
                    submatches  a List of submatches.  Present only if
                                "submatches" is set to v:true in {dict}.
 
+               See |match-pattern| for information about the effect of some
+               option settings on the pattern.
+
                Example: >
                    :echo matchstrlist(['tik tok'], '\<\k\+\>')
                    [{'idx': 0, 'byteidx': 0, 'text': 'tik'}, {'idx': 0, 'byteidx': 4, 'text': 'tok'}]
index 5c2eee33e676c3a34400e4905188df8fdf8b8e75..fb0b540535bb4a4fbf7e3ff884f5da33e266846f 100644 (file)
@@ -8615,6 +8615,7 @@ masm.vim  syntax.txt      /*masm.vim*
 match()        builtin.txt     /*match()*
 match-highlight        pattern.txt     /*match-highlight*
 match-parens   tips.txt        /*match-parens*
+match-pattern  builtin.txt     /*match-pattern*
 matchadd()     builtin.txt     /*matchadd()*
 matchaddpos()  builtin.txt     /*matchaddpos()*
 matcharg()     builtin.txt     /*matcharg()*