@@ -20,33 +20,33 @@ INTERFACE *Vital.Mapping-interface*
20
20
------------------------------------------------------------------------------
21
21
FUNCTIONS *Vital.Mapping-functions*
22
22
23
- *Mapping.execute_abbr_command()*
23
+ *Vital. Mapping.execute_abbr_command()*
24
24
execute_abbr_command({mode} , {dict} , {lhs} , {rhs} )
25
25
Execute `get_abbr_command(mode, dict, lhs, rhs)` result.
26
26
See | Mapping.get_abbr_command() | .
27
27
28
- *Mapping.execute_map_command()*
28
+ *Vital. Mapping.execute_map_command()*
29
29
execute_map_command({mode} , {dict} , {lhs} , {rhs} )
30
30
Execute `get_map_command(mode, dict, lhs, rhs)` result.
31
31
See | Mapping.get_map_command() | .
32
32
33
- *Mapping.execute_unmap_command()*
33
+ *Vital. Mapping.execute_unmap_command()*
34
34
execute_unmap_command({mode} , {dict} , {lhs} )
35
35
Execute `get_unmap_command(mode, dict, lhs)` result.
36
36
See | Mapping.get_unmap_command() | .
37
37
38
- *Mapping.get_all_modes()*
38
+ *Vital. Mapping.get_all_modes()*
39
39
get_all_modes()
40
40
Returns string which represents all mode characters ("noiclxs").
41
41
NOTE: "v" is not contained. Because "x" and "s" already mean "v".
42
42
43
- *Mapping.get_all_modes_list()*
43
+ *Vital. Mapping.get_all_modes_list()*
44
44
get_all_modes_list()
45
45
Returns | List | which represents all mode characters.
46
46
Same as `split(get_all_modes(), '\zs')` .
47
47
See | Mapping.get_all_modes() | .
48
48
49
- *Mapping.get_abbr_command()*
49
+ *Vital. Mapping.get_abbr_command()*
50
50
get_abbr_command({mode} , {dict} , {lhs} , {rhs} )
51
51
Constructs | :abbreviate | command string.
52
52
{mode} is a character of mode.
@@ -55,7 +55,7 @@ get_abbr_command({mode}, {dict}, {lhs}, {rhs})
55
55
The options can be created by | Mapping.options_chars2dict() | or
56
56
| maparg() | 's return value when {dict} is non-zero.
57
57
58
- *Mapping.get_map_command()*
58
+ *Vital. Mapping.get_map_command()*
59
59
get_map_command({mode} , {dict} , {lhs} , {rhs} )
60
60
Constructs | :map | command string.
61
61
{mode} is a character of mode.
@@ -64,7 +64,7 @@ get_map_command({mode}, {dict}, {lhs}, {rhs})
64
64
The options can be created by | Mapping.options_chars2dict() | or
65
65
| maparg() | 's return value when {dict} is non-zero.
66
66
67
- *Mapping.get_unabbr_command()*
67
+ *Vital. Mapping.get_unabbr_command()*
68
68
get_unabbr_command({mode} , {dict} , {lhs} )
69
69
Constructs | :unabbreviate | command string.
70
70
{mode} is a character of mode.
@@ -73,7 +73,7 @@ get_unabbr_command({mode}, {dict}, {lhs})
73
73
The options can be created by | Mapping.options_chars2dict() | or
74
74
| maparg() | 's return value when {dict} is non-zero.
75
75
76
- *Mapping.get_unmap_command()*
76
+ *Vital. Mapping.get_unmap_command()*
77
77
get_unmap_command({mode} , {dict} , {lhs} )
78
78
Constructs | :unabbreviate | command string.
79
79
{mode} is a character of mode.
@@ -82,7 +82,7 @@ get_unmap_command({mode}, {dict}, {lhs})
82
82
The options can be created by | Mapping.options_chars2dict() | or
83
83
| maparg() | 's return value when {dict} is non-zero.
84
84
85
- *Mapping.options_chars2dict()*
85
+ *Vital. Mapping.options_chars2dict()*
86
86
options_chars2dict({chars} )
87
87
{chars} is a string which represents characters of options.
88
88
The return value is a | Dictionary | which is same as | maparg() | 's
@@ -108,30 +108,30 @@ options_chars2dict({chars})
108
108
"nowait": 0,
109
109
}
110
110
<
111
- *Mapping.options_chars2raw()*
111
+ *Vital. Mapping.options_chars2raw()*
112
112
options_chars2raw({chars} )
113
113
Same as `options_dict2raw (options_chars2dict (chars))` .
114
114
See | Mapping.options_dict2raw() | and | Mapping.options_chars2dict() | .
115
115
116
116
Example: >
117
117
options_dict2chars('eb') = '<expr><buffer>'
118
118
<
119
- *Mapping.options_dict2chars()*
119
+ *Vital. Mapping.options_dict2chars()*
120
120
options_dict2chars({dict} )
121
121
Converts {dict} to characters of options.
122
122
123
123
Example: >
124
124
options_dict2chars({'expr': 1, 'buffer': 1}) = 'eb'
125
125
<
126
- *Mapping.options_dict2raw()*
126
+ *Vital. Mapping.options_dict2raw()*
127
127
options_dict2raw({dict} )
128
128
{dict} is a | Dictionary | which represents options.
129
129
See | Mapping.options_chars2dict() | for the options.
130
130
131
131
Example: >
132
132
options_dict2raw({'expr': 1, 'buffer': 1}) = '<expr><buffer>'
133
133
<
134
- *Mapping.is_mode_char()*
134
+ *Vital. Mapping.is_mode_char()*
135
135
is_mode_char({char} )
136
136
Returns non-zero if {char} is a character one of
137
137
"v", "n", "o", "i", "c", "l", "x", "s".
0 commit comments