runtime(doc): Use correct option-name tags

Commit: 
https://github.com/vim/vim/commit/85cd509885a05c3a6bb029fb378b1295f107f8f6
Author: Hirohito Higashi <h.east....@gmail.com>
Date:   Wed Aug 6 12:44:36 2025 +0200

    runtime(doc): Use correct option-name tags
    
    closes: https://github.com/vim/vim/issues/17857
    
    Signed-off-by: Hirohito Higashi <h.east....@gmail.com>
    Signed-off-by: Christian Brabandt <c...@256bit.org>

diff --git a/runtime/doc/builtin.txt b/runtime/doc/builtin.txt
index 0eb82b9e1..84a672cb0 100644
--- a/runtime/doc/builtin.txt
+++ b/runtime/doc/builtin.txt
@@ -1,4 +1,4 @@
-*builtin.txt*  For Vim version 9.1.  Last change: 2025 Jul 22
+*builtin.txt*  For Vim version 9.1.  Last change: 2025 Aug 06
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -4314,13 +4314,13 @@ getcompletion({pat}, {type} [, {filtered}])             
*getcompletion()*
                customlist,{func} custom completion, defined via {func}
                diff_buffer     |:diffget| and |:diffput| completion
                dir             directory names
-               dir_in_path     directory names in |'cdpath'|
+               dir_in_path     directory names in 'cdpath'
                environment     environment variable names
                event           autocommand events
                expression      Vim expression
                file            file and directory names
-               file_in_path    file and directory names in |'path'|
-               filetype        filetype names |'filetype'|
+               file_in_path    file and directory names in 'path'
+               filetype        filetype names 'filetype'
                filetypecmd     |:filetype| suboptions
                function        function name
                help            help subjects
@@ -4340,7 +4340,7 @@ getcompletion({pat}, {type} [, {filtered}])               
*getcompletion()*
                shellcmd        Shell command
                shellcmdline    Shell command line with filename arguments
                sign            |:sign| suboptions
-               syntax          syntax file names |'syntax'|
+               syntax          syntax file names 'syntax'
                syntime         |:syntime| suboptions
                tag             tags
                tag_listfiles   tags, file names
@@ -11185,7 +11185,7 @@ strridx({haystack}, {needle} [, {start}])               
        *strridx()*
 
 strtrans({string})                                     *strtrans()*
                The result is a String, which is {string} with all unprintable
-               characters translated into printable characters |'isprint'|.
+               characters translated into printable characters 'isprint'.
                Like they are shown in a window.  Example: >
                        echo strtrans(@a)
 <              This displays a newline in register a as "^@" instead of
@@ -11703,7 +11703,7 @@ taglist({expr} [, {filename}])                          
*taglist()*
                Refer to |tag-regexp| for more information about the tag
                search regular expression pattern.
 
-               Refer to |'tags'| for information about how the tags file is
+               Refer to 'tags' for information about how the tags file is
                located by Vim. Refer to |tags-file-format| for the format of
                the tags file generated by the different ctags tools.
 
@@ -12235,7 +12235,7 @@ virtcol({expr} [, {list} [, {winid}]])                  
*virtcol()*
                last character.  When "off" is omitted zero is used.  When
                Virtual editing is active in the current mode, a position
                beyond the end of the line can be returned.  Also see
-               |'virtualedit'|
+               'virtualedit'
 
                If {list} is present and non-zero then virtcol() returns a
                List with the first and last screen position occupied by the
@@ -12901,12 +12901,12 @@ clipboard_working     Compiled with 'clipboard' 
support and it can be used.
 cmdline_compl          Compiled with |cmdline-completion| support.
 cmdline_hist           Compiled with |cmdline-history| support.
 cmdline_info           Compiled with 'showcmd' and 'ruler' support.
-comments               Compiled with |'comments'| support.
+comments               Compiled with 'comments' support.
 compatible             Compiled to be very Vi compatible.
 conpty                 Platform where |ConPTY| can be used.
 cryptv                 Compiled with encryption support |encryption|.
 cscope                 Compiled with |cscope| support.
-cursorbind             Compiled with |'cursorbind'| (always true)
+cursorbind             Compiled with 'cursorbind' (always true)
 debug                  Compiled with "DEBUG" defined.
 dialog_con             Compiled with console dialog support.
 dialog_con_gui         Compiled with console and GUI dialog support.
@@ -12921,8 +12921,7 @@ emacs_tags              Compiled with support for Emacs 
tags.
 eval                   Compiled with expression evaluation support.  Always
                        true, of course!
 ex_extra               |+ex_extra| (always true)
-extra_search           Compiled with support for |'incsearch'| and
-                       |'hlsearch'|
+extra_search           Compiled with support for 'incsearch' and 'hlsearch'
 farsi                  Support for Farsi was removed |farsi|.
 file_in_path           Compiled with support for |gf| and |<cfile>| (always
                        true)
@@ -13053,7 +13052,7 @@ textprop                Compiled with support for 
|text-properties|.
 tgetent                        Compiled with tgetent support, able to use a 
termcap
                        or terminfo file.
 timers                 Compiled with |timer_start()| support.
-title                  Compiled with window title support |'title'|.
+title                  Compiled with window title support 'title'.
                        (always true)
 toolbar                        Compiled with support for |gui-toolbar|.
 ttyin                  input is a terminal (tty)
@@ -13061,7 +13060,7 @@ ttyout                  output is a terminal (tty)
 unix                   Unix version of Vim. *+unix*
 unnamedplus            Compiled with support for "unnamedplus" in 'clipboard'
 user_commands          User-defined commands. (always true)
-vartabs                        Compiled with variable tabstop support 
|'vartabstop'|.
+vartabs                        Compiled with variable tabstop support 
'vartabstop'.
 vcon                   Win32: Virtual console support is working, can use
                        'termguicolors'. Also see |+vtp|.
 vertsplit              Compiled with vertically split windows |:vsplit|.
diff --git a/runtime/doc/change.txt b/runtime/doc/change.txt
index a09637370..734540f37 100644
--- a/runtime/doc/change.txt
+++ b/runtime/doc/change.txt
@@ -1,4 +1,4 @@
-*change.txt*    For Vim version 9.1.  Last change: 2025 Jul 15
+*change.txt*    For Vim version 9.1.  Last change: 2025 Aug 06
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -34,13 +34,13 @@ For inserting text see |insert.txt|.
                        The <Del> key does not take a [count].  Instead, it
                        deletes the last character of the count.
                        See |:fixdel| if the <Del> key does not do what you
-                       want.  See |'whichwrap'| for deleting a line break
+                       want.  See 'whichwrap' for deleting a line break
                        (join lines).
 
                                                        *X* *dh*
 ["x]X                  Delete [count] characters before the cursor [into
                        register x] (not |linewise|).  Does the same as "dh".
-                       Also see |'whichwrap'|.
+                       Also see 'whichwrap'.
 
                                                        *d*
 ["x]d{motion}          Delete text that {motion} moves over [into register
@@ -609,11 +609,11 @@ comment (starting with '"') after the `:!` command.
 ={motion}              Filter {motion} lines through the external program
                        given with the 'equalprg' option.  When the 'equalprg'
                        option is empty (this is the default), use the
-                       internal formatting function |C-indenting| and
-                       |'lisp'|.  But when 'indentexpr' is not empty, it will
-                       be used instead |indent-expression|.  When Vim was
-                       compiled without internal formatting then the "indent"
-                       program is used as a last resort.
+                       internal formatting function |C-indenting| and 'lisp'.
+                       But when 'indentexpr' is not empty, it will be used
+                       instead |indent-expression|.  When Vim was compiled
+                       without internal formatting then the "indent" program
+                       is used as a last resort.
 
                                                        *==*
 ==                     Filter [count] lines like with ={motion}.
diff --git a/runtime/doc/diff.txt b/runtime/doc/diff.txt
index 97577fd7b..150e8745f 100644
--- a/runtime/doc/diff.txt
+++ b/runtime/doc/diff.txt
@@ -1,4 +1,4 @@
-*diff.txt*      For Vim version 9.1.  Last change: 2025 Jul 26
+*diff.txt*      For Vim version 9.1.  Last change: 2025 Aug 06
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -461,7 +461,7 @@ Manually set two anchors using line numbers via 
buffer-local options: >
 ==============================================================================
 6. Diff options                                                *diff-options*
 
-Also see |'diffopt'| and the "diff" item of |'fillchars'|.
+Also see 'diffopt' and the "diff" item of 'fillchars'.
 
                                            *diff-slow* *diff_translations*
 For very long lines, the diff syntax highlighting might be slow, especially
diff --git a/runtime/doc/editing.txt b/runtime/doc/editing.txt
index af9f39e23..aeb615c4a 100644
--- a/runtime/doc/editing.txt
+++ b/runtime/doc/editing.txt
@@ -1,4 +1,4 @@
-*editing.txt*   For Vim version 9.1.  Last change: 2025 Jul 20
+*editing.txt*   For Vim version 9.1.  Last change: 2025 Aug 06
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -1380,7 +1380,7 @@ present in 'cpoptions' and "!" is not used in the command.
 
 :cd[!] {path}          Change the current directory to {path}.
                        If {path} is relative, it is searched for in the
-                       directories listed in |'cdpath'|.
+                       directories listed in 'cdpath'.
                        Clear any window-local directory.
                        Does not change the meaning of an already opened file,
                        because its full path name is remembered.  Files from
diff --git a/runtime/doc/filetype.txt b/runtime/doc/filetype.txt
index 63d7b030e..0de7b20f3 100644
--- a/runtime/doc/filetype.txt
+++ b/runtime/doc/filetype.txt
@@ -1,4 +1,4 @@
-*filetype.txt* For Vim version 9.1.  Last change: 2025 May 10
+*filetype.txt* For Vim version 9.1.  Last change: 2025 Aug 06
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -42,7 +42,7 @@ Detail: The ":filetype on" command will load one of these 
files:
        name, the file $VIMRUNTIME/scripts.vim is used to detect it from the
        contents of the file.
        When the GUI is running or will start soon, the |menu.vim| script is
-       also sourced.  See |'go-M'| about avoiding that.
+       also sourced.  See 'go-M' about avoiding that.
 
 To add your own file types, see |new-filetype| below.  To search for help on a
 filetype prepend "ft-" and optionally append "-syntax", "-indent" or
diff --git a/runtime/doc/ft_ada.txt b/runtime/doc/ft_ada.txt
index 9d07afd61..866857e8c 100644
--- a/runtime/doc/ft_ada.txt
+++ b/runtime/doc/ft_ada.txt
@@ -1,4 +1,4 @@
-*ft_ada.txt*   For Vim version 9.1.  Last change: 2024 Sep 29
+*ft_ada.txt*   For Vim version 9.1.  Last change: 2025 Aug 06
 
 
                    ADA FILE TYPE PLUG-INS REFERENCE MANUAL~
@@ -76,8 +76,8 @@ The Ada plug-in provides support for:
  - user completion     (|i_CTRL-X_CTRL-U|)
  - tag searches                (|tagsrch.txt|)
  - Quick Fix           (|quickfix.txt|)
- - backspace handling  (|'backspace'|)
- - comment handling    (|'comments'|, |'commentstring'|)
+ - backspace handling  ('backspace')
+ - comment handling    ('comments', 'commentstring')
 
 The plug-in only activates the features of the Ada mode whenever an Ada
 file is opened and adds Ada related entries to the main and pop-up menu.
@@ -197,7 +197,7 @@ g:gnat.Project_File string
 
                                                         *g:gnat.Make_Command*
 g:gnat.Make_Command    string
-               External command used for |g:gnat.Make()| (|'makeprg'|).
+               External command used for |g:gnat.Make()| ('makeprg').
 
                                                       *g:gnat.Pretty_Program*
 g:gnat.Pretty_Program  string
@@ -213,7 +213,7 @@ g:gnat.Tags_Command string
 
                                                         *g:gnat.Error_Format*
 g:gnat.Error_Format    string
-               Error format (|'errorformat'|)
+               Error format ('errorformat')
 
 ------------------------------------------------------------------------------
 4.2 Dec Ada ~
@@ -243,11 +243,11 @@ g:decada.Unit_Name()      function
 
                                                       *g:decada.Make_Command*
 g:decada.Make_Command  string
-               External command used for |g:decada.Make()| (|'makeprg'|).
+               External command used for |g:decada.Make()| ('makeprg').
 
                                                       *g:decada.Error_Format*
 g:decada.Error_Format  string
-               Error format (|'errorformat'|).
+               Error format ('errorformat').
 
 ==============================================================================
 5. References ~
diff --git a/runtime/doc/ft_sql.txt b/runtime/doc/ft_sql.txt
index 110784d8c..0f466b407 100644
--- a/runtime/doc/ft_sql.txt
+++ b/runtime/doc/ft_sql.txt
@@ -1,4 +1,4 @@
-*ft_sql.txt*   For Vim version 9.1.  Last change: 2022 Apr 06
+*ft_sql.txt*   For Vim version 9.1.  Last change: 2025 Aug 06
 
 by David Fishburn
 
@@ -168,7 +168,7 @@ with comments: >
 
 1.4 Macros                                        *sql-macros*
 ----------
-Vim's feature to find macro definitions, |'define'|, is supported using this
+Vim's feature to find macro definitions, 'define', is supported using this
 regular expression: >
     

-- 
-- 
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

--- 
You received this message because you are subscribed to the Google Groups 
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to vim_dev+unsubscr...@googlegroups.com.
To view this discussion visit 
https://groups.google.com/d/msgid/vim_dev/E1ujbsO-00Foll-E8%40256bit.org.

Raspunde prin e-mail lui