Skip to content

Commit 38db89b

Browse files
committed
Mapping: fix doc tags
1 parent 82185f2 commit 38db89b

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

doc/vital/Mapping.txt

+14-14
Original file line numberDiff line numberDiff line change
@@ -20,33 +20,33 @@ INTERFACE *Vital.Mapping-interface*
2020
------------------------------------------------------------------------------
2121
FUNCTIONS *Vital.Mapping-functions*
2222

23-
*Mapping.execute_abbr_command()*
23+
*Vital.Mapping.execute_abbr_command()*
2424
execute_abbr_command({mode}, {dict}, {lhs}, {rhs})
2525
Execute `get_abbr_command(mode, dict, lhs, rhs)` result.
2626
See |Mapping.get_abbr_command()|.
2727

28-
*Mapping.execute_map_command()*
28+
*Vital.Mapping.execute_map_command()*
2929
execute_map_command({mode}, {dict}, {lhs}, {rhs})
3030
Execute `get_map_command(mode, dict, lhs, rhs)` result.
3131
See |Mapping.get_map_command()|.
3232

33-
*Mapping.execute_unmap_command()*
33+
*Vital.Mapping.execute_unmap_command()*
3434
execute_unmap_command({mode}, {dict}, {lhs})
3535
Execute `get_unmap_command(mode, dict, lhs)` result.
3636
See |Mapping.get_unmap_command()|.
3737

38-
*Mapping.get_all_modes()*
38+
*Vital.Mapping.get_all_modes()*
3939
get_all_modes()
4040
Returns string which represents all mode characters ("noiclxs").
4141
NOTE: "v" is not contained. Because "x" and "s" already mean "v".
4242

43-
*Mapping.get_all_modes_list()*
43+
*Vital.Mapping.get_all_modes_list()*
4444
get_all_modes_list()
4545
Returns |List| which represents all mode characters.
4646
Same as `split(get_all_modes(), '\zs')` .
4747
See |Mapping.get_all_modes()|.
4848

49-
*Mapping.get_abbr_command()*
49+
*Vital.Mapping.get_abbr_command()*
5050
get_abbr_command({mode}, {dict}, {lhs}, {rhs})
5151
Constructs |:abbreviate| command string.
5252
{mode} is a character of mode.
@@ -55,7 +55,7 @@ get_abbr_command({mode}, {dict}, {lhs}, {rhs})
5555
The options can be created by |Mapping.options_chars2dict()| or
5656
|maparg()|'s return value when {dict} is non-zero.
5757

58-
*Mapping.get_map_command()*
58+
*Vital.Mapping.get_map_command()*
5959
get_map_command({mode}, {dict}, {lhs}, {rhs})
6060
Constructs |:map| command string.
6161
{mode} is a character of mode.
@@ -64,7 +64,7 @@ get_map_command({mode}, {dict}, {lhs}, {rhs})
6464
The options can be created by |Mapping.options_chars2dict()| or
6565
|maparg()|'s return value when {dict} is non-zero.
6666

67-
*Mapping.get_unabbr_command()*
67+
*Vital.Mapping.get_unabbr_command()*
6868
get_unabbr_command({mode}, {dict}, {lhs})
6969
Constructs |:unabbreviate| command string.
7070
{mode} is a character of mode.
@@ -73,7 +73,7 @@ get_unabbr_command({mode}, {dict}, {lhs})
7373
The options can be created by |Mapping.options_chars2dict()| or
7474
|maparg()|'s return value when {dict} is non-zero.
7575

76-
*Mapping.get_unmap_command()*
76+
*Vital.Mapping.get_unmap_command()*
7777
get_unmap_command({mode}, {dict}, {lhs})
7878
Constructs |:unabbreviate| command string.
7979
{mode} is a character of mode.
@@ -82,7 +82,7 @@ get_unmap_command({mode}, {dict}, {lhs})
8282
The options can be created by |Mapping.options_chars2dict()| or
8383
|maparg()|'s return value when {dict} is non-zero.
8484

85-
*Mapping.options_chars2dict()*
85+
*Vital.Mapping.options_chars2dict()*
8686
options_chars2dict({chars})
8787
{chars} is a string which represents characters of options.
8888
The return value is a |Dictionary| which is same as |maparg()|'s
@@ -108,30 +108,30 @@ options_chars2dict({chars})
108108
"nowait": 0,
109109
}
110110
<
111-
*Mapping.options_chars2raw()*
111+
*Vital.Mapping.options_chars2raw()*
112112
options_chars2raw({chars})
113113
Same as `options_dict2raw(options_chars2dict(chars))` .
114114
See |Mapping.options_dict2raw()| and |Mapping.options_chars2dict()|.
115115

116116
Example: >
117117
options_dict2chars('eb') = '<expr><buffer>'
118118
<
119-
*Mapping.options_dict2chars()*
119+
*Vital.Mapping.options_dict2chars()*
120120
options_dict2chars({dict})
121121
Converts {dict} to characters of options.
122122

123123
Example: >
124124
options_dict2chars({'expr': 1, 'buffer': 1}) = 'eb'
125125
<
126-
*Mapping.options_dict2raw()*
126+
*Vital.Mapping.options_dict2raw()*
127127
options_dict2raw({dict})
128128
{dict} is a |Dictionary| which represents options.
129129
See |Mapping.options_chars2dict()| for the options.
130130

131131
Example: >
132132
options_dict2raw({'expr': 1, 'buffer': 1}) = '<expr><buffer>'
133133
<
134-
*Mapping.is_mode_char()*
134+
*Vital.Mapping.is_mode_char()*
135135
is_mode_char({char})
136136
Returns non-zero if {char} is a character one of
137137
"v", "n", "o", "i", "c", "l", "x", "s".

0 commit comments

Comments
 (0)