]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
runtime(doc): add missing help tags
authorChristian Brabandt <cb@256bit.org>
Mon, 1 Jan 2024 19:50:51 +0000 (20:50 +0100)
committerChristian Brabandt <cb@256bit.org>
Mon, 1 Jan 2024 19:50:51 +0000 (20:50 +0100)
Signed-off-by: Christian Brabandt <cb@256bit.org>
runtime/doc/ft_context.txt
runtime/doc/ft_rust.txt
runtime/doc/tags
runtime/doc/version9.txt
runtime/doc/vim9class.txt

index 43872529c5ff33dc098b23a485a45339d49948af..8be0399a31ca56c010eaab347b3fb1abd86cd98f 100644 (file)
@@ -1,4 +1,4 @@
-*ft_context.txt*       For Vim version 9.0.  Last change: 2023 Dec 26
+*ft_context.txt*       For Vim version 9.0.  Last change: 2024 Jan 01
 
 This is the documentation for the ConTeXt filetype plugin.
 
@@ -103,13 +103,13 @@ Stop all the ConTeXt jobs currently running in the background.
 Settings ~
                                        *'b:context_ignore_makefile'*
                                        *'g:context_ignore_makefile'*
-|make| can be used to (synchronously) typeset a document. If a Makefile exists
+|:make| can be used to (synchronously) typeset a document. If a Makefile exists
 and this option is not set, standard `make` is used. If this option is set,
 `mtxrun` is invoked instead, even if a Makefile exists.
 >
        g:context_ignore_makefile = 0
 <
-NOTE: before using |make|, set the working directory of the buffer to the
+NOTE: before using |:make|, set the working directory of the buffer to the
 directory of the file to be typeset.
 
                                        *'g:context_extra_options'*
index fb8141c14d8e4c2148ae610d5e9f6fb1aeb26c4e..564f3e774a96319eb310fc5253e4213b3b85d35b 100644 (file)
@@ -160,7 +160,7 @@ g:rustfmt_emit_files~
        provided) instead of '--write-mode=overwrite'. >
            let g:rustfmt_emit_files = 0
 
-
+<
                                                           *g:rust_playpen_url*
 g:rust_playpen_url~
        Set this option to override the url for the playpen to use: >
index f5c2c3a9161b42ab95853dc714e4fe9bebb1a7ab..215e1898471823cc9bdd63aa8bce8173213c5be5 100644 (file)
@@ -3470,6 +3470,7 @@ $quote    eval.txt        /*$quote*
 :tf    tagsrch.txt     /*:tf*
 :tfirst        tagsrch.txt     /*:tfirst*
 :th    eval.txt        /*:th*
+:this  vim9class.txt   /*:this*
 :throw eval.txt        /*:throw*
 :tj    tagsrch.txt     /*:tj*
 :tjump tagsrch.txt     /*:tjump*
@@ -5513,6 +5514,7 @@ InsertEnter       autocmd.txt     /*InsertEnter*
 InsertLeave    autocmd.txt     /*InsertLeave*
 InsertLeavePre autocmd.txt     /*InsertLeavePre*
 Integer        eval.txt        /*Integer*
+Interface      vim9class.txt   /*Interface*
 J      change.txt      /*J*
 Japanese       mbyte.txt       /*Japanese*
 Job    eval.txt        /*Job*
@@ -7592,6 +7594,7 @@ g:rust_conceal_mod_path   ft_rust.txt     /*g:rust_conceal_mod_path*
 g:rust_conceal_pub     ft_rust.txt     /*g:rust_conceal_pub*
 g:rust_fold    ft_rust.txt     /*g:rust_fold*
 g:rust_keep_autopairs_default  ft_rust.txt     /*g:rust_keep_autopairs_default*
+g:rust_playpen_url     ft_rust.txt     /*g:rust_playpen_url*
 g:rust_recommended_style       ft_rust.txt     /*g:rust_recommended_style*
 g:rust_shortener_url   ft_rust.txt     /*g:rust_shortener_url*
 g:rust_use_custom_ctags_defs   ft_rust.txt     /*g:rust_use_custom_ctags_defs*
@@ -10633,6 +10636,7 @@ type-casting    vim9.txt        /*type-casting*
 type-checking  vim9.txt        /*type-checking*
 type-inference vim9.txt        /*type-inference*
 type-mistakes  tips.txt        /*type-mistakes*
+typealias      vim9class.txt   /*typealias*
 typename()     builtin.txt     /*typename()*
 u      undo.txt        /*u*
 uganda uganda.txt      /*uganda*
index 75b85ff2507cb8457201a51ca5ac8d178d5ef30d..124ab698dc18ce5f787e002da7b14bafec4ba62f 100644 (file)
@@ -1,4 +1,4 @@
-*version9.txt*  For Vim version 9.0.  Last change: 2023 Dec 30
+*version9.txt*  For Vim version 9.0.  Last change: 2024 Jan 01
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -31733,7 +31733,7 @@ Other improvements                              *new-other-9.1*
   highlight modes (|highlight-term|).
 - The 'fillchars' option is now a global-local option and allows to
   specify the character used for the last window line.
-- The |vertical| and |horizontal| modifiers can be used with ":wincmd ="
+- The |:vertical| and |:horizontal| modifiers can be used with ":wincmd ="
   command to equalize windows vertically or horizontally.
 - |:defer| command to defer the execution of a function till the end of a
   function.
@@ -31764,7 +31764,7 @@ Other improvements                              *new-other-9.1*
 - Support for Python3 stable ABI (|python-stable|).
 - Use |jumplist| like a stack 'jumpoptions'.
 - Support for writing extended attributes in Linux (|xattr|).
-- 'errorformat' supports parsing a buffer number (|%b|).
+- 'errorformat' supports parsing a buffer number ("%b").
 - Support for building the python interface using Python 3.12.
 - |matchaddpos()| is no longer limited to 8 positions.
 - |readblob()| allows to read part of a file.
index d8d46140549e27f929187c72038736bc94fc7f79..c295fa4f58ca7ab7b1f31fea44fbcfd38bdff855 100644 (file)
@@ -1,4 +1,4 @@
-*vim9class.txt*        For Vim version 9.0.  Last change: 2023 Dec 28
+*vim9class.txt*        For Vim version 9.0.  Last change: 2024 Jan 01
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -104,7 +104,7 @@ You can create an object from this class with the new() method: >
 The object variables "lnum" and "col" can be accessed directly: >
 
        echo $'The text position is ({pos.lnum}, {pos.col})'
-<                                                      *E1317* *E1327*
+<                                                  *E1317* *E1327* *:this*
 If you have been using other object-oriented languages you will notice that in
 Vim, within a class definition, the object members are consistently referred
 to with the "this." prefix.  This is different from languages like Java and
@@ -713,7 +713,7 @@ Some types cannot be used, such as "void", "null" and "v:none".
 
 
 Defining an interface ~
-                                               *:interface* *:endinterface*
+                                       *Interface* *:interface* *:endinterface*
 An interface is defined between `:interface` and `:endinterface`.  It may be
 prefixed with `:export`: >
 
@@ -834,7 +834,7 @@ constructor methods.
 
 ==============================================================================
 
-7.  Type definition                                    *Vim9-type* *:type*
+7.  Type definition                            *typealias* *Vim9-type* *:type*
 
                                        *E1393* *E1395* *E1396* *E1397* *E1398*
 A type definition is giving a name to a type specification.  This is also