Skip to content

Commit 6c1afa3

Browse files
committed
runtime(doc): add missing help tags
Signed-off-by: Christian Brabandt <[email protected]>
1 parent 34d1515 commit 6c1afa3

File tree

5 files changed

+15
-11
lines changed

5 files changed

+15
-11
lines changed

runtime/doc/ft_context.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*ft_context.txt* For Vim version 9.0. Last change: 2023 Dec 26
1+
*ft_context.txt* For Vim version 9.0. Last change: 2024 Jan 01
22

33
This is the documentation for the ConTeXt filetype plugin.
44

@@ -103,13 +103,13 @@ Stop all the ConTeXt jobs currently running in the background.
103103
Settings ~
104104
*'b:context_ignore_makefile'*
105105
*'g:context_ignore_makefile'*
106-
|make| can be used to (synchronously) typeset a document. If a Makefile exists
106+
|:make| can be used to (synchronously) typeset a document. If a Makefile exists
107107
and this option is not set, standard `make` is used. If this option is set,
108108
`mtxrun` is invoked instead, even if a Makefile exists.
109109
>
110110
g:context_ignore_makefile = 0
111111
<
112-
NOTE: before using |make|, set the working directory of the buffer to the
112+
NOTE: before using |:make|, set the working directory of the buffer to the
113113
directory of the file to be typeset.
114114

115115
*'g:context_extra_options'*

runtime/doc/ft_rust.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ g:rustfmt_emit_files~
160160
provided) instead of '--write-mode=overwrite'. >
161161
let g:rustfmt_emit_files = 0
162162
163-
163+
<
164164
*g:rust_playpen_url*
165165
g:rust_playpen_url~
166166
Set this option to override the url for the playpen to use: >

runtime/doc/tags

+4
Original file line numberDiff line numberDiff line change
@@ -3470,6 +3470,7 @@ $quote eval.txt /*$quote*
34703470
:tf tagsrch.txt /*:tf*
34713471
:tfirst tagsrch.txt /*:tfirst*
34723472
:th eval.txt /*:th*
3473+
:this vim9class.txt /*:this*
34733474
:throw eval.txt /*:throw*
34743475
:tj tagsrch.txt /*:tj*
34753476
:tjump tagsrch.txt /*:tjump*
@@ -5513,6 +5514,7 @@ InsertEnter autocmd.txt /*InsertEnter*
55135514
InsertLeave autocmd.txt /*InsertLeave*
55145515
InsertLeavePre autocmd.txt /*InsertLeavePre*
55155516
Integer eval.txt /*Integer*
5517+
Interface vim9class.txt /*Interface*
55165518
J change.txt /*J*
55175519
Japanese mbyte.txt /*Japanese*
55185520
Job eval.txt /*Job*
@@ -7592,6 +7594,7 @@ g:rust_conceal_mod_path ft_rust.txt /*g:rust_conceal_mod_path*
75927594
g:rust_conceal_pub ft_rust.txt /*g:rust_conceal_pub*
75937595
g:rust_fold ft_rust.txt /*g:rust_fold*
75947596
g:rust_keep_autopairs_default ft_rust.txt /*g:rust_keep_autopairs_default*
7597+
g:rust_playpen_url ft_rust.txt /*g:rust_playpen_url*
75957598
g:rust_recommended_style ft_rust.txt /*g:rust_recommended_style*
75967599
g:rust_shortener_url ft_rust.txt /*g:rust_shortener_url*
75977600
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*
1063310636
type-checking vim9.txt /*type-checking*
1063410637
type-inference vim9.txt /*type-inference*
1063510638
type-mistakes tips.txt /*type-mistakes*
10639+
typealias vim9class.txt /*typealias*
1063610640
typename() builtin.txt /*typename()*
1063710641
u undo.txt /*u*
1063810642
uganda uganda.txt /*uganda*

runtime/doc/version9.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*version9.txt* For Vim version 9.0. Last change: 2023 Dec 30
1+
*version9.txt* For Vim version 9.0. Last change: 2024 Jan 01
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -31733,7 +31733,7 @@ Other improvements *new-other-9.1*
3173331733
highlight modes (|highlight-term|).
3173431734
- The 'fillchars' option is now a global-local option and allows to
3173531735
specify the character used for the last window line.
31736-
- The |vertical| and |horizontal| modifiers can be used with ":wincmd ="
31736+
- The |:vertical| and |:horizontal| modifiers can be used with ":wincmd ="
3173731737
command to equalize windows vertically or horizontally.
3173831738
- |:defer| command to defer the execution of a function till the end of a
3173931739
function.
@@ -31764,7 +31764,7 @@ Other improvements *new-other-9.1*
3176431764
- Support for Python3 stable ABI (|python-stable|).
3176531765
- Use |jumplist| like a stack 'jumpoptions'.
3176631766
- Support for writing extended attributes in Linux (|xattr|).
31767-
- 'errorformat' supports parsing a buffer number (|%b|).
31767+
- 'errorformat' supports parsing a buffer number ("%b").
3176831768
- Support for building the python interface using Python 3.12.
3176931769
- |matchaddpos()| is no longer limited to 8 positions.
3177031770
- |readblob()| allows to read part of a file.

runtime/doc/vim9class.txt

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*vim9class.txt* For Vim version 9.0. Last change: 2023 Dec 28
1+
*vim9class.txt* For Vim version 9.0. Last change: 2024 Jan 01
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -104,7 +104,7 @@ You can create an object from this class with the new() method: >
104104
The object variables "lnum" and "col" can be accessed directly: >
105105
106106
echo $'The text position is ({pos.lnum}, {pos.col})'
107-
< *E1317* *E1327*
107+
< *E1317* *E1327* *:this*
108108
If you have been using other object-oriented languages you will notice that in
109109
Vim, within a class definition, the object members are consistently referred
110110
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".
713713

714714

715715
Defining an interface ~
716-
*:interface* *:endinterface*
716+
*Interface* *:interface* *:endinterface*
717717
An interface is defined between `:interface` and `:endinterface`. It may be
718718
prefixed with `:export`: >
719719
@@ -834,7 +834,7 @@ constructor methods.
834834

835835
==============================================================================
836836

837-
7. Type definition *Vim9-type* *:type*
837+
7. Type definition *typealias* *Vim9-type* *:type*
838838

839839
*E1393* *E1395* *E1396* *E1397* *E1398*
840840
A type definition is giving a name to a type specification. This is also

0 commit comments

Comments
 (0)