| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package Acme::MetaSyntactic::vim; |
|
2
|
|
|
|
|
|
|
|
|
3
|
1
|
|
|
1
|
|
980
|
use 5.006001; |
|
|
1
|
|
|
|
|
3
|
|
|
|
1
|
|
|
|
|
39
|
|
|
4
|
1
|
|
|
1
|
|
1171
|
use utf8; |
|
|
1
|
|
|
|
|
10
|
|
|
|
1
|
|
|
|
|
6
|
|
|
5
|
1
|
|
|
1
|
|
40
|
use strict; |
|
|
1
|
|
|
|
|
1
|
|
|
|
1
|
|
|
|
|
29
|
|
|
6
|
1
|
|
|
1
|
|
4
|
use warnings; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
28
|
|
|
7
|
|
|
|
|
|
|
|
|
8
|
1
|
|
|
1
|
|
759
|
use version; our $VERSION = qv('v1.0.1'); |
|
|
1
|
|
|
|
|
1950
|
|
|
|
1
|
|
|
|
|
4
|
|
|
9
|
|
|
|
|
|
|
|
|
10
|
1
|
|
|
1
|
|
89
|
use base 'Acme::MetaSyntactic::MultiList'; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
945
|
|
|
11
|
|
|
|
|
|
|
__PACKAGE__->init(); |
|
12
|
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
1; # Magic true value required at end of module |
|
14
|
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=encoding utf8 |
|
16
|
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=for stopwords Moolenaar autocmds |
|
18
|
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 NAME |
|
20
|
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
Acme::MetaSyntactic::vim - The Vim theme |
|
22
|
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head1 VERSION |
|
25
|
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
This document describes Acme::MetaSyntactic::vim version 1.0.1. |
|
27
|
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head1 DESCRIPTION |
|
30
|
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
This theme lists Vim options, commands, events, etc. |
|
32
|
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head2 List of categories |
|
35
|
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
This module was created by converting part the syntax/vim.vim file |
|
37
|
|
|
|
|
|
|
from Vim 7 into Perl code, and so the categories are based upon Vim |
|
38
|
|
|
|
|
|
|
syntax. |
|
39
|
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
This theme currently includes the following types of items: |
|
41
|
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=over |
|
43
|
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=item * |
|
45
|
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
C<todo>: markers in comments that Vim considers indicative of |
|
47
|
|
|
|
|
|
|
"incomplete" code. |
|
48
|
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
=item * |
|
50
|
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
C<commands/full>: full names of commands. |
|
52
|
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
=item * |
|
54
|
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
C<commands/abbreviated>: abbreviations for commands that have them. |
|
56
|
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
=item * |
|
58
|
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
C<options/full>: full names of options. |
|
60
|
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
=item * |
|
62
|
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
C<options/abbreviated>: abbreviations for options that have them. |
|
64
|
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
=item * |
|
66
|
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
C<events>: triggers that you can hook autocmds to. |
|
68
|
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
=item * |
|
70
|
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
C<functions>: standard functions that come with Vim. |
|
72
|
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
=back |
|
74
|
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
=head1 DIAGNOSTICS |
|
76
|
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
None. |
|
79
|
|
|
|
|
|
|
|
|
80
|
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
=head1 CONFIGURATION AND ENVIRONMENT |
|
82
|
|
|
|
|
|
|
|
|
83
|
|
|
|
|
|
|
Acme::MetaSyntactic::vim requires no configuration files or |
|
84
|
|
|
|
|
|
|
environment variables. |
|
85
|
|
|
|
|
|
|
|
|
86
|
|
|
|
|
|
|
|
|
87
|
|
|
|
|
|
|
=head1 DEPENDENCIES |
|
88
|
|
|
|
|
|
|
|
|
89
|
|
|
|
|
|
|
L<Acme::MetaSyntactic> |
|
90
|
|
|
|
|
|
|
|
|
91
|
|
|
|
|
|
|
|
|
92
|
|
|
|
|
|
|
=head1 INCOMPATIBILITIES |
|
93
|
|
|
|
|
|
|
|
|
94
|
|
|
|
|
|
|
None reported. |
|
95
|
|
|
|
|
|
|
|
|
96
|
|
|
|
|
|
|
|
|
97
|
|
|
|
|
|
|
=head1 BUGS AND LIMITATIONS |
|
98
|
|
|
|
|
|
|
|
|
99
|
|
|
|
|
|
|
No bugs have been reported. |
|
100
|
|
|
|
|
|
|
|
|
101
|
|
|
|
|
|
|
Please report any bugs or feature requests to |
|
102
|
|
|
|
|
|
|
C<bug-acme-metasyntactic-vim@rt.cpan.org>, or through the web |
|
103
|
|
|
|
|
|
|
interface at L<http://rt.cpan.org>. |
|
104
|
|
|
|
|
|
|
|
|
105
|
|
|
|
|
|
|
|
|
106
|
|
|
|
|
|
|
=head1 DEDICATION |
|
107
|
|
|
|
|
|
|
|
|
108
|
|
|
|
|
|
|
This module is dedicated to Bram Moolenaar, of course. |
|
109
|
|
|
|
|
|
|
|
|
110
|
|
|
|
|
|
|
|
|
111
|
|
|
|
|
|
|
=head1 AUTHOR |
|
112
|
|
|
|
|
|
|
|
|
113
|
|
|
|
|
|
|
Elliot Shank C<< <perl@galumph.com> >> |
|
114
|
|
|
|
|
|
|
|
|
115
|
|
|
|
|
|
|
|
|
116
|
|
|
|
|
|
|
=head1 LICENSE AND COPYRIGHT |
|
117
|
|
|
|
|
|
|
|
|
118
|
|
|
|
|
|
|
Copyright ©2007-2008, Elliot Shank C<< <perl@galumph.com> >>. All |
|
119
|
|
|
|
|
|
|
rights reserved. |
|
120
|
|
|
|
|
|
|
|
|
121
|
|
|
|
|
|
|
This module is free software; you can redistribute it and/or modify it |
|
122
|
|
|
|
|
|
|
under the same terms as Perl itself. See L<perlartistic>. |
|
123
|
|
|
|
|
|
|
|
|
124
|
|
|
|
|
|
|
|
|
125
|
|
|
|
|
|
|
=head1 DISCLAIMER OF WARRANTY |
|
126
|
|
|
|
|
|
|
|
|
127
|
|
|
|
|
|
|
BECAUSE THIS SOFTWARE IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY |
|
128
|
|
|
|
|
|
|
FOR THE SOFTWARE, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT |
|
129
|
|
|
|
|
|
|
WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER |
|
130
|
|
|
|
|
|
|
PARTIES PROVIDE THE SOFTWARE "AS IS" WITHOUT WARRANTY OF ANY KIND, |
|
131
|
|
|
|
|
|
|
EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE |
|
132
|
|
|
|
|
|
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
|
133
|
|
|
|
|
|
|
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE |
|
134
|
|
|
|
|
|
|
SOFTWARE IS WITH YOU. SHOULD THE SOFTWARE PROVE DEFECTIVE, YOU ASSUME |
|
135
|
|
|
|
|
|
|
THE COST OF ALL NECESSARY SERVICING, REPAIR, OR CORRECTION. |
|
136
|
|
|
|
|
|
|
|
|
137
|
|
|
|
|
|
|
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING |
|
138
|
|
|
|
|
|
|
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR |
|
139
|
|
|
|
|
|
|
REDISTRIBUTE THE SOFTWARE AS PERMITTED BY THE ABOVE LICENSE, BE LIABLE |
|
140
|
|
|
|
|
|
|
TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL, OR |
|
141
|
|
|
|
|
|
|
CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE |
|
142
|
|
|
|
|
|
|
SOFTWARE (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING |
|
143
|
|
|
|
|
|
|
RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A |
|
144
|
|
|
|
|
|
|
FAILURE OF THE SOFTWARE TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF |
|
145
|
|
|
|
|
|
|
SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH |
|
146
|
|
|
|
|
|
|
DAMAGES. |
|
147
|
|
|
|
|
|
|
|
|
148
|
|
|
|
|
|
|
=cut |
|
149
|
|
|
|
|
|
|
__DATA__ |
|
150
|
|
|
|
|
|
|
# default |
|
151
|
|
|
|
|
|
|
commands/full |
|
152
|
|
|
|
|
|
|
# names todo |
|
153
|
|
|
|
|
|
|
COMBAK |
|
154
|
|
|
|
|
|
|
FIXME |
|
155
|
|
|
|
|
|
|
TODO |
|
156
|
|
|
|
|
|
|
XXX |
|
157
|
|
|
|
|
|
|
# names commands/full |
|
158
|
|
|
|
|
|
|
abbreviate |
|
159
|
|
|
|
|
|
|
abclear |
|
160
|
|
|
|
|
|
|
aboveleft |
|
161
|
|
|
|
|
|
|
all |
|
162
|
|
|
|
|
|
|
argadd |
|
163
|
|
|
|
|
|
|
argdelete |
|
164
|
|
|
|
|
|
|
argdo |
|
165
|
|
|
|
|
|
|
argedit |
|
166
|
|
|
|
|
|
|
argglobal |
|
167
|
|
|
|
|
|
|
arglocal |
|
168
|
|
|
|
|
|
|
args |
|
169
|
|
|
|
|
|
|
argument |
|
170
|
|
|
|
|
|
|
ascii |
|
171
|
|
|
|
|
|
|
badd |
|
172
|
|
|
|
|
|
|
ball |
|
173
|
|
|
|
|
|
|
bdelete |
|
174
|
|
|
|
|
|
|
be |
|
175
|
|
|
|
|
|
|
belowright |
|
176
|
|
|
|
|
|
|
bfirst |
|
177
|
|
|
|
|
|
|
blast |
|
178
|
|
|
|
|
|
|
bmodified |
|
179
|
|
|
|
|
|
|
bnext |
|
180
|
|
|
|
|
|
|
bNext |
|
181
|
|
|
|
|
|
|
botright |
|
182
|
|
|
|
|
|
|
bprevious |
|
183
|
|
|
|
|
|
|
break |
|
184
|
|
|
|
|
|
|
breakadd |
|
185
|
|
|
|
|
|
|
breakdel |
|
186
|
|
|
|
|
|
|
breaklist |
|
187
|
|
|
|
|
|
|
brewind |
|
188
|
|
|
|
|
|
|
browse |
|
189
|
|
|
|
|
|
|
bufdo |
|
190
|
|
|
|
|
|
|
buffer |
|
191
|
|
|
|
|
|
|
buffers |
|
192
|
|
|
|
|
|
|
bunload |
|
193
|
|
|
|
|
|
|
bwipeout |
|
194
|
|
|
|
|
|
|
cabbrev |
|
195
|
|
|
|
|
|
|
cabclear |
|
196
|
|
|
|
|
|
|
caddbuffer |
|
197
|
|
|
|
|
|
|
caddexpr |
|
198
|
|
|
|
|
|
|
caddfile |
|
199
|
|
|
|
|
|
|
call |
|
200
|
|
|
|
|
|
|
catch |
|
201
|
|
|
|
|
|
|
cbuffer |
|
202
|
|
|
|
|
|
|
cc |
|
203
|
|
|
|
|
|
|
cclose |
|
204
|
|
|
|
|
|
|
cd |
|
205
|
|
|
|
|
|
|
center |
|
206
|
|
|
|
|
|
|
cexpr |
|
207
|
|
|
|
|
|
|
cfile |
|
208
|
|
|
|
|
|
|
cfirst |
|
209
|
|
|
|
|
|
|
cgetbuffer |
|
210
|
|
|
|
|
|
|
cgetexpr |
|
211
|
|
|
|
|
|
|
cgetfile |
|
212
|
|
|
|
|
|
|
change |
|
213
|
|
|
|
|
|
|
changes |
|
214
|
|
|
|
|
|
|
chdir |
|
215
|
|
|
|
|
|
|
checkpath |
|
216
|
|
|
|
|
|
|
checktime |
|
217
|
|
|
|
|
|
|
clast |
|
218
|
|
|
|
|
|
|
clist |
|
219
|
|
|
|
|
|
|
close |
|
220
|
|
|
|
|
|
|
cmapclear |
|
221
|
|
|
|
|
|
|
cnewer |
|
222
|
|
|
|
|
|
|
cnext |
|
223
|
|
|
|
|
|
|
cNext |
|
224
|
|
|
|
|
|
|
cnfile |
|
225
|
|
|
|
|
|
|
cNfile |
|
226
|
|
|
|
|
|
|
cnoreabbrev |
|
227
|
|
|
|
|
|
|
colder |
|
228
|
|
|
|
|
|
|
colorscheme |
|
229
|
|
|
|
|
|
|
comclear |
|
230
|
|
|
|
|
|
|
compiler |
|
231
|
|
|
|
|
|
|
confirm |
|
232
|
|
|
|
|
|
|
continue |
|
233
|
|
|
|
|
|
|
copen |
|
234
|
|
|
|
|
|
|
copy |
|
235
|
|
|
|
|
|
|
cpfile |
|
236
|
|
|
|
|
|
|
cprevious |
|
237
|
|
|
|
|
|
|
cquit |
|
238
|
|
|
|
|
|
|
crewind |
|
239
|
|
|
|
|
|
|
cunabbrev |
|
240
|
|
|
|
|
|
|
cunmap |
|
241
|
|
|
|
|
|
|
cwindow |
|
242
|
|
|
|
|
|
|
debuggreedy |
|
243
|
|
|
|
|
|
|
delcommand |
|
244
|
|
|
|
|
|
|
delete |
|
245
|
|
|
|
|
|
|
DeleteFirst |
|
246
|
|
|
|
|
|
|
delfunction |
|
247
|
|
|
|
|
|
|
delmarks |
|
248
|
|
|
|
|
|
|
diffget |
|
249
|
|
|
|
|
|
|
diffoff |
|
250
|
|
|
|
|
|
|
diffpatch |
|
251
|
|
|
|
|
|
|
diffput |
|
252
|
|
|
|
|
|
|
diffsplit |
|
253
|
|
|
|
|
|
|
diffthis |
|
254
|
|
|
|
|
|
|
diffupdate |
|
255
|
|
|
|
|
|
|
digraphs |
|
256
|
|
|
|
|
|
|
display |
|
257
|
|
|
|
|
|
|
djump |
|
258
|
|
|
|
|
|
|
dlist |
|
259
|
|
|
|
|
|
|
drop |
|
260
|
|
|
|
|
|
|
dsearch |
|
261
|
|
|
|
|
|
|
dsplit |
|
262
|
|
|
|
|
|
|
earlier |
|
263
|
|
|
|
|
|
|
echoerr |
|
264
|
|
|
|
|
|
|
echomsg |
|
265
|
|
|
|
|
|
|
echon |
|
266
|
|
|
|
|
|
|
edit |
|
267
|
|
|
|
|
|
|
else |
|
268
|
|
|
|
|
|
|
elseif |
|
269
|
|
|
|
|
|
|
emenu |
|
270
|
|
|
|
|
|
|
endfor |
|
271
|
|
|
|
|
|
|
endfunction |
|
272
|
|
|
|
|
|
|
endif |
|
273
|
|
|
|
|
|
|
endtry |
|
274
|
|
|
|
|
|
|
endwhile |
|
275
|
|
|
|
|
|
|
enew |
|
276
|
|
|
|
|
|
|
ex |
|
277
|
|
|
|
|
|
|
exit |
|
278
|
|
|
|
|
|
|
Explore |
|
279
|
|
|
|
|
|
|
exusage |
|
280
|
|
|
|
|
|
|
file |
|
281
|
|
|
|
|
|
|
files |
|
282
|
|
|
|
|
|
|
filetype |
|
283
|
|
|
|
|
|
|
finally |
|
284
|
|
|
|
|
|
|
find |
|
285
|
|
|
|
|
|
|
finish |
|
286
|
|
|
|
|
|
|
first |
|
287
|
|
|
|
|
|
|
fixdel |
|
288
|
|
|
|
|
|
|
fold |
|
289
|
|
|
|
|
|
|
foldclose |
|
290
|
|
|
|
|
|
|
folddoclosed |
|
291
|
|
|
|
|
|
|
folddoopen |
|
292
|
|
|
|
|
|
|
foldopen |
|
293
|
|
|
|
|
|
|
for |
|
294
|
|
|
|
|
|
|
function |
|
295
|
|
|
|
|
|
|
goto |
|
296
|
|
|
|
|
|
|
grep |
|
297
|
|
|
|
|
|
|
grepadd |
|
298
|
|
|
|
|
|
|
hardcopy |
|
299
|
|
|
|
|
|
|
help |
|
300
|
|
|
|
|
|
|
helpfind |
|
301
|
|
|
|
|
|
|
helpgrep |
|
302
|
|
|
|
|
|
|
helptags |
|
303
|
|
|
|
|
|
|
Hexplore |
|
304
|
|
|
|
|
|
|
hide |
|
305
|
|
|
|
|
|
|
history |
|
306
|
|
|
|
|
|
|
I |
|
307
|
|
|
|
|
|
|
iabbrev |
|
308
|
|
|
|
|
|
|
iabclear |
|
309
|
|
|
|
|
|
|
if |
|
310
|
|
|
|
|
|
|
ijump |
|
311
|
|
|
|
|
|
|
ilist |
|
312
|
|
|
|
|
|
|
imapclear |
|
313
|
|
|
|
|
|
|
inoreabbrev |
|
314
|
|
|
|
|
|
|
isearch |
|
315
|
|
|
|
|
|
|
isplit |
|
316
|
|
|
|
|
|
|
iunabbrev |
|
317
|
|
|
|
|
|
|
iunmap |
|
318
|
|
|
|
|
|
|
join |
|
319
|
|
|
|
|
|
|
jumps |
|
320
|
|
|
|
|
|
|
k |
|
321
|
|
|
|
|
|
|
keepalt |
|
322
|
|
|
|
|
|
|
keepjumps |
|
323
|
|
|
|
|
|
|
keepmarks |
|
324
|
|
|
|
|
|
|
laddbuffer |
|
325
|
|
|
|
|
|
|
laddexpr |
|
326
|
|
|
|
|
|
|
laddfile |
|
327
|
|
|
|
|
|
|
language |
|
328
|
|
|
|
|
|
|
last |
|
329
|
|
|
|
|
|
|
later |
|
330
|
|
|
|
|
|
|
lbuffer |
|
331
|
|
|
|
|
|
|
lcd |
|
332
|
|
|
|
|
|
|
lchdir |
|
333
|
|
|
|
|
|
|
lclose |
|
334
|
|
|
|
|
|
|
left |
|
335
|
|
|
|
|
|
|
leftabove |
|
336
|
|
|
|
|
|
|
lexpr |
|
337
|
|
|
|
|
|
|
lfile |
|
338
|
|
|
|
|
|
|
lfirst |
|
339
|
|
|
|
|
|
|
lgetbuffer |
|
340
|
|
|
|
|
|
|
lgetexpr |
|
341
|
|
|
|
|
|
|
lgetfile |
|
342
|
|
|
|
|
|
|
lgrep |
|
343
|
|
|
|
|
|
|
lgrepadd |
|
344
|
|
|
|
|
|
|
lhelpgrep |
|
345
|
|
|
|
|
|
|
list |
|
346
|
|
|
|
|
|
|
ll |
|
347
|
|
|
|
|
|
|
llast |
|
348
|
|
|
|
|
|
|
llist |
|
349
|
|
|
|
|
|
|
lmake |
|
350
|
|
|
|
|
|
|
lmap |
|
351
|
|
|
|
|
|
|
lmapclear |
|
352
|
|
|
|
|
|
|
lnewer |
|
353
|
|
|
|
|
|
|
lnext |
|
354
|
|
|
|
|
|
|
lNext |
|
355
|
|
|
|
|
|
|
lnfile |
|
356
|
|
|
|
|
|
|
lNfile |
|
357
|
|
|
|
|
|
|
lnoremap |
|
358
|
|
|
|
|
|
|
loadview |
|
359
|
|
|
|
|
|
|
lockmarks |
|
360
|
|
|
|
|
|
|
lockvar |
|
361
|
|
|
|
|
|
|
lolder |
|
362
|
|
|
|
|
|
|
lopen |
|
363
|
|
|
|
|
|
|
lpfile |
|
364
|
|
|
|
|
|
|
lprevious |
|
365
|
|
|
|
|
|
|
lrewind |
|
366
|
|
|
|
|
|
|
ls |
|
367
|
|
|
|
|
|
|
ltag |
|
368
|
|
|
|
|
|
|
lunmap |
|
369
|
|
|
|
|
|
|
lvimgrep |
|
370
|
|
|
|
|
|
|
lvimgrepadd |
|
371
|
|
|
|
|
|
|
lwindow |
|
372
|
|
|
|
|
|
|
make |
|
373
|
|
|
|
|
|
|
mark |
|
374
|
|
|
|
|
|
|
marks |
|
375
|
|
|
|
|
|
|
match |
|
376
|
|
|
|
|
|
|
menutranslate |
|
377
|
|
|
|
|
|
|
mkexrc |
|
378
|
|
|
|
|
|
|
mksession |
|
379
|
|
|
|
|
|
|
mkspell |
|
380
|
|
|
|
|
|
|
mkview |
|
381
|
|
|
|
|
|
|
mkvimrc |
|
382
|
|
|
|
|
|
|
mode |
|
383
|
|
|
|
|
|
|
move |
|
384
|
|
|
|
|
|
|
mzfile |
|
385
|
|
|
|
|
|
|
mzscheme |
|
386
|
|
|
|
|
|
|
nbkey |
|
387
|
|
|
|
|
|
|
NetrwSettings |
|
388
|
|
|
|
|
|
|
new |
|
389
|
|
|
|
|
|
|
next |
|
390
|
|
|
|
|
|
|
Next |
|
391
|
|
|
|
|
|
|
nmapclear |
|
392
|
|
|
|
|
|
|
nohlsearch |
|
393
|
|
|
|
|
|
|
noreabbrev |
|
394
|
|
|
|
|
|
|
Nread |
|
395
|
|
|
|
|
|
|
number |
|
396
|
|
|
|
|
|
|
nunmap |
|
397
|
|
|
|
|
|
|
Nw |
|
398
|
|
|
|
|
|
|
omapclear |
|
399
|
|
|
|
|
|
|
only |
|
400
|
|
|
|
|
|
|
open |
|
401
|
|
|
|
|
|
|
options |
|
402
|
|
|
|
|
|
|
ounmap |
|
403
|
|
|
|
|
|
|
pclose |
|
404
|
|
|
|
|
|
|
pedit |
|
405
|
|
|
|
|
|
|
perl |
|
406
|
|
|
|
|
|
|
perldo |
|
407
|
|
|
|
|
|
|
pop |
|
408
|
|
|
|
|
|
|
popu |
|
409
|
|
|
|
|
|
|
popup |
|
410
|
|
|
|
|
|
|
ppop |
|
411
|
|
|
|
|
|
|
preserve |
|
412
|
|
|
|
|
|
|
previous |
|
413
|
|
|
|
|
|
|
print |
|
414
|
|
|
|
|
|
|
Print |
|
415
|
|
|
|
|
|
|
profdel |
|
416
|
|
|
|
|
|
|
profile |
|
417
|
|
|
|
|
|
|
prompt |
|
418
|
|
|
|
|
|
|
promptfind |
|
419
|
|
|
|
|
|
|
promptrepl |
|
420
|
|
|
|
|
|
|
psearch |
|
421
|
|
|
|
|
|
|
ptag |
|
422
|
|
|
|
|
|
|
ptfirst |
|
423
|
|
|
|
|
|
|
ptjump |
|
424
|
|
|
|
|
|
|
ptlast |
|
425
|
|
|
|
|
|
|
ptnext |
|
426
|
|
|
|
|
|
|
ptNext |
|
427
|
|
|
|
|
|
|
ptprevious |
|
428
|
|
|
|
|
|
|
ptrewind |
|
429
|
|
|
|
|
|
|
ptselect |
|
430
|
|
|
|
|
|
|
put |
|
431
|
|
|
|
|
|
|
pwd |
|
432
|
|
|
|
|
|
|
pyfile |
|
433
|
|
|
|
|
|
|
python |
|
434
|
|
|
|
|
|
|
qall |
|
435
|
|
|
|
|
|
|
quit |
|
436
|
|
|
|
|
|
|
quitall |
|
437
|
|
|
|
|
|
|
read |
|
438
|
|
|
|
|
|
|
recover |
|
439
|
|
|
|
|
|
|
redir |
|
440
|
|
|
|
|
|
|
redo |
|
441
|
|
|
|
|
|
|
redraw |
|
442
|
|
|
|
|
|
|
redrawstatus |
|
443
|
|
|
|
|
|
|
registers |
|
444
|
|
|
|
|
|
|
resize |
|
445
|
|
|
|
|
|
|
retab |
|
446
|
|
|
|
|
|
|
return |
|
447
|
|
|
|
|
|
|
rewind |
|
448
|
|
|
|
|
|
|
right |
|
449
|
|
|
|
|
|
|
rightbelow |
|
450
|
|
|
|
|
|
|
ruby |
|
451
|
|
|
|
|
|
|
rubydo |
|
452
|
|
|
|
|
|
|
rubyfile |
|
453
|
|
|
|
|
|
|
runtime |
|
454
|
|
|
|
|
|
|
rviminfo |
|
455
|
|
|
|
|
|
|
sall |
|
456
|
|
|
|
|
|
|
sandbox |
|
457
|
|
|
|
|
|
|
sargument |
|
458
|
|
|
|
|
|
|
saveas |
|
459
|
|
|
|
|
|
|
sball |
|
460
|
|
|
|
|
|
|
sbfirst |
|
461
|
|
|
|
|
|
|
sblast |
|
462
|
|
|
|
|
|
|
sbmodified |
|
463
|
|
|
|
|
|
|
sbnext |
|
464
|
|
|
|
|
|
|
sbNext |
|
465
|
|
|
|
|
|
|
sbprevious |
|
466
|
|
|
|
|
|
|
sbrewind |
|
467
|
|
|
|
|
|
|
sbuffer |
|
468
|
|
|
|
|
|
|
scriptencoding |
|
469
|
|
|
|
|
|
|
scriptnames |
|
470
|
|
|
|
|
|
|
set |
|
471
|
|
|
|
|
|
|
setfiletype |
|
472
|
|
|
|
|
|
|
setglobal |
|
473
|
|
|
|
|
|
|
setlocal |
|
474
|
|
|
|
|
|
|
Sexplore |
|
475
|
|
|
|
|
|
|
sfind |
|
476
|
|
|
|
|
|
|
sfirst |
|
477
|
|
|
|
|
|
|
shell |
|
478
|
|
|
|
|
|
|
sign |
|
479
|
|
|
|
|
|
|
silent |
|
480
|
|
|
|
|
|
|
simalt |
|
481
|
|
|
|
|
|
|
slast |
|
482
|
|
|
|
|
|
|
sleep |
|
483
|
|
|
|
|
|
|
smagic |
|
484
|
|
|
|
|
|
|
smap |
|
485
|
|
|
|
|
|
|
smapclear |
|
486
|
|
|
|
|
|
|
sme |
|
487
|
|
|
|
|
|
|
smenu |
|
488
|
|
|
|
|
|
|
snext |
|
489
|
|
|
|
|
|
|
sNext |
|
490
|
|
|
|
|
|
|
sniff |
|
491
|
|
|
|
|
|
|
snomagic |
|
492
|
|
|
|
|
|
|
snoremap |
|
493
|
|
|
|
|
|
|
snoreme |
|
494
|
|
|
|
|
|
|
snoremenu |
|
495
|
|
|
|
|
|
|
sort |
|
496
|
|
|
|
|
|
|
source |
|
497
|
|
|
|
|
|
|
spelldump |
|
498
|
|
|
|
|
|
|
spellgood |
|
499
|
|
|
|
|
|
|
spellinfo |
|
500
|
|
|
|
|
|
|
spellrepall |
|
501
|
|
|
|
|
|
|
spellundo |
|
502
|
|
|
|
|
|
|
spellwrong |
|
503
|
|
|
|
|
|
|
split |
|
504
|
|
|
|
|
|
|
sprevious |
|
505
|
|
|
|
|
|
|
srewind |
|
506
|
|
|
|
|
|
|
stag |
|
507
|
|
|
|
|
|
|
startgreplace |
|
508
|
|
|
|
|
|
|
startinsert |
|
509
|
|
|
|
|
|
|
startreplace |
|
510
|
|
|
|
|
|
|
stjump |
|
511
|
|
|
|
|
|
|
stop |
|
512
|
|
|
|
|
|
|
stopinsert |
|
513
|
|
|
|
|
|
|
stselect |
|
514
|
|
|
|
|
|
|
sunhide |
|
515
|
|
|
|
|
|
|
sunmap |
|
516
|
|
|
|
|
|
|
suspend |
|
517
|
|
|
|
|
|
|
sview |
|
518
|
|
|
|
|
|
|
syncbind |
|
519
|
|
|
|
|
|
|
t |
|
520
|
|
|
|
|
|
|
tab |
|
521
|
|
|
|
|
|
|
tabclose |
|
522
|
|
|
|
|
|
|
tabdo |
|
523
|
|
|
|
|
|
|
tabedit |
|
524
|
|
|
|
|
|
|
tabfind |
|
525
|
|
|
|
|
|
|
tabfirst |
|
526
|
|
|
|
|
|
|
tablast |
|
527
|
|
|
|
|
|
|
tabmove |
|
528
|
|
|
|
|
|
|
tabnew |
|
529
|
|
|
|
|
|
|
tabnext |
|
530
|
|
|
|
|
|
|
tabNext |
|
531
|
|
|
|
|
|
|
tabonly |
|
532
|
|
|
|
|
|
|
tabprevious |
|
533
|
|
|
|
|
|
|
tabrewind |
|
534
|
|
|
|
|
|
|
tabs |
|
535
|
|
|
|
|
|
|
tag |
|
536
|
|
|
|
|
|
|
tags |
|
537
|
|
|
|
|
|
|
tcl |
|
538
|
|
|
|
|
|
|
tcldo |
|
539
|
|
|
|
|
|
|
tclfile |
|
540
|
|
|
|
|
|
|
tearoff |
|
541
|
|
|
|
|
|
|
tfirst |
|
542
|
|
|
|
|
|
|
the |
|
543
|
|
|
|
|
|
|
throw |
|
544
|
|
|
|
|
|
|
tjump |
|
545
|
|
|
|
|
|
|
tlast |
|
546
|
|
|
|
|
|
|
tm |
|
547
|
|
|
|
|
|
|
tmenu |
|
548
|
|
|
|
|
|
|
tnext |
|
549
|
|
|
|
|
|
|
tNext |
|
550
|
|
|
|
|
|
|
topleft |
|
551
|
|
|
|
|
|
|
tprevious |
|
552
|
|
|
|
|
|
|
trewind |
|
553
|
|
|
|
|
|
|
try |
|
554
|
|
|
|
|
|
|
tselect |
|
555
|
|
|
|
|
|
|
tu |
|
556
|
|
|
|
|
|
|
tunmenu |
|
557
|
|
|
|
|
|
|
unabbreviate |
|
558
|
|
|
|
|
|
|
undo |
|
559
|
|
|
|
|
|
|
undojoin |
|
560
|
|
|
|
|
|
|
undolist |
|
561
|
|
|
|
|
|
|
unhide |
|
562
|
|
|
|
|
|
|
unlockvar |
|
563
|
|
|
|
|
|
|
unmap |
|
564
|
|
|
|
|
|
|
update |
|
565
|
|
|
|
|
|
|
verbose |
|
566
|
|
|
|
|
|
|
version |
|
567
|
|
|
|
|
|
|
vertical |
|
568
|
|
|
|
|
|
|
Vexplore |
|
569
|
|
|
|
|
|
|
view |
|
570
|
|
|
|
|
|
|
vimgrep |
|
571
|
|
|
|
|
|
|
vimgrepadd |
|
572
|
|
|
|
|
|
|
visual |
|
573
|
|
|
|
|
|
|
viusage |
|
574
|
|
|
|
|
|
|
vmapclear |
|
575
|
|
|
|
|
|
|
vnew |
|
576
|
|
|
|
|
|
|
vsplit |
|
577
|
|
|
|
|
|
|
vunmap |
|
578
|
|
|
|
|
|
|
wall |
|
579
|
|
|
|
|
|
|
while |
|
580
|
|
|
|
|
|
|
wincmd |
|
581
|
|
|
|
|
|
|
windo |
|
582
|
|
|
|
|
|
|
winpos |
|
583
|
|
|
|
|
|
|
winsize |
|
584
|
|
|
|
|
|
|
wnext |
|
585
|
|
|
|
|
|
|
wNext |
|
586
|
|
|
|
|
|
|
wprevious |
|
587
|
|
|
|
|
|
|
wq |
|
588
|
|
|
|
|
|
|
wqall |
|
589
|
|
|
|
|
|
|
write |
|
590
|
|
|
|
|
|
|
wsverb |
|
591
|
|
|
|
|
|
|
wviminfo |
|
592
|
|
|
|
|
|
|
X |
|
593
|
|
|
|
|
|
|
xall |
|
594
|
|
|
|
|
|
|
xit |
|
595
|
|
|
|
|
|
|
xmap |
|
596
|
|
|
|
|
|
|
xmapclear |
|
597
|
|
|
|
|
|
|
xme |
|
598
|
|
|
|
|
|
|
xmenu |
|
599
|
|
|
|
|
|
|
XMLent |
|
600
|
|
|
|
|
|
|
XMLns |
|
601
|
|
|
|
|
|
|
xnoremap |
|
602
|
|
|
|
|
|
|
xnoreme |
|
603
|
|
|
|
|
|
|
xnoremenu |
|
604
|
|
|
|
|
|
|
xunmap |
|
605
|
|
|
|
|
|
|
yank |
|
606
|
|
|
|
|
|
|
# names commands/abbreviated |
|
607
|
|
|
|
|
|
|
ab |
|
608
|
|
|
|
|
|
|
abc |
|
609
|
|
|
|
|
|
|
abo |
|
610
|
|
|
|
|
|
|
al |
|
611
|
|
|
|
|
|
|
arga |
|
612
|
|
|
|
|
|
|
argd |
|
613
|
|
|
|
|
|
|
arge |
|
614
|
|
|
|
|
|
|
argg |
|
615
|
|
|
|
|
|
|
argl |
|
616
|
|
|
|
|
|
|
ar |
|
617
|
|
|
|
|
|
|
argu |
|
618
|
|
|
|
|
|
|
as |
|
619
|
|
|
|
|
|
|
bad |
|
620
|
|
|
|
|
|
|
ba |
|
621
|
|
|
|
|
|
|
bd |
|
622
|
|
|
|
|
|
|
bel |
|
623
|
|
|
|
|
|
|
bf |
|
624
|
|
|
|
|
|
|
bl |
|
625
|
|
|
|
|
|
|
bm |
|
626
|
|
|
|
|
|
|
bn |
|
627
|
|
|
|
|
|
|
bN |
|
628
|
|
|
|
|
|
|
bo |
|
629
|
|
|
|
|
|
|
bp |
|
630
|
|
|
|
|
|
|
brea |
|
631
|
|
|
|
|
|
|
breaka |
|
632
|
|
|
|
|
|
|
breakd |
|
633
|
|
|
|
|
|
|
breakl |
|
634
|
|
|
|
|
|
|
br |
|
635
|
|
|
|
|
|
|
bro |
|
636
|
|
|
|
|
|
|
b |
|
637
|
|
|
|
|
|
|
bun |
|
638
|
|
|
|
|
|
|
bw |
|
639
|
|
|
|
|
|
|
ca |
|
640
|
|
|
|
|
|
|
cabc |
|
641
|
|
|
|
|
|
|
caddb |
|
642
|
|
|
|
|
|
|
cad |
|
643
|
|
|
|
|
|
|
caddf |
|
644
|
|
|
|
|
|
|
cal |
|
645
|
|
|
|
|
|
|
cat |
|
646
|
|
|
|
|
|
|
cb |
|
647
|
|
|
|
|
|
|
ccl |
|
648
|
|
|
|
|
|
|
ce |
|
649
|
|
|
|
|
|
|
cex |
|
650
|
|
|
|
|
|
|
cf |
|
651
|
|
|
|
|
|
|
cfir |
|
652
|
|
|
|
|
|
|
cgetb |
|
653
|
|
|
|
|
|
|
cgete |
|
654
|
|
|
|
|
|
|
cg |
|
655
|
|
|
|
|
|
|
c |
|
656
|
|
|
|
|
|
|
chd |
|
657
|
|
|
|
|
|
|
che |
|
658
|
|
|
|
|
|
|
checkt |
|
659
|
|
|
|
|
|
|
cla |
|
660
|
|
|
|
|
|
|
cl |
|
661
|
|
|
|
|
|
|
clo |
|
662
|
|
|
|
|
|
|
cmapc |
|
663
|
|
|
|
|
|
|
cnew |
|
664
|
|
|
|
|
|
|
cn |
|
665
|
|
|
|
|
|
|
cN |
|
666
|
|
|
|
|
|
|
cnf |
|
667
|
|
|
|
|
|
|
cNf |
|
668
|
|
|
|
|
|
|
cnorea |
|
669
|
|
|
|
|
|
|
col |
|
670
|
|
|
|
|
|
|
colo |
|
671
|
|
|
|
|
|
|
comc |
|
672
|
|
|
|
|
|
|
comp |
|
673
|
|
|
|
|
|
|
conf |
|
674
|
|
|
|
|
|
|
con |
|
675
|
|
|
|
|
|
|
cope |
|
676
|
|
|
|
|
|
|
co |
|
677
|
|
|
|
|
|
|
cpf |
|
678
|
|
|
|
|
|
|
cp |
|
679
|
|
|
|
|
|
|
cq |
|
680
|
|
|
|
|
|
|
cr |
|
681
|
|
|
|
|
|
|
cuna |
|
682
|
|
|
|
|
|
|
cu |
|
683
|
|
|
|
|
|
|
cw |
|
684
|
|
|
|
|
|
|
debugg |
|
685
|
|
|
|
|
|
|
delc |
|
686
|
|
|
|
|
|
|
d |
|
687
|
|
|
|
|
|
|
delf |
|
688
|
|
|
|
|
|
|
delm |
|
689
|
|
|
|
|
|
|
diffg |
|
690
|
|
|
|
|
|
|
diffpu |
|
691
|
|
|
|
|
|
|
diffu |
|
692
|
|
|
|
|
|
|
dig |
|
693
|
|
|
|
|
|
|
di |
|
694
|
|
|
|
|
|
|
dj |
|
695
|
|
|
|
|
|
|
dl |
|
696
|
|
|
|
|
|
|
dr |
|
697
|
|
|
|
|
|
|
ds |
|
698
|
|
|
|
|
|
|
dsp |
|
699
|
|
|
|
|
|
|
echoe |
|
700
|
|
|
|
|
|
|
echom |
|
701
|
|
|
|
|
|
|
e |
|
702
|
|
|
|
|
|
|
el |
|
703
|
|
|
|
|
|
|
elsei |
|
704
|
|
|
|
|
|
|
em |
|
705
|
|
|
|
|
|
|
endfo |
|
706
|
|
|
|
|
|
|
endf |
|
707
|
|
|
|
|
|
|
en |
|
708
|
|
|
|
|
|
|
endt |
|
709
|
|
|
|
|
|
|
endw |
|
710
|
|
|
|
|
|
|
ene |
|
711
|
|
|
|
|
|
|
exi |
|
712
|
|
|
|
|
|
|
exu |
|
713
|
|
|
|
|
|
|
f |
|
714
|
|
|
|
|
|
|
fina |
|
715
|
|
|
|
|
|
|
fin |
|
716
|
|
|
|
|
|
|
fini |
|
717
|
|
|
|
|
|
|
fir |
|
718
|
|
|
|
|
|
|
fix |
|
719
|
|
|
|
|
|
|
fo |
|
720
|
|
|
|
|
|
|
foldc |
|
721
|
|
|
|
|
|
|
folddoc |
|
722
|
|
|
|
|
|
|
foldd |
|
723
|
|
|
|
|
|
|
foldo |
|
724
|
|
|
|
|
|
|
fu |
|
725
|
|
|
|
|
|
|
go |
|
726
|
|
|
|
|
|
|
gr |
|
727
|
|
|
|
|
|
|
grepa |
|
728
|
|
|
|
|
|
|
ha |
|
729
|
|
|
|
|
|
|
h |
|
730
|
|
|
|
|
|
|
helpf |
|
731
|
|
|
|
|
|
|
helpg |
|
732
|
|
|
|
|
|
|
helpt |
|
733
|
|
|
|
|
|
|
hid |
|
734
|
|
|
|
|
|
|
his |
|
735
|
|
|
|
|
|
|
ia |
|
736
|
|
|
|
|
|
|
iabc |
|
737
|
|
|
|
|
|
|
ij |
|
738
|
|
|
|
|
|
|
il |
|
739
|
|
|
|
|
|
|
imapc |
|
740
|
|
|
|
|
|
|
inorea |
|
741
|
|
|
|
|
|
|
is |
|
742
|
|
|
|
|
|
|
isp |
|
743
|
|
|
|
|
|
|
iuna |
|
744
|
|
|
|
|
|
|
iu |
|
745
|
|
|
|
|
|
|
j |
|
746
|
|
|
|
|
|
|
ju |
|
747
|
|
|
|
|
|
|
keepj |
|
748
|
|
|
|
|
|
|
kee |
|
749
|
|
|
|
|
|
|
laddb |
|
750
|
|
|
|
|
|
|
lad |
|
751
|
|
|
|
|
|
|
laddf |
|
752
|
|
|
|
|
|
|
lan |
|
753
|
|
|
|
|
|
|
la |
|
754
|
|
|
|
|
|
|
lb |
|
755
|
|
|
|
|
|
|
lc |
|
756
|
|
|
|
|
|
|
lch |
|
757
|
|
|
|
|
|
|
lcl |
|
758
|
|
|
|
|
|
|
le |
|
759
|
|
|
|
|
|
|
lefta |
|
760
|
|
|
|
|
|
|
lex |
|
761
|
|
|
|
|
|
|
lf |
|
762
|
|
|
|
|
|
|
lfir |
|
763
|
|
|
|
|
|
|
lgetb |
|
764
|
|
|
|
|
|
|
lgete |
|
765
|
|
|
|
|
|
|
lg |
|
766
|
|
|
|
|
|
|
lgr |
|
767
|
|
|
|
|
|
|
lgrepa |
|
768
|
|
|
|
|
|
|
lh |
|
769
|
|
|
|
|
|
|
l |
|
770
|
|
|
|
|
|
|
lla |
|
771
|
|
|
|
|
|
|
lli |
|
772
|
|
|
|
|
|
|
lmak |
|
773
|
|
|
|
|
|
|
lm |
|
774
|
|
|
|
|
|
|
lmapc |
|
775
|
|
|
|
|
|
|
lnew |
|
776
|
|
|
|
|
|
|
lne |
|
777
|
|
|
|
|
|
|
lN |
|
778
|
|
|
|
|
|
|
lnf |
|
779
|
|
|
|
|
|
|
lNf |
|
780
|
|
|
|
|
|
|
ln |
|
781
|
|
|
|
|
|
|
lo |
|
782
|
|
|
|
|
|
|
loc |
|
783
|
|
|
|
|
|
|
lockv |
|
784
|
|
|
|
|
|
|
lol |
|
785
|
|
|
|
|
|
|
lop |
|
786
|
|
|
|
|
|
|
lpf |
|
787
|
|
|
|
|
|
|
lp |
|
788
|
|
|
|
|
|
|
lr |
|
789
|
|
|
|
|
|
|
lt |
|
790
|
|
|
|
|
|
|
lu |
|
791
|
|
|
|
|
|
|
lv |
|
792
|
|
|
|
|
|
|
lvimgrepa |
|
793
|
|
|
|
|
|
|
lw |
|
794
|
|
|
|
|
|
|
mak |
|
795
|
|
|
|
|
|
|
ma |
|
796
|
|
|
|
|
|
|
mat |
|
797
|
|
|
|
|
|
|
menut |
|
798
|
|
|
|
|
|
|
mk |
|
799
|
|
|
|
|
|
|
mks |
|
800
|
|
|
|
|
|
|
mksp |
|
801
|
|
|
|
|
|
|
mkvie |
|
802
|
|
|
|
|
|
|
mkv |
|
803
|
|
|
|
|
|
|
mod |
|
804
|
|
|
|
|
|
|
m |
|
805
|
|
|
|
|
|
|
mzf |
|
806
|
|
|
|
|
|
|
mz |
|
807
|
|
|
|
|
|
|
n |
|
808
|
|
|
|
|
|
|
N |
|
809
|
|
|
|
|
|
|
nmapc |
|
810
|
|
|
|
|
|
|
noh |
|
811
|
|
|
|
|
|
|
norea |
|
812
|
|
|
|
|
|
|
nu |
|
813
|
|
|
|
|
|
|
nun |
|
814
|
|
|
|
|
|
|
omapc |
|
815
|
|
|
|
|
|
|
on |
|
816
|
|
|
|
|
|
|
o |
|
817
|
|
|
|
|
|
|
opt |
|
818
|
|
|
|
|
|
|
ou |
|
819
|
|
|
|
|
|
|
pc |
|
820
|
|
|
|
|
|
|
ped |
|
821
|
|
|
|
|
|
|
pe |
|
822
|
|
|
|
|
|
|
perld |
|
823
|
|
|
|
|
|
|
po |
|
824
|
|
|
|
|
|
|
popu |
|
825
|
|
|
|
|
|
|
pp |
|
826
|
|
|
|
|
|
|
pre |
|
827
|
|
|
|
|
|
|
prev |
|
828
|
|
|
|
|
|
|
p |
|
829
|
|
|
|
|
|
|
P |
|
830
|
|
|
|
|
|
|
profd |
|
831
|
|
|
|
|
|
|
prof |
|
832
|
|
|
|
|
|
|
promptf |
|
833
|
|
|
|
|
|
|
promptr |
|
834
|
|
|
|
|
|
|
ps |
|
835
|
|
|
|
|
|
|
pta |
|
836
|
|
|
|
|
|
|
ptf |
|
837
|
|
|
|
|
|
|
ptj |
|
838
|
|
|
|
|
|
|
ptl |
|
839
|
|
|
|
|
|
|
ptn |
|
840
|
|
|
|
|
|
|
ptN |
|
841
|
|
|
|
|
|
|
ptp |
|
842
|
|
|
|
|
|
|
ptr |
|
843
|
|
|
|
|
|
|
pts |
|
844
|
|
|
|
|
|
|
pu |
|
845
|
|
|
|
|
|
|
pw |
|
846
|
|
|
|
|
|
|
pyf |
|
847
|
|
|
|
|
|
|
py |
|
848
|
|
|
|
|
|
|
qa |
|
849
|
|
|
|
|
|
|
q |
|
850
|
|
|
|
|
|
|
quita |
|
851
|
|
|
|
|
|
|
r |
|
852
|
|
|
|
|
|
|
rec |
|
853
|
|
|
|
|
|
|
redi |
|
854
|
|
|
|
|
|
|
red |
|
855
|
|
|
|
|
|
|
redr |
|
856
|
|
|
|
|
|
|
redraws |
|
857
|
|
|
|
|
|
|
reg |
|
858
|
|
|
|
|
|
|
res |
|
859
|
|
|
|
|
|
|
ret |
|
860
|
|
|
|
|
|
|
retu |
|
861
|
|
|
|
|
|
|
rew |
|
862
|
|
|
|
|
|
|
ri |
|
863
|
|
|
|
|
|
|
rightb |
|
864
|
|
|
|
|
|
|
rub |
|
865
|
|
|
|
|
|
|
rubyd |
|
866
|
|
|
|
|
|
|
rubyf |
|
867
|
|
|
|
|
|
|
ru |
|
868
|
|
|
|
|
|
|
rv |
|
869
|
|
|
|
|
|
|
sal |
|
870
|
|
|
|
|
|
|
san |
|
871
|
|
|
|
|
|
|
sa |
|
872
|
|
|
|
|
|
|
sav |
|
873
|
|
|
|
|
|
|
sba |
|
874
|
|
|
|
|
|
|
sbf |
|
875
|
|
|
|
|
|
|
sbl |
|
876
|
|
|
|
|
|
|
sbm |
|
877
|
|
|
|
|
|
|
sbn |
|
878
|
|
|
|
|
|
|
sbN |
|
879
|
|
|
|
|
|
|
sbp |
|
880
|
|
|
|
|
|
|
sbr |
|
881
|
|
|
|
|
|
|
sb |
|
882
|
|
|
|
|
|
|
scripte |
|
883
|
|
|
|
|
|
|
scrip |
|
884
|
|
|
|
|
|
|
se |
|
885
|
|
|
|
|
|
|
setf |
|
886
|
|
|
|
|
|
|
setg |
|
887
|
|
|
|
|
|
|
setl |
|
888
|
|
|
|
|
|
|
sf |
|
889
|
|
|
|
|
|
|
sfir |
|
890
|
|
|
|
|
|
|
sh |
|
891
|
|
|
|
|
|
|
sil |
|
892
|
|
|
|
|
|
|
sim |
|
893
|
|
|
|
|
|
|
sla |
|
894
|
|
|
|
|
|
|
sl |
|
895
|
|
|
|
|
|
|
sm |
|
896
|
|
|
|
|
|
|
sm |
|
897
|
|
|
|
|
|
|
smapc |
|
898
|
|
|
|
|
|
|
sn |
|
899
|
|
|
|
|
|
|
sN |
|
900
|
|
|
|
|
|
|
sni |
|
901
|
|
|
|
|
|
|
sno |
|
902
|
|
|
|
|
|
|
snor |
|
903
|
|
|
|
|
|
|
sor |
|
904
|
|
|
|
|
|
|
so |
|
905
|
|
|
|
|
|
|
spelld |
|
906
|
|
|
|
|
|
|
spe |
|
907
|
|
|
|
|
|
|
spelli |
|
908
|
|
|
|
|
|
|
spellr |
|
909
|
|
|
|
|
|
|
spellu |
|
910
|
|
|
|
|
|
|
spellw |
|
911
|
|
|
|
|
|
|
sp |
|
912
|
|
|
|
|
|
|
spr |
|
913
|
|
|
|
|
|
|
sre |
|
914
|
|
|
|
|
|
|
sta |
|
915
|
|
|
|
|
|
|
startg |
|
916
|
|
|
|
|
|
|
star |
|
917
|
|
|
|
|
|
|
startr |
|
918
|
|
|
|
|
|
|
stj |
|
919
|
|
|
|
|
|
|
st |
|
920
|
|
|
|
|
|
|
stopi |
|
921
|
|
|
|
|
|
|
sts |
|
922
|
|
|
|
|
|
|
sun |
|
923
|
|
|
|
|
|
|
sunm |
|
924
|
|
|
|
|
|
|
sus |
|
925
|
|
|
|
|
|
|
sv |
|
926
|
|
|
|
|
|
|
tabc |
|
927
|
|
|
|
|
|
|
tabd |
|
928
|
|
|
|
|
|
|
tabe |
|
929
|
|
|
|
|
|
|
tabf |
|
930
|
|
|
|
|
|
|
tabfir |
|
931
|
|
|
|
|
|
|
tabl |
|
932
|
|
|
|
|
|
|
tabn |
|
933
|
|
|
|
|
|
|
tabN |
|
934
|
|
|
|
|
|
|
tabo |
|
935
|
|
|
|
|
|
|
tabp |
|
936
|
|
|
|
|
|
|
tabr |
|
937
|
|
|
|
|
|
|
ta |
|
938
|
|
|
|
|
|
|
tc |
|
939
|
|
|
|
|
|
|
tcld |
|
940
|
|
|
|
|
|
|
tclf |
|
941
|
|
|
|
|
|
|
te |
|
942
|
|
|
|
|
|
|
tf |
|
943
|
|
|
|
|
|
|
th |
|
944
|
|
|
|
|
|
|
tj |
|
945
|
|
|
|
|
|
|
tl |
|
946
|
|
|
|
|
|
|
tm |
|
947
|
|
|
|
|
|
|
tn |
|
948
|
|
|
|
|
|
|
tN |
|
949
|
|
|
|
|
|
|
to |
|
950
|
|
|
|
|
|
|
tp |
|
951
|
|
|
|
|
|
|
tr |
|
952
|
|
|
|
|
|
|
ts |
|
953
|
|
|
|
|
|
|
tu |
|
954
|
|
|
|
|
|
|
una |
|
955
|
|
|
|
|
|
|
u |
|
956
|
|
|
|
|
|
|
undoj |
|
957
|
|
|
|
|
|
|
undol |
|
958
|
|
|
|
|
|
|
unh |
|
959
|
|
|
|
|
|
|
unlo |
|
960
|
|
|
|
|
|
|
unm |
|
961
|
|
|
|
|
|
|
up |
|
962
|
|
|
|
|
|
|
verb |
|
963
|
|
|
|
|
|
|
ve |
|
964
|
|
|
|
|
|
|
vert |
|
965
|
|
|
|
|
|
|
vie |
|
966
|
|
|
|
|
|
|
vim |
|
967
|
|
|
|
|
|
|
vimgrepa |
|
968
|
|
|
|
|
|
|
vi |
|
969
|
|
|
|
|
|
|
viu |
|
970
|
|
|
|
|
|
|
vmapc |
|
971
|
|
|
|
|
|
|
vne |
|
972
|
|
|
|
|
|
|
vs |
|
973
|
|
|
|
|
|
|
vu |
|
974
|
|
|
|
|
|
|
wa |
|
975
|
|
|
|
|
|
|
wh |
|
976
|
|
|
|
|
|
|
winc |
|
977
|
|
|
|
|
|
|
winp |
|
978
|
|
|
|
|
|
|
win |
|
979
|
|
|
|
|
|
|
wn |
|
980
|
|
|
|
|
|
|
wN |
|
981
|
|
|
|
|
|
|
wp |
|
982
|
|
|
|
|
|
|
wqa |
|
983
|
|
|
|
|
|
|
w |
|
984
|
|
|
|
|
|
|
ws |
|
985
|
|
|
|
|
|
|
wv |
|
986
|
|
|
|
|
|
|
xa |
|
987
|
|
|
|
|
|
|
x |
|
988
|
|
|
|
|
|
|
xm |
|
989
|
|
|
|
|
|
|
xmapc |
|
990
|
|
|
|
|
|
|
xn |
|
991
|
|
|
|
|
|
|
xu |
|
992
|
|
|
|
|
|
|
y |
|
993
|
|
|
|
|
|
|
# names options/full |
|
994
|
|
|
|
|
|
|
aleph |
|
995
|
|
|
|
|
|
|
allowrevins |
|
996
|
|
|
|
|
|
|
altkeymap |
|
997
|
|
|
|
|
|
|
ambiwidth |
|
998
|
|
|
|
|
|
|
antialias |
|
999
|
|
|
|
|
|
|
autochdir |
|
1000
|
|
|
|
|
|
|
arabic |
|
1001
|
|
|
|
|
|
|
arabicshape |
|
1002
|
|
|
|
|
|
|
autoindent |
|
1003
|
|
|
|
|
|
|
autoread |
|
1004
|
|
|
|
|
|
|
autowrite |
|
1005
|
|
|
|
|
|
|
autowriteall |
|
1006
|
|
|
|
|
|
|
background |
|
1007
|
|
|
|
|
|
|
backspace |
|
1008
|
|
|
|
|
|
|
backup |
|
1009
|
|
|
|
|
|
|
backupcopy |
|
1010
|
|
|
|
|
|
|
backupdir |
|
1011
|
|
|
|
|
|
|
backupext |
|
1012
|
|
|
|
|
|
|
backupskip |
|
1013
|
|
|
|
|
|
|
balloondelay |
|
1014
|
|
|
|
|
|
|
ballooneval |
|
1015
|
|
|
|
|
|
|
balloonexpr |
|
1016
|
|
|
|
|
|
|
binary |
|
1017
|
|
|
|
|
|
|
bioskey |
|
1018
|
|
|
|
|
|
|
bomb |
|
1019
|
|
|
|
|
|
|
breakat |
|
1020
|
|
|
|
|
|
|
browsedir |
|
1021
|
|
|
|
|
|
|
bufhidden |
|
1022
|
|
|
|
|
|
|
buflisted |
|
1023
|
|
|
|
|
|
|
buftype |
|
1024
|
|
|
|
|
|
|
casemap |
|
1025
|
|
|
|
|
|
|
cdpath |
|
1026
|
|
|
|
|
|
|
cedit |
|
1027
|
|
|
|
|
|
|
charconvert |
|
1028
|
|
|
|
|
|
|
cindent |
|
1029
|
|
|
|
|
|
|
cinkeys |
|
1030
|
|
|
|
|
|
|
cinoptions |
|
1031
|
|
|
|
|
|
|
cinwords |
|
1032
|
|
|
|
|
|
|
clipboard |
|
1033
|
|
|
|
|
|
|
cmdheight |
|
1034
|
|
|
|
|
|
|
cmdwinheight |
|
1035
|
|
|
|
|
|
|
columns |
|
1036
|
|
|
|
|
|
|
comments |
|
1037
|
|
|
|
|
|
|
commentstring |
|
1038
|
|
|
|
|
|
|
compatible |
|
1039
|
|
|
|
|
|
|
complete |
|
1040
|
|
|
|
|
|
|
completefunc |
|
1041
|
|
|
|
|
|
|
completeopt |
|
1042
|
|
|
|
|
|
|
confirm |
|
1043
|
|
|
|
|
|
|
conskey |
|
1044
|
|
|
|
|
|
|
copyindent |
|
1045
|
|
|
|
|
|
|
cpoptions |
|
1046
|
|
|
|
|
|
|
cscopepathcomp |
|
1047
|
|
|
|
|
|
|
cscopeprg |
|
1048
|
|
|
|
|
|
|
cscopequickfix |
|
1049
|
|
|
|
|
|
|
cscopetag |
|
1050
|
|
|
|
|
|
|
cscopetagorder |
|
1051
|
|
|
|
|
|
|
cscopeverbose |
|
1052
|
|
|
|
|
|
|
cursorcolumn |
|
1053
|
|
|
|
|
|
|
cursorline |
|
1054
|
|
|
|
|
|
|
debug |
|
1055
|
|
|
|
|
|
|
define |
|
1056
|
|
|
|
|
|
|
delcombine |
|
1057
|
|
|
|
|
|
|
dictionary |
|
1058
|
|
|
|
|
|
|
diff |
|
1059
|
|
|
|
|
|
|
diffexpr |
|
1060
|
|
|
|
|
|
|
diffopt |
|
1061
|
|
|
|
|
|
|
digraph |
|
1062
|
|
|
|
|
|
|
directory |
|
1063
|
|
|
|
|
|
|
display |
|
1064
|
|
|
|
|
|
|
eadirection |
|
1065
|
|
|
|
|
|
|
edcompatible |
|
1066
|
|
|
|
|
|
|
encoding |
|
1067
|
|
|
|
|
|
|
endofline |
|
1068
|
|
|
|
|
|
|
equalalways |
|
1069
|
|
|
|
|
|
|
equalprg |
|
1070
|
|
|
|
|
|
|
errorbells |
|
1071
|
|
|
|
|
|
|
errorfile |
|
1072
|
|
|
|
|
|
|
errorformat |
|
1073
|
|
|
|
|
|
|
esckeys |
|
1074
|
|
|
|
|
|
|
eventignore |
|
1075
|
|
|
|
|
|
|
expandtab |
|
1076
|
|
|
|
|
|
|
exrc |
|
1077
|
|
|
|
|
|
|
fileencoding |
|
1078
|
|
|
|
|
|
|
fileencodings |
|
1079
|
|
|
|
|
|
|
fileformat |
|
1080
|
|
|
|
|
|
|
fileformats |
|
1081
|
|
|
|
|
|
|
filetype |
|
1082
|
|
|
|
|
|
|
fillchars |
|
1083
|
|
|
|
|
|
|
fkmap |
|
1084
|
|
|
|
|
|
|
foldclose |
|
1085
|
|
|
|
|
|
|
foldcolumn |
|
1086
|
|
|
|
|
|
|
foldenable |
|
1087
|
|
|
|
|
|
|
foldexpr |
|
1088
|
|
|
|
|
|
|
foldignore |
|
1089
|
|
|
|
|
|
|
foldlevel |
|
1090
|
|
|
|
|
|
|
foldlevelstart |
|
1091
|
|
|
|
|
|
|
foldmarker |
|
1092
|
|
|
|
|
|
|
foldmethod |
|
1093
|
|
|
|
|
|
|
foldminlines |
|
1094
|
|
|
|
|
|
|
foldnestmax |
|
1095
|
|
|
|
|
|
|
foldopen |
|
1096
|
|
|
|
|
|
|
foldtext |
|
1097
|
|
|
|
|
|
|
formatlistpat |
|
1098
|
|
|
|
|
|
|
formatoptions |
|
1099
|
|
|
|
|
|
|
formatprg |
|
1100
|
|
|
|
|
|
|
formatexpr |
|
1101
|
|
|
|
|
|
|
fsync |
|
1102
|
|
|
|
|
|
|
gdefault |
|
1103
|
|
|
|
|
|
|
grepformat |
|
1104
|
|
|
|
|
|
|
grepprg |
|
1105
|
|
|
|
|
|
|
guicursor |
|
1106
|
|
|
|
|
|
|
guifont |
|
1107
|
|
|
|
|
|
|
guifontset |
|
1108
|
|
|
|
|
|
|
guifontwide |
|
1109
|
|
|
|
|
|
|
guiheadroom |
|
1110
|
|
|
|
|
|
|
guioptions |
|
1111
|
|
|
|
|
|
|
guipty |
|
1112
|
|
|
|
|
|
|
guitablabel |
|
1113
|
|
|
|
|
|
|
guitabtooltip |
|
1114
|
|
|
|
|
|
|
helpfile |
|
1115
|
|
|
|
|
|
|
helpheight |
|
1116
|
|
|
|
|
|
|
helplang |
|
1117
|
|
|
|
|
|
|
hidden |
|
1118
|
|
|
|
|
|
|
highlight |
|
1119
|
|
|
|
|
|
|
hlsearch |
|
1120
|
|
|
|
|
|
|
history |
|
1121
|
|
|
|
|
|
|
hkmap |
|
1122
|
|
|
|
|
|
|
hkmapp |
|
1123
|
|
|
|
|
|
|
icon |
|
1124
|
|
|
|
|
|
|
iconstring |
|
1125
|
|
|
|
|
|
|
ignorecase |
|
1126
|
|
|
|
|
|
|
imactivatekey |
|
1127
|
|
|
|
|
|
|
imcmdline |
|
1128
|
|
|
|
|
|
|
imdisable |
|
1129
|
|
|
|
|
|
|
iminsert |
|
1130
|
|
|
|
|
|
|
imsearch |
|
1131
|
|
|
|
|
|
|
include |
|
1132
|
|
|
|
|
|
|
includeexpr |
|
1133
|
|
|
|
|
|
|
incsearch |
|
1134
|
|
|
|
|
|
|
indentexpr |
|
1135
|
|
|
|
|
|
|
indentkeys |
|
1136
|
|
|
|
|
|
|
infercase |
|
1137
|
|
|
|
|
|
|
insertmode |
|
1138
|
|
|
|
|
|
|
isfname |
|
1139
|
|
|
|
|
|
|
isident |
|
1140
|
|
|
|
|
|
|
iskeyword |
|
1141
|
|
|
|
|
|
|
isprint |
|
1142
|
|
|
|
|
|
|
joinspaces |
|
1143
|
|
|
|
|
|
|
key |
|
1144
|
|
|
|
|
|
|
keymap |
|
1145
|
|
|
|
|
|
|
keymodel |
|
1146
|
|
|
|
|
|
|
keywordprg |
|
1147
|
|
|
|
|
|
|
langmap |
|
1148
|
|
|
|
|
|
|
langmenu |
|
1149
|
|
|
|
|
|
|
laststatus |
|
1150
|
|
|
|
|
|
|
lazyredraw |
|
1151
|
|
|
|
|
|
|
linebreak |
|
1152
|
|
|
|
|
|
|
lines |
|
1153
|
|
|
|
|
|
|
linespace |
|
1154
|
|
|
|
|
|
|
lisp |
|
1155
|
|
|
|
|
|
|
lispwords |
|
1156
|
|
|
|
|
|
|
list |
|
1157
|
|
|
|
|
|
|
listchars |
|
1158
|
|
|
|
|
|
|
loadplugins |
|
1159
|
|
|
|
|
|
|
macatsui |
|
1160
|
|
|
|
|
|
|
magic |
|
1161
|
|
|
|
|
|
|
makeef |
|
1162
|
|
|
|
|
|
|
makeprg |
|
1163
|
|
|
|
|
|
|
matchpairs |
|
1164
|
|
|
|
|
|
|
matchtime |
|
1165
|
|
|
|
|
|
|
maxcombine |
|
1166
|
|
|
|
|
|
|
maxfuncdepth |
|
1167
|
|
|
|
|
|
|
maxmapdepth |
|
1168
|
|
|
|
|
|
|
maxmem |
|
1169
|
|
|
|
|
|
|
maxmempattern |
|
1170
|
|
|
|
|
|
|
maxmemtot |
|
1171
|
|
|
|
|
|
|
menuitems |
|
1172
|
|
|
|
|
|
|
mkspellmem |
|
1173
|
|
|
|
|
|
|
modeline |
|
1174
|
|
|
|
|
|
|
modelines |
|
1175
|
|
|
|
|
|
|
modifiable |
|
1176
|
|
|
|
|
|
|
modified |
|
1177
|
|
|
|
|
|
|
more |
|
1178
|
|
|
|
|
|
|
mouse |
|
1179
|
|
|
|
|
|
|
mousefocus |
|
1180
|
|
|
|
|
|
|
mousehide |
|
1181
|
|
|
|
|
|
|
mousemodel |
|
1182
|
|
|
|
|
|
|
mouseshape |
|
1183
|
|
|
|
|
|
|
mousetime |
|
1184
|
|
|
|
|
|
|
mzquantum |
|
1185
|
|
|
|
|
|
|
nrformats |
|
1186
|
|
|
|
|
|
|
number |
|
1187
|
|
|
|
|
|
|
numberwidth |
|
1188
|
|
|
|
|
|
|
omnifunc |
|
1189
|
|
|
|
|
|
|
operatorfunc |
|
1190
|
|
|
|
|
|
|
osfiletype |
|
1191
|
|
|
|
|
|
|
paragraphs |
|
1192
|
|
|
|
|
|
|
paste |
|
1193
|
|
|
|
|
|
|
pastetoggle |
|
1194
|
|
|
|
|
|
|
patchexpr |
|
1195
|
|
|
|
|
|
|
patchmode |
|
1196
|
|
|
|
|
|
|
path |
|
1197
|
|
|
|
|
|
|
preserveindent |
|
1198
|
|
|
|
|
|
|
previewheight |
|
1199
|
|
|
|
|
|
|
previewwindow |
|
1200
|
|
|
|
|
|
|
printdevice |
|
1201
|
|
|
|
|
|
|
printencoding |
|
1202
|
|
|
|
|
|
|
printexpr |
|
1203
|
|
|
|
|
|
|
printfont |
|
1204
|
|
|
|
|
|
|
printheader |
|
1205
|
|
|
|
|
|
|
printmbcharset |
|
1206
|
|
|
|
|
|
|
printmbfont |
|
1207
|
|
|
|
|
|
|
printoptions |
|
1208
|
|
|
|
|
|
|
pumheight |
|
1209
|
|
|
|
|
|
|
quoteescape |
|
1210
|
|
|
|
|
|
|
readonly |
|
1211
|
|
|
|
|
|
|
remap |
|
1212
|
|
|
|
|
|
|
report |
|
1213
|
|
|
|
|
|
|
restorescreen |
|
1214
|
|
|
|
|
|
|
revins |
|
1215
|
|
|
|
|
|
|
rightleft |
|
1216
|
|
|
|
|
|
|
rightleftcmd |
|
1217
|
|
|
|
|
|
|
ruler |
|
1218
|
|
|
|
|
|
|
rulerformat |
|
1219
|
|
|
|
|
|
|
runtimepath |
|
1220
|
|
|
|
|
|
|
scroll |
|
1221
|
|
|
|
|
|
|
scrollbind |
|
1222
|
|
|
|
|
|
|
scrolljump |
|
1223
|
|
|
|
|
|
|
scrolloff |
|
1224
|
|
|
|
|
|
|
scrollopt |
|
1225
|
|
|
|
|
|
|
sections |
|
1226
|
|
|
|
|
|
|
secure |
|
1227
|
|
|
|
|
|
|
selection |
|
1228
|
|
|
|
|
|
|
selectmode |
|
1229
|
|
|
|
|
|
|
sessionoptions |
|
1230
|
|
|
|
|
|
|
shell |
|
1231
|
|
|
|
|
|
|
shellcmdflag |
|
1232
|
|
|
|
|
|
|
shellpipe |
|
1233
|
|
|
|
|
|
|
shellquote |
|
1234
|
|
|
|
|
|
|
shellredir |
|
1235
|
|
|
|
|
|
|
shellslash |
|
1236
|
|
|
|
|
|
|
shelltemp |
|
1237
|
|
|
|
|
|
|
shelltype |
|
1238
|
|
|
|
|
|
|
shellxquote |
|
1239
|
|
|
|
|
|
|
shiftround |
|
1240
|
|
|
|
|
|
|
shiftwidth |
|
1241
|
|
|
|
|
|
|
shortmess |
|
1242
|
|
|
|
|
|
|
shortname |
|
1243
|
|
|
|
|
|
|
showbreak |
|
1244
|
|
|
|
|
|
|
showcmd |
|
1245
|
|
|
|
|
|
|
showfulltag |
|
1246
|
|
|
|
|
|
|
showmatch |
|
1247
|
|
|
|
|
|
|
showmode |
|
1248
|
|
|
|
|
|
|
showtabline |
|
1249
|
|
|
|
|
|
|
sidescroll |
|
1250
|
|
|
|
|
|
|
sidescrolloff |
|
1251
|
|
|
|
|
|
|
smartcase |
|
1252
|
|
|
|
|
|
|
smartindent |
|
1253
|
|
|
|
|
|
|
smarttab |
|
1254
|
|
|
|
|
|
|
softtabstop |
|
1255
|
|
|
|
|
|
|
spell |
|
1256
|
|
|
|
|
|
|
spellcapcheck |
|
1257
|
|
|
|
|
|
|
spellfile |
|
1258
|
|
|
|
|
|
|
spelllang |
|
1259
|
|
|
|
|
|
|
spellsuggest |
|
1260
|
|
|
|
|
|
|
splitbelow |
|
1261
|
|
|
|
|
|
|
splitright |
|
1262
|
|
|
|
|
|
|
startofline |
|
1263
|
|
|
|
|
|
|
statusline |
|
1264
|
|
|
|
|
|
|
suffixes |
|
1265
|
|
|
|
|
|
|
suffixesadd |
|
1266
|
|
|
|
|
|
|
swapfile |
|
1267
|
|
|
|
|
|
|
swapsync |
|
1268
|
|
|
|
|
|
|
switchbuf |
|
1269
|
|
|
|
|
|
|
synmaxcol |
|
1270
|
|
|
|
|
|
|
syntax |
|
1271
|
|
|
|
|
|
|
tabstop |
|
1272
|
|
|
|
|
|
|
tabline |
|
1273
|
|
|
|
|
|
|
tabpagemax |
|
1274
|
|
|
|
|
|
|
tagbsearch |
|
1275
|
|
|
|
|
|
|
taglength |
|
1276
|
|
|
|
|
|
|
tagrelative |
|
1277
|
|
|
|
|
|
|
tags |
|
1278
|
|
|
|
|
|
|
tagstack |
|
1279
|
|
|
|
|
|
|
term |
|
1280
|
|
|
|
|
|
|
termbidi |
|
1281
|
|
|
|
|
|
|
termencoding |
|
1282
|
|
|
|
|
|
|
terse |
|
1283
|
|
|
|
|
|
|
textauto |
|
1284
|
|
|
|
|
|
|
textmode |
|
1285
|
|
|
|
|
|
|
textwidth |
|
1286
|
|
|
|
|
|
|
thesaurus |
|
1287
|
|
|
|
|
|
|
tildeop |
|
1288
|
|
|
|
|
|
|
timeout |
|
1289
|
|
|
|
|
|
|
timeoutlen |
|
1290
|
|
|
|
|
|
|
title |
|
1291
|
|
|
|
|
|
|
titlelen |
|
1292
|
|
|
|
|
|
|
titleold |
|
1293
|
|
|
|
|
|
|
titlestring |
|
1294
|
|
|
|
|
|
|
toolbar |
|
1295
|
|
|
|
|
|
|
toolbariconsize |
|
1296
|
|
|
|
|
|
|
ttimeout |
|
1297
|
|
|
|
|
|
|
ttimeoutlen |
|
1298
|
|
|
|
|
|
|
ttybuiltin |
|
1299
|
|
|
|
|
|
|
ttyfast |
|
1300
|
|
|
|
|
|
|
ttymouse |
|
1301
|
|
|
|
|
|
|
ttyscroll |
|
1302
|
|
|
|
|
|
|
ttytype |
|
1303
|
|
|
|
|
|
|
undolevels |
|
1304
|
|
|
|
|
|
|
updatecount |
|
1305
|
|
|
|
|
|
|
updatetime |
|
1306
|
|
|
|
|
|
|
verbose |
|
1307
|
|
|
|
|
|
|
verbosefile |
|
1308
|
|
|
|
|
|
|
viewdir |
|
1309
|
|
|
|
|
|
|
viewoptions |
|
1310
|
|
|
|
|
|
|
viminfo |
|
1311
|
|
|
|
|
|
|
virtualedit |
|
1312
|
|
|
|
|
|
|
visualbell |
|
1313
|
|
|
|
|
|
|
warn |
|
1314
|
|
|
|
|
|
|
weirdinvert |
|
1315
|
|
|
|
|
|
|
whichwrap |
|
1316
|
|
|
|
|
|
|
wildchar |
|
1317
|
|
|
|
|
|
|
wildcharm |
|
1318
|
|
|
|
|
|
|
wildignore |
|
1319
|
|
|
|
|
|
|
wildmenu |
|
1320
|
|
|
|
|
|
|
wildmode |
|
1321
|
|
|
|
|
|
|
wildoptions |
|
1322
|
|
|
|
|
|
|
winaltkeys |
|
1323
|
|
|
|
|
|
|
winheight |
|
1324
|
|
|
|
|
|
|
winfixheight |
|
1325
|
|
|
|
|
|
|
winfixwidth |
|
1326
|
|
|
|
|
|
|
winminheight |
|
1327
|
|
|
|
|
|
|
winminwidth |
|
1328
|
|
|
|
|
|
|
winwidth |
|
1329
|
|
|
|
|
|
|
wrap |
|
1330
|
|
|
|
|
|
|
wrapmargin |
|
1331
|
|
|
|
|
|
|
wrapscan |
|
1332
|
|
|
|
|
|
|
write |
|
1333
|
|
|
|
|
|
|
writeany |
|
1334
|
|
|
|
|
|
|
writebackup |
|
1335
|
|
|
|
|
|
|
writedelay |
|
1336
|
|
|
|
|
|
|
# names options/abbreviated |
|
1337
|
|
|
|
|
|
|
al |
|
1338
|
|
|
|
|
|
|
ari |
|
1339
|
|
|
|
|
|
|
akm |
|
1340
|
|
|
|
|
|
|
ambw |
|
1341
|
|
|
|
|
|
|
anti |
|
1342
|
|
|
|
|
|
|
acd |
|
1343
|
|
|
|
|
|
|
arab |
|
1344
|
|
|
|
|
|
|
arshape |
|
1345
|
|
|
|
|
|
|
ai |
|
1346
|
|
|
|
|
|
|
ar |
|
1347
|
|
|
|
|
|
|
aw |
|
1348
|
|
|
|
|
|
|
awa |
|
1349
|
|
|
|
|
|
|
bg |
|
1350
|
|
|
|
|
|
|
bs |
|
1351
|
|
|
|
|
|
|
bk |
|
1352
|
|
|
|
|
|
|
bkc |
|
1353
|
|
|
|
|
|
|
bdir |
|
1354
|
|
|
|
|
|
|
bex |
|
1355
|
|
|
|
|
|
|
bsk |
|
1356
|
|
|
|
|
|
|
bdlay |
|
1357
|
|
|
|
|
|
|
beval |
|
1358
|
|
|
|
|
|
|
bexpr |
|
1359
|
|
|
|
|
|
|
bin |
|
1360
|
|
|
|
|
|
|
biosk |
|
1361
|
|
|
|
|
|
|
brk |
|
1362
|
|
|
|
|
|
|
bsdir |
|
1363
|
|
|
|
|
|
|
bh |
|
1364
|
|
|
|
|
|
|
bl |
|
1365
|
|
|
|
|
|
|
bt |
|
1366
|
|
|
|
|
|
|
cmp |
|
1367
|
|
|
|
|
|
|
cd |
|
1368
|
|
|
|
|
|
|
ccv |
|
1369
|
|
|
|
|
|
|
cin |
|
1370
|
|
|
|
|
|
|
cink |
|
1371
|
|
|
|
|
|
|
cino |
|
1372
|
|
|
|
|
|
|
cinw |
|
1373
|
|
|
|
|
|
|
cb |
|
1374
|
|
|
|
|
|
|
ch |
|
1375
|
|
|
|
|
|
|
cwh |
|
1376
|
|
|
|
|
|
|
co |
|
1377
|
|
|
|
|
|
|
com |
|
1378
|
|
|
|
|
|
|
cms |
|
1379
|
|
|
|
|
|
|
cp |
|
1380
|
|
|
|
|
|
|
cpt |
|
1381
|
|
|
|
|
|
|
cfu |
|
1382
|
|
|
|
|
|
|
cot |
|
1383
|
|
|
|
|
|
|
cf |
|
1384
|
|
|
|
|
|
|
consk |
|
1385
|
|
|
|
|
|
|
ci |
|
1386
|
|
|
|
|
|
|
cpo |
|
1387
|
|
|
|
|
|
|
cspc |
|
1388
|
|
|
|
|
|
|
csprg |
|
1389
|
|
|
|
|
|
|
csqf |
|
1390
|
|
|
|
|
|
|
cst |
|
1391
|
|
|
|
|
|
|
csto |
|
1392
|
|
|
|
|
|
|
csverb |
|
1393
|
|
|
|
|
|
|
cuc |
|
1394
|
|
|
|
|
|
|
cul |
|
1395
|
|
|
|
|
|
|
def |
|
1396
|
|
|
|
|
|
|
deco |
|
1397
|
|
|
|
|
|
|
dict |
|
1398
|
|
|
|
|
|
|
dex |
|
1399
|
|
|
|
|
|
|
dip |
|
1400
|
|
|
|
|
|
|
dg |
|
1401
|
|
|
|
|
|
|
dir |
|
1402
|
|
|
|
|
|
|
dy |
|
1403
|
|
|
|
|
|
|
ead |
|
1404
|
|
|
|
|
|
|
ed |
|
1405
|
|
|
|
|
|
|
enc |
|
1406
|
|
|
|
|
|
|
eol |
|
1407
|
|
|
|
|
|
|
ea |
|
1408
|
|
|
|
|
|
|
ep |
|
1409
|
|
|
|
|
|
|
eb |
|
1410
|
|
|
|
|
|
|
ef |
|
1411
|
|
|
|
|
|
|
efm |
|
1412
|
|
|
|
|
|
|
ek |
|
1413
|
|
|
|
|
|
|
ei |
|
1414
|
|
|
|
|
|
|
et |
|
1415
|
|
|
|
|
|
|
ex |
|
1416
|
|
|
|
|
|
|
fenc |
|
1417
|
|
|
|
|
|
|
fencs |
|
1418
|
|
|
|
|
|
|
ff |
|
1419
|
|
|
|
|
|
|
ffs |
|
1420
|
|
|
|
|
|
|
ft |
|
1421
|
|
|
|
|
|
|
fcs |
|
1422
|
|
|
|
|
|
|
fk |
|
1423
|
|
|
|
|
|
|
fcl |
|
1424
|
|
|
|
|
|
|
fdc |
|
1425
|
|
|
|
|
|
|
fen |
|
1426
|
|
|
|
|
|
|
fde |
|
1427
|
|
|
|
|
|
|
fdi |
|
1428
|
|
|
|
|
|
|
fdl |
|
1429
|
|
|
|
|
|
|
fdls |
|
1430
|
|
|
|
|
|
|
fmr |
|
1431
|
|
|
|
|
|
|
fdm |
|
1432
|
|
|
|
|
|
|
fml |
|
1433
|
|
|
|
|
|
|
fdn |
|
1434
|
|
|
|
|
|
|
fdo |
|
1435
|
|
|
|
|
|
|
fdt |
|
1436
|
|
|
|
|
|
|
flp |
|
1437
|
|
|
|
|
|
|
fo |
|
1438
|
|
|
|
|
|
|
fp |
|
1439
|
|
|
|
|
|
|
fex |
|
1440
|
|
|
|
|
|
|
fs |
|
1441
|
|
|
|
|
|
|
gd |
|
1442
|
|
|
|
|
|
|
gfm |
|
1443
|
|
|
|
|
|
|
gp |
|
1444
|
|
|
|
|
|
|
gcr |
|
1445
|
|
|
|
|
|
|
gfn |
|
1446
|
|
|
|
|
|
|
gfs |
|
1447
|
|
|
|
|
|
|
gfw |
|
1448
|
|
|
|
|
|
|
ghr |
|
1449
|
|
|
|
|
|
|
go |
|
1450
|
|
|
|
|
|
|
gtl |
|
1451
|
|
|
|
|
|
|
gtt |
|
1452
|
|
|
|
|
|
|
hf |
|
1453
|
|
|
|
|
|
|
hh |
|
1454
|
|
|
|
|
|
|
hlg |
|
1455
|
|
|
|
|
|
|
hid |
|
1456
|
|
|
|
|
|
|
hl |
|
1457
|
|
|
|
|
|
|
hls |
|
1458
|
|
|
|
|
|
|
hi |
|
1459
|
|
|
|
|
|
|
hk |
|
1460
|
|
|
|
|
|
|
hkp |
|
1461
|
|
|
|
|
|
|
ic |
|
1462
|
|
|
|
|
|
|
imak |
|
1463
|
|
|
|
|
|
|
imc |
|
1464
|
|
|
|
|
|
|
imd |
|
1465
|
|
|
|
|
|
|
imi |
|
1466
|
|
|
|
|
|
|
ims |
|
1467
|
|
|
|
|
|
|
inc |
|
1468
|
|
|
|
|
|
|
inex |
|
1469
|
|
|
|
|
|
|
is |
|
1470
|
|
|
|
|
|
|
inde |
|
1471
|
|
|
|
|
|
|
indk |
|
1472
|
|
|
|
|
|
|
inf |
|
1473
|
|
|
|
|
|
|
im |
|
1474
|
|
|
|
|
|
|
isf |
|
1475
|
|
|
|
|
|
|
isi |
|
1476
|
|
|
|
|
|
|
isk |
|
1477
|
|
|
|
|
|
|
isp |
|
1478
|
|
|
|
|
|
|
js |
|
1479
|
|
|
|
|
|
|
kmp |
|
1480
|
|
|
|
|
|
|
km |
|
1481
|
|
|
|
|
|
|
kp |
|
1482
|
|
|
|
|
|
|
lmap |
|
1483
|
|
|
|
|
|
|
lm |
|
1484
|
|
|
|
|
|
|
ls |
|
1485
|
|
|
|
|
|
|
lz |
|
1486
|
|
|
|
|
|
|
lbr |
|
1487
|
|
|
|
|
|
|
lsp |
|
1488
|
|
|
|
|
|
|
lw |
|
1489
|
|
|
|
|
|
|
lcs |
|
1490
|
|
|
|
|
|
|
lpl |
|
1491
|
|
|
|
|
|
|
mef |
|
1492
|
|
|
|
|
|
|
mp |
|
1493
|
|
|
|
|
|
|
mps |
|
1494
|
|
|
|
|
|
|
mat |
|
1495
|
|
|
|
|
|
|
mco |
|
1496
|
|
|
|
|
|
|
mfd |
|
1497
|
|
|
|
|
|
|
mmd |
|
1498
|
|
|
|
|
|
|
mm |
|
1499
|
|
|
|
|
|
|
mmp |
|
1500
|
|
|
|
|
|
|
mmt |
|
1501
|
|
|
|
|
|
|
mis |
|
1502
|
|
|
|
|
|
|
msm |
|
1503
|
|
|
|
|
|
|
ml |
|
1504
|
|
|
|
|
|
|
mls |
|
1505
|
|
|
|
|
|
|
ma |
|
1506
|
|
|
|
|
|
|
mod |
|
1507
|
|
|
|
|
|
|
mousef |
|
1508
|
|
|
|
|
|
|
mh |
|
1509
|
|
|
|
|
|
|
mousem |
|
1510
|
|
|
|
|
|
|
mouses |
|
1511
|
|
|
|
|
|
|
mouset |
|
1512
|
|
|
|
|
|
|
mzq |
|
1513
|
|
|
|
|
|
|
nf |
|
1514
|
|
|
|
|
|
|
nu |
|
1515
|
|
|
|
|
|
|
nuw |
|
1516
|
|
|
|
|
|
|
ofu |
|
1517
|
|
|
|
|
|
|
opfunc |
|
1518
|
|
|
|
|
|
|
oft |
|
1519
|
|
|
|
|
|
|
para |
|
1520
|
|
|
|
|
|
|
pt |
|
1521
|
|
|
|
|
|
|
pex |
|
1522
|
|
|
|
|
|
|
pm |
|
1523
|
|
|
|
|
|
|
pa |
|
1524
|
|
|
|
|
|
|
pi |
|
1525
|
|
|
|
|
|
|
pvh |
|
1526
|
|
|
|
|
|
|
pvw |
|
1527
|
|
|
|
|
|
|
pdev |
|
1528
|
|
|
|
|
|
|
penc |
|
1529
|
|
|
|
|
|
|
pexpr |
|
1530
|
|
|
|
|
|
|
pfn |
|
1531
|
|
|
|
|
|
|
pheader |
|
1532
|
|
|
|
|
|
|
pmbcs |
|
1533
|
|
|
|
|
|
|
pmbfn |
|
1534
|
|
|
|
|
|
|
popt |
|
1535
|
|
|
|
|
|
|
ph |
|
1536
|
|
|
|
|
|
|
qe |
|
1537
|
|
|
|
|
|
|
ro |
|
1538
|
|
|
|
|
|
|
rs |
|
1539
|
|
|
|
|
|
|
ri |
|
1540
|
|
|
|
|
|
|
rl |
|
1541
|
|
|
|
|
|
|
rlc |
|
1542
|
|
|
|
|
|
|
ru |
|
1543
|
|
|
|
|
|
|
ruf |
|
1544
|
|
|
|
|
|
|
rtp |
|
1545
|
|
|
|
|
|
|
scr |
|
1546
|
|
|
|
|
|
|
scb |
|
1547
|
|
|
|
|
|
|
sj |
|
1548
|
|
|
|
|
|
|
so |
|
1549
|
|
|
|
|
|
|
sbo |
|
1550
|
|
|
|
|
|
|
sect |
|
1551
|
|
|
|
|
|
|
sel |
|
1552
|
|
|
|
|
|
|
slm |
|
1553
|
|
|
|
|
|
|
ssop |
|
1554
|
|
|
|
|
|
|
sh |
|
1555
|
|
|
|
|
|
|
shcf |
|
1556
|
|
|
|
|
|
|
sp |
|
1557
|
|
|
|
|
|
|
shq |
|
1558
|
|
|
|
|
|
|
srr |
|
1559
|
|
|
|
|
|
|
ssl |
|
1560
|
|
|
|
|
|
|
stmp |
|
1561
|
|
|
|
|
|
|
st |
|
1562
|
|
|
|
|
|
|
sxq |
|
1563
|
|
|
|
|
|
|
sr |
|
1564
|
|
|
|
|
|
|
sw |
|
1565
|
|
|
|
|
|
|
shm |
|
1566
|
|
|
|
|
|
|
sn |
|
1567
|
|
|
|
|
|
|
sbr |
|
1568
|
|
|
|
|
|
|
sc |
|
1569
|
|
|
|
|
|
|
sft |
|
1570
|
|
|
|
|
|
|
sm |
|
1571
|
|
|
|
|
|
|
smd |
|
1572
|
|
|
|
|
|
|
stal |
|
1573
|
|
|
|
|
|
|
ss |
|
1574
|
|
|
|
|
|
|
siso |
|
1575
|
|
|
|
|
|
|
scs |
|
1576
|
|
|
|
|
|
|
si |
|
1577
|
|
|
|
|
|
|
sta |
|
1578
|
|
|
|
|
|
|
sts |
|
1579
|
|
|
|
|
|
|
spc |
|
1580
|
|
|
|
|
|
|
spf |
|
1581
|
|
|
|
|
|
|
spl |
|
1582
|
|
|
|
|
|
|
sps |
|
1583
|
|
|
|
|
|
|
sb |
|
1584
|
|
|
|
|
|
|
spr |
|
1585
|
|
|
|
|
|
|
sol |
|
1586
|
|
|
|
|
|
|
stl |
|
1587
|
|
|
|
|
|
|
su |
|
1588
|
|
|
|
|
|
|
sua |
|
1589
|
|
|
|
|
|
|
swf |
|
1590
|
|
|
|
|
|
|
sws |
|
1591
|
|
|
|
|
|
|
swb |
|
1592
|
|
|
|
|
|
|
smc |
|
1593
|
|
|
|
|
|
|
syn |
|
1594
|
|
|
|
|
|
|
ts |
|
1595
|
|
|
|
|
|
|
tal |
|
1596
|
|
|
|
|
|
|
tpm |
|
1597
|
|
|
|
|
|
|
tbs |
|
1598
|
|
|
|
|
|
|
tl |
|
1599
|
|
|
|
|
|
|
tr |
|
1600
|
|
|
|
|
|
|
tag |
|
1601
|
|
|
|
|
|
|
tgst |
|
1602
|
|
|
|
|
|
|
tbidi |
|
1603
|
|
|
|
|
|
|
tenc |
|
1604
|
|
|
|
|
|
|
ta |
|
1605
|
|
|
|
|
|
|
tx |
|
1606
|
|
|
|
|
|
|
tw |
|
1607
|
|
|
|
|
|
|
tsr |
|
1608
|
|
|
|
|
|
|
top |
|
1609
|
|
|
|
|
|
|
to |
|
1610
|
|
|
|
|
|
|
tm |
|
1611
|
|
|
|
|
|
|
tb |
|
1612
|
|
|
|
|
|
|
tbis |
|
1613
|
|
|
|
|
|
|
ttm |
|
1614
|
|
|
|
|
|
|
tbi |
|
1615
|
|
|
|
|
|
|
tf |
|
1616
|
|
|
|
|
|
|
ttym |
|
1617
|
|
|
|
|
|
|
tsl |
|
1618
|
|
|
|
|
|
|
tty |
|
1619
|
|
|
|
|
|
|
ul |
|
1620
|
|
|
|
|
|
|
uc |
|
1621
|
|
|
|
|
|
|
ut |
|
1622
|
|
|
|
|
|
|
vbs |
|
1623
|
|
|
|
|
|
|
vfile |
|
1624
|
|
|
|
|
|
|
vdir |
|
1625
|
|
|
|
|
|
|
vop |
|
1626
|
|
|
|
|
|
|
vi |
|
1627
|
|
|
|
|
|
|
ve |
|
1628
|
|
|
|
|
|
|
vb |
|
1629
|
|
|
|
|
|
|
wi |
|
1630
|
|
|
|
|
|
|
ww |
|
1631
|
|
|
|
|
|
|
wc |
|
1632
|
|
|
|
|
|
|
wcm |
|
1633
|
|
|
|
|
|
|
wig |
|
1634
|
|
|
|
|
|
|
wmnu |
|
1635
|
|
|
|
|
|
|
wim |
|
1636
|
|
|
|
|
|
|
wop |
|
1637
|
|
|
|
|
|
|
wak |
|
1638
|
|
|
|
|
|
|
wh |
|
1639
|
|
|
|
|
|
|
wfh |
|
1640
|
|
|
|
|
|
|
wfw |
|
1641
|
|
|
|
|
|
|
wmh |
|
1642
|
|
|
|
|
|
|
wmw |
|
1643
|
|
|
|
|
|
|
wiw |
|
1644
|
|
|
|
|
|
|
wm |
|
1645
|
|
|
|
|
|
|
ws |
|
1646
|
|
|
|
|
|
|
wa |
|
1647
|
|
|
|
|
|
|
wb |
|
1648
|
|
|
|
|
|
|
wd |
|
1649
|
|
|
|
|
|
|
# names events |
|
1650
|
|
|
|
|
|
|
BufAdd |
|
1651
|
|
|
|
|
|
|
BufCreate |
|
1652
|
|
|
|
|
|
|
BufDelete |
|
1653
|
|
|
|
|
|
|
BufEnter |
|
1654
|
|
|
|
|
|
|
BufFilePost |
|
1655
|
|
|
|
|
|
|
BufFilePre |
|
1656
|
|
|
|
|
|
|
BufHidden |
|
1657
|
|
|
|
|
|
|
BufLeave |
|
1658
|
|
|
|
|
|
|
BufNew |
|
1659
|
|
|
|
|
|
|
BufNewFile |
|
1660
|
|
|
|
|
|
|
BufRead |
|
1661
|
|
|
|
|
|
|
BufReadCmd |
|
1662
|
|
|
|
|
|
|
BufReadPost |
|
1663
|
|
|
|
|
|
|
BufReadPre |
|
1664
|
|
|
|
|
|
|
BufUnload |
|
1665
|
|
|
|
|
|
|
BufWinEnter |
|
1666
|
|
|
|
|
|
|
BufWinLeave |
|
1667
|
|
|
|
|
|
|
BufWipeout |
|
1668
|
|
|
|
|
|
|
BufWrite |
|
1669
|
|
|
|
|
|
|
BufWriteCmd |
|
1670
|
|
|
|
|
|
|
BufWritePost |
|
1671
|
|
|
|
|
|
|
BufWritePre |
|
1672
|
|
|
|
|
|
|
CmdwinEnter |
|
1673
|
|
|
|
|
|
|
CmdwinLeave |
|
1674
|
|
|
|
|
|
|
ColorScheme |
|
1675
|
|
|
|
|
|
|
CursorHold |
|
1676
|
|
|
|
|
|
|
CursorHoldI |
|
1677
|
|
|
|
|
|
|
CursorMoved |
|
1678
|
|
|
|
|
|
|
CursorMovedI |
|
1679
|
|
|
|
|
|
|
EncodingChanged |
|
1680
|
|
|
|
|
|
|
FileAppendCmd |
|
1681
|
|
|
|
|
|
|
FileAppendPost |
|
1682
|
|
|
|
|
|
|
FileAppendPre |
|
1683
|
|
|
|
|
|
|
FileChangedRO |
|
1684
|
|
|
|
|
|
|
FileChangedShell |
|
1685
|
|
|
|
|
|
|
FileChangedShellPost |
|
1686
|
|
|
|
|
|
|
FileEncoding |
|
1687
|
|
|
|
|
|
|
FileReadCmd |
|
1688
|
|
|
|
|
|
|
FileReadPost |
|
1689
|
|
|
|
|
|
|
FileReadPre |
|
1690
|
|
|
|
|
|
|
FileType |
|
1691
|
|
|
|
|
|
|
FileWriteCmd |
|
1692
|
|
|
|
|
|
|
FileWritePost |
|
1693
|
|
|
|
|
|
|
FileWritePre |
|
1694
|
|
|
|
|
|
|
FilterReadPost |
|
1695
|
|
|
|
|
|
|
FilterReadPre |
|
1696
|
|
|
|
|
|
|
FilterWritePost |
|
1697
|
|
|
|
|
|
|
FilterWritePre |
|
1698
|
|
|
|
|
|
|
FocusGained |
|
1699
|
|
|
|
|
|
|
FocusLost |
|
1700
|
|
|
|
|
|
|
FuncUndefined |
|
1701
|
|
|
|
|
|
|
GUIEnter |
|
1702
|
|
|
|
|
|
|
InsertChange |
|
1703
|
|
|
|
|
|
|
InsertEnter |
|
1704
|
|
|
|
|
|
|
InsertLeave |
|
1705
|
|
|
|
|
|
|
MenuPopup |
|
1706
|
|
|
|
|
|
|
QuickFixCmdPost |
|
1707
|
|
|
|
|
|
|
QuickFixCmdPre |
|
1708
|
|
|
|
|
|
|
RemoteReply |
|
1709
|
|
|
|
|
|
|
SessionLoadPost |
|
1710
|
|
|
|
|
|
|
ShellCmdPost |
|
1711
|
|
|
|
|
|
|
ShellFilterPost |
|
1712
|
|
|
|
|
|
|
SourcePre |
|
1713
|
|
|
|
|
|
|
SpellFileMissing |
|
1714
|
|
|
|
|
|
|
StdinReadPost |
|
1715
|
|
|
|
|
|
|
StdinReadPre |
|
1716
|
|
|
|
|
|
|
SwapExists |
|
1717
|
|
|
|
|
|
|
Syntax |
|
1718
|
|
|
|
|
|
|
TabEnter |
|
1719
|
|
|
|
|
|
|
TabLeave |
|
1720
|
|
|
|
|
|
|
TermChanged |
|
1721
|
|
|
|
|
|
|
TermResponse |
|
1722
|
|
|
|
|
|
|
User |
|
1723
|
|
|
|
|
|
|
UserGettingBored |
|
1724
|
|
|
|
|
|
|
VimEnter |
|
1725
|
|
|
|
|
|
|
VimLeave |
|
1726
|
|
|
|
|
|
|
VimLeavePre |
|
1727
|
|
|
|
|
|
|
VimResized |
|
1728
|
|
|
|
|
|
|
WinEnter |
|
1729
|
|
|
|
|
|
|
WinLeave |
|
1730
|
|
|
|
|
|
|
# names functions |
|
1731
|
|
|
|
|
|
|
add |
|
1732
|
|
|
|
|
|
|
append |
|
1733
|
|
|
|
|
|
|
argc |
|
1734
|
|
|
|
|
|
|
argidx |
|
1735
|
|
|
|
|
|
|
argv |
|
1736
|
|
|
|
|
|
|
browse |
|
1737
|
|
|
|
|
|
|
browsedir |
|
1738
|
|
|
|
|
|
|
bufexists |
|
1739
|
|
|
|
|
|
|
buflisted |
|
1740
|
|
|
|
|
|
|
bufloaded |
|
1741
|
|
|
|
|
|
|
bufname |
|
1742
|
|
|
|
|
|
|
bufnr |
|
1743
|
|
|
|
|
|
|
bufwinnr |
|
1744
|
|
|
|
|
|
|
byte2line |
|
1745
|
|
|
|
|
|
|
byteidx |
|
1746
|
|
|
|
|
|
|
call |
|
1747
|
|
|
|
|
|
|
changenr |
|
1748
|
|
|
|
|
|
|
char2nr |
|
1749
|
|
|
|
|
|
|
cindent |
|
1750
|
|
|
|
|
|
|
col |
|
1751
|
|
|
|
|
|
|
complete |
|
1752
|
|
|
|
|
|
|
complete_add |
|
1753
|
|
|
|
|
|
|
complete_check |
|
1754
|
|
|
|
|
|
|
confirm |
|
1755
|
|
|
|
|
|
|
copy |
|
1756
|
|
|
|
|
|
|
count |
|
1757
|
|
|
|
|
|
|
cscope_connection |
|
1758
|
|
|
|
|
|
|
cursor |
|
1759
|
|
|
|
|
|
|
deepcopy |
|
1760
|
|
|
|
|
|
|
delete |
|
1761
|
|
|
|
|
|
|
did_filetype |
|
1762
|
|
|
|
|
|
|
diff_filler |
|
1763
|
|
|
|
|
|
|
diff_hlID |
|
1764
|
|
|
|
|
|
|
empty |
|
1765
|
|
|
|
|
|
|
escape |
|
1766
|
|
|
|
|
|
|
eval |
|
1767
|
|
|
|
|
|
|
eventhandler |
|
1768
|
|
|
|
|
|
|
executable |
|
1769
|
|
|
|
|
|
|
exists |
|
1770
|
|
|
|
|
|
|
expand |
|
1771
|
|
|
|
|
|
|
expr8 |
|
1772
|
|
|
|
|
|
|
extend |
|
1773
|
|
|
|
|
|
|
feedkeys |
|
1774
|
|
|
|
|
|
|
filereadable |
|
1775
|
|
|
|
|
|
|
filewritable |
|
1776
|
|
|
|
|
|
|
filter |
|
1777
|
|
|
|
|
|
|
finddir |
|
1778
|
|
|
|
|
|
|
findfile |
|
1779
|
|
|
|
|
|
|
fnamemodify |
|
1780
|
|
|
|
|
|
|
foldclosed |
|
1781
|
|
|
|
|
|
|
foldclosedend |
|
1782
|
|
|
|
|
|
|
foldlevel |
|
1783
|
|
|
|
|
|
|
foldtext |
|
1784
|
|
|
|
|
|
|
foldtextresult |
|
1785
|
|
|
|
|
|
|
foreground |
|
1786
|
|
|
|
|
|
|
function |
|
1787
|
|
|
|
|
|
|
garbagecollect |
|
1788
|
|
|
|
|
|
|
get |
|
1789
|
|
|
|
|
|
|
getbufline |
|
1790
|
|
|
|
|
|
|
getbufvar |
|
1791
|
|
|
|
|
|
|
getchar |
|
1792
|
|
|
|
|
|
|
getcharmod |
|
1793
|
|
|
|
|
|
|
getcmdline |
|
1794
|
|
|
|
|
|
|
getcmdpos |
|
1795
|
|
|
|
|
|
|
getcmdtype |
|
1796
|
|
|
|
|
|
|
getcwd |
|
1797
|
|
|
|
|
|
|
getfontname |
|
1798
|
|
|
|
|
|
|
getfperm |
|
1799
|
|
|
|
|
|
|
getfsize |
|
1800
|
|
|
|
|
|
|
getftime |
|
1801
|
|
|
|
|
|
|
getftype |
|
1802
|
|
|
|
|
|
|
getline |
|
1803
|
|
|
|
|
|
|
getloclist |
|
1804
|
|
|
|
|
|
|
getpos |
|
1805
|
|
|
|
|
|
|
getqflist |
|
1806
|
|
|
|
|
|
|
getreg |
|
1807
|
|
|
|
|
|
|
getregtype |
|
1808
|
|
|
|
|
|
|
gettabwinvar |
|
1809
|
|
|
|
|
|
|
getwinposx |
|
1810
|
|
|
|
|
|
|
getwinposy |
|
1811
|
|
|
|
|
|
|
getwinvar |
|
1812
|
|
|
|
|
|
|
glob |
|
1813
|
|
|
|
|
|
|
globpath |
|
1814
|
|
|
|
|
|
|
has |
|
1815
|
|
|
|
|
|
|
has_key |
|
1816
|
|
|
|
|
|
|
hasmapto |
|
1817
|
|
|
|
|
|
|
histadd |
|
1818
|
|
|
|
|
|
|
histdel |
|
1819
|
|
|
|
|
|
|
histget |
|
1820
|
|
|
|
|
|
|
histnr |
|
1821
|
|
|
|
|
|
|
hlexists |
|
1822
|
|
|
|
|
|
|
hlID |
|
1823
|
|
|
|
|
|
|
hostname |
|
1824
|
|
|
|
|
|
|
iconv |
|
1825
|
|
|
|
|
|
|
indent |
|
1826
|
|
|
|
|
|
|
index |
|
1827
|
|
|
|
|
|
|
input |
|
1828
|
|
|
|
|
|
|
inputdialog |
|
1829
|
|
|
|
|
|
|
inputlist |
|
1830
|
|
|
|
|
|
|
inputrestore |
|
1831
|
|
|
|
|
|
|
inputsave |
|
1832
|
|
|
|
|
|
|
inputsecret |
|
1833
|
|
|
|
|
|
|
insert |
|
1834
|
|
|
|
|
|
|
isdirectory |
|
1835
|
|
|
|
|
|
|
islocked |
|
1836
|
|
|
|
|
|
|
items |
|
1837
|
|
|
|
|
|
|
join |
|
1838
|
|
|
|
|
|
|
keys |
|
1839
|
|
|
|
|
|
|
len |
|
1840
|
|
|
|
|
|
|
libcall |
|
1841
|
|
|
|
|
|
|
libcallnr |
|
1842
|
|
|
|
|
|
|
line |
|
1843
|
|
|
|
|
|
|
line2byte |
|
1844
|
|
|
|
|
|
|
lispindent |
|
1845
|
|
|
|
|
|
|
localtime |
|
1846
|
|
|
|
|
|
|
map |
|
1847
|
|
|
|
|
|
|
maparg |
|
1848
|
|
|
|
|
|
|
mapcheck |
|
1849
|
|
|
|
|
|
|
match |
|
1850
|
|
|
|
|
|
|
matcharg |
|
1851
|
|
|
|
|
|
|
matchend |
|
1852
|
|
|
|
|
|
|
matchlist |
|
1853
|
|
|
|
|
|
|
matchstr |
|
1854
|
|
|
|
|
|
|
max |
|
1855
|
|
|
|
|
|
|
min |
|
1856
|
|
|
|
|
|
|
mkdir |
|
1857
|
|
|
|
|
|
|
mode |
|
1858
|
|
|
|
|
|
|
nextnonblank |
|
1859
|
|
|
|
|
|
|
nr2char |
|
1860
|
|
|
|
|
|
|
pathshorten |
|
1861
|
|
|
|
|
|
|
prevnonblank |
|
1862
|
|
|
|
|
|
|
printf |
|
1863
|
|
|
|
|
|
|
pumvisible |
|
1864
|
|
|
|
|
|
|
range |
|
1865
|
|
|
|
|
|
|
readfile |
|
1866
|
|
|
|
|
|
|
reltime |
|
1867
|
|
|
|
|
|
|
reltimestr |
|
1868
|
|
|
|
|
|
|
remote_expr |
|
1869
|
|
|
|
|
|
|
remote_foreground |
|
1870
|
|
|
|
|
|
|
remote_peek |
|
1871
|
|
|
|
|
|
|
remote_read |
|
1872
|
|
|
|
|
|
|
remote_send |
|
1873
|
|
|
|
|
|
|
remove |
|
1874
|
|
|
|
|
|
|
rename |
|
1875
|
|
|
|
|
|
|
repeat |
|
1876
|
|
|
|
|
|
|
resolve |
|
1877
|
|
|
|
|
|
|
reverse |
|
1878
|
|
|
|
|
|
|
search |
|
1879
|
|
|
|
|
|
|
searchdecl |
|
1880
|
|
|
|
|
|
|
searchpair |
|
1881
|
|
|
|
|
|
|
searchpairpos |
|
1882
|
|
|
|
|
|
|
searchpos |
|
1883
|
|
|
|
|
|
|
server2client |
|
1884
|
|
|
|
|
|
|
serverlist |
|
1885
|
|
|
|
|
|
|
setbufvar |
|
1886
|
|
|
|
|
|
|
setcmdpos |
|
1887
|
|
|
|
|
|
|
setline |
|
1888
|
|
|
|
|
|
|
setloclist |
|
1889
|
|
|
|
|
|
|
setpos |
|
1890
|
|
|
|
|
|
|
setqflist |
|
1891
|
|
|
|
|
|
|
setreg |
|
1892
|
|
|
|
|
|
|
settabwinvar |
|
1893
|
|
|
|
|
|
|
setwinvar |
|
1894
|
|
|
|
|
|
|
simplify |
|
1895
|
|
|
|
|
|
|
sort |
|
1896
|
|
|
|
|
|
|
soundfold |
|
1897
|
|
|
|
|
|
|
spellbadword |
|
1898
|
|
|
|
|
|
|
spellsuggest |
|
1899
|
|
|
|
|
|
|
split |
|
1900
|
|
|
|
|
|
|
str2nr |
|
1901
|
|
|
|
|
|
|
strftime |
|
1902
|
|
|
|
|
|
|
stridx |
|
1903
|
|
|
|
|
|
|
string |
|
1904
|
|
|
|
|
|
|
strlen |
|
1905
|
|
|
|
|
|
|
strpart |
|
1906
|
|
|
|
|
|
|
strridx |
|
1907
|
|
|
|
|
|
|
strtrans |
|
1908
|
|
|
|
|
|
|
submatch |
|
1909
|
|
|
|
|
|
|
substitute |
|
1910
|
|
|
|
|
|
|
synID |
|
1911
|
|
|
|
|
|
|
synIDattr |
|
1912
|
|
|
|
|
|
|
synIDtrans |
|
1913
|
|
|
|
|
|
|
system |
|
1914
|
|
|
|
|
|
|
tabpagebuflist |
|
1915
|
|
|
|
|
|
|
tabpagenr |
|
1916
|
|
|
|
|
|
|
tabpagewinnr |
|
1917
|
|
|
|
|
|
|
tagfiles |
|
1918
|
|
|
|
|
|
|
taglist |
|
1919
|
|
|
|
|
|
|
tempname |
|
1920
|
|
|
|
|
|
|
tolower |
|
1921
|
|
|
|
|
|
|
toupper |
|
1922
|
|
|
|
|
|
|
tr |
|
1923
|
|
|
|
|
|
|
type |
|
1924
|
|
|
|
|
|
|
values |
|
1925
|
|
|
|
|
|
|
virtcol |
|
1926
|
|
|
|
|
|
|
visualmode |
|
1927
|
|
|
|
|
|
|
winbufnr |
|
1928
|
|
|
|
|
|
|
wincol |
|
1929
|
|
|
|
|
|
|
winheight |
|
1930
|
|
|
|
|
|
|
winline |
|
1931
|
|
|
|
|
|
|
winnr |
|
1932
|
|
|
|
|
|
|
winrestcmd |
|
1933
|
|
|
|
|
|
|
winrestview |
|
1934
|
|
|
|
|
|
|
winsaveview |
|
1935
|
|
|
|
|
|
|
winwidth |
|
1936
|
|
|
|
|
|
|
writefile |