forked from notepad-plus-plus/userDefinedLanguages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Vimscript_by_rdipardo.xml
3254 lines (3254 loc) · 108 KB
/
Vimscript_by_rdipardo.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8" ?>
<!--
Description: Keyword and function completions for Vim script
Version: 2023-09-06
Author: Robert Di Pardo <https://github.com/rdipardo>
Credits: Function signatures drawn from <https://vimhelp.org/builtin.txt.html>, (c) Bram Moolenaar
Notes: To use with the default UDL, save this file as "Vim script.xml" (with a " ") in the
"autoCompletion" directory where Notepad++ is installed, e.g.,
"%ProgramFiles%\Notepad++\autoCompletion" (64-bit),
"%ProgramFiles(x86)%\Notepad++\autoCompletion" (32-bit),
or wherever a portable "notepad++.exe" has been installed.
To use with the Obsidian UDL, the exact file name is "Vim script (Obsidian).xml"
-->
<NotepadPlus>
<AutoComplete language="Vim script">
<Environment ignoreCase="no" startFunc="(" stopFunc=")" paramSeparator="," />
<KeyWord name="BAR" />
<KeyWord name="BS" />
<KeyWord name="Bar" />
<KeyWord name="BufAdd" />
<KeyWord name="BufCreate" />
<KeyWord name="BufDelete" />
<KeyWord name="BufEnter" />
<KeyWord name="BufFilePost" />
<KeyWord name="BufFilePre" />
<KeyWord name="BufHidden" />
<KeyWord name="BufLeave" />
<KeyWord name="BufNew" />
<KeyWord name="BufNewFile" />
<KeyWord name="BufRead" />
<KeyWord name="BufReadCmd" />
<KeyWord name="BufReadPost" />
<KeyWord name="BufReadPre" />
<KeyWord name="BufUnload" />
<KeyWord name="BufWinEnter" />
<KeyWord name="BufWinLeave" />
<KeyWord name="BufWipeout" />
<KeyWord name="BufWrite" />
<KeyWord name="BufWriteCmd" />
<KeyWord name="BufWritePost" />
<KeyWord name="BufWritePre" />
<KeyWord name="CR" />
<KeyWord name="CTRL" />
<KeyWord name="Cmd" />
<KeyWord name="CmdwinEnter" />
<KeyWord name="CmdwinLeave" />
<KeyWord name="ColorColumn" />
<KeyWord name="ColorScheme" />
<KeyWord name="CompleteDone" />
<KeyWord name="Conceal" />
<KeyWord name="Cr" />
<KeyWord name="Cursor" />
<KeyWord name="CursorColumn" />
<KeyWord name="CursorHold" />
<KeyWord name="CursorHoldI" />
<KeyWord name="CursorIM" />
<KeyWord name="CursorLine" />
<KeyWord name="CursorLineNr" />
<KeyWord name="CursorMoved" />
<KeyWord name="CursorMovedI" />
<KeyWord name="DEL" />
<KeyWord name="DOWN" />
<KeyWord name="Del" />
<KeyWord name="DiffAdd" />
<KeyWord name="DiffChange" />
<KeyWord name="DiffDelete" />
<KeyWord name="DiffText" />
<KeyWord name="Directory" />
<KeyWord name="Down" />
<KeyWord name="END" />
<KeyWord name="ENTER" />
<KeyWord name="EOL" />
<KeyWord name="ESC" />
<KeyWord name="EncodingChanged" />
<KeyWord name="End" />
<KeyWord name="EndOfBuffer" />
<KeyWord name="Enter" />
<KeyWord name="Eol" />
<KeyWord name="ErrorMsg" />
<KeyWord name="Esc" />
<KeyWord name="Explore" />
<KeyWord name="F1" />
<KeyWord name="F10" />
<KeyWord name="F11" />
<KeyWord name="F12" />
<KeyWord name="F2" />
<KeyWord name="F3" />
<KeyWord name="F4" />
<KeyWord name="F5" />
<KeyWord name="F6" />
<KeyWord name="F7" />
<KeyWord name="F8" />
<KeyWord name="F9" />
<KeyWord name="FileAppendCmd" />
<KeyWord name="FileAppendPost" />
<KeyWord name="FileAppendPre" />
<KeyWord name="FileChangedRO" />
<KeyWord name="FileChangedShell" />
<KeyWord name="FileChangedShellPost" />
<KeyWord name="FileReadCmd" />
<KeyWord name="FileReadPost" />
<KeyWord name="FileReadPre" />
<KeyWord name="FileType" />
<KeyWord name="FileWriteCmd" />
<KeyWord name="FileWritePost" />
<KeyWord name="FileWritePre" />
<KeyWord name="FilterReadPost" />
<KeyWord name="FilterReadPre" />
<KeyWord name="FilterWritePost" />
<KeyWord name="FilterWritePre" />
<KeyWord name="FocusGained" />
<KeyWord name="FocusLost" />
<KeyWord name="FoldColumn" />
<KeyWord name="Folded" />
<KeyWord name="FuncUndefined" />
<KeyWord name="GUIEnter" />
<KeyWord name="GUIFailed" />
<KeyWord name="HOME" />
<KeyWord name="Hexplore" />
<KeyWord name="Home" />
<KeyWord name="INSERT" />
<KeyWord name="IncSearch" />
<KeyWord name="Insert" />
<KeyWord name="InsertChange" />
<KeyWord name="InsertCharPre" />
<KeyWord name="InsertEnter" />
<KeyWord name="InsertLeave" />
<KeyWord name="LEADER" />
<KeyWord name="LEFT" />
<KeyWord name="Leader" />
<KeyWord name="Left" />
<KeyWord name="Lexplore" />
<KeyWord name="LineNr" />
<KeyWord name="LineNrAbove" />
<KeyWord name="LineNrBelow" />
<KeyWord name="MatchParen" />
<KeyWord name="MenuPopup" />
<KeyWord name="ModeMsg" />
<KeyWord name="MoreMsg" />
<KeyWord name="NL" />
<KeyWord name="NONE" />
<KeyWord name="NOP" />
<KeyWord name="Nexplore" />
<KeyWord name="NonText" />
<KeyWord name="None" />
<KeyWord name="Nop" />
<KeyWord name="Normal" />
<KeyWord name="PLUG" />
<KeyWord name="PLUGIN" />
<KeyWord name="PageDown" />
<KeyWord name="PageUp" />
<KeyWord name="Pexplore" />
<KeyWord name="Plug" />
<KeyWord name="Plugin" />
<KeyWord name="Pmenu" />
<KeyWord name="PmenuSbar" />
<KeyWord name="PmenuSel" />
<KeyWord name="PmenuThumb" />
<KeyWord name="Question" />
<KeyWord name="QuickFixCmdPost" />
<KeyWord name="QuickFixCmdPre" />
<KeyWord name="QuickFixLine" />
<KeyWord name="QuitPre" />
<KeyWord name="RETURN" />
<KeyWord name="RIGHT" />
<KeyWord name="RemoteReply" />
<KeyWord name="Return" />
<KeyWord name="Rexplore" />
<KeyWord name="Right" />
<KeyWord name="SID" />
<KeyWord name="SPACE" />
<KeyWord name="Search" />
<KeyWord name="SessionLoadPost" />
<KeyWord name="Sexplore" />
<KeyWord name="ShellCmdPost" />
<KeyWord name="ShellFilterPost" />
<KeyWord name="SignColumn" />
<KeyWord name="SourceCmd" />
<KeyWord name="SourcePre" />
<KeyWord name="Space" />
<KeyWord name="SpecialKey" />
<KeyWord name="SpellBad" />
<KeyWord name="SpellCap" />
<KeyWord name="SpellFileMissing" />
<KeyWord name="SpellLocal" />
<KeyWord name="SpellRare" />
<KeyWord name="StatusLine" />
<KeyWord name="StatusLineNC" />
<KeyWord name="StatusLineTerm" />
<KeyWord name="StatusLineTermNC" />
<KeyWord name="StdinReadPost" />
<KeyWord name="StdinReadPre" />
<KeyWord name="SwapExists" />
<KeyWord name="Syntax" />
<KeyWord name="TAB" />
<KeyWord name="Tab" />
<KeyWord name="TabEnter" />
<KeyWord name="TabLeave" />
<KeyWord name="TabLine" />
<KeyWord name="TabLineFill" />
<KeyWord name="TabLineSel" />
<KeyWord name="TermChanged" />
<KeyWord name="TermResponse" />
<KeyWord name="Terminal" />
<KeyWord name="Texplore" />
<KeyWord name="TextChanged" />
<KeyWord name="TextChangedI" />
<KeyWord name="Title" />
<KeyWord name="UP" />
<KeyWord name="Up" />
<KeyWord name="User" />
<KeyWord name="VertSplit" />
<KeyWord name="Vexplore" />
<KeyWord name="VimEnter" />
<KeyWord name="VimLeave" />
<KeyWord name="VimLeavePre" />
<KeyWord name="VimResized" />
<KeyWord name="Visual" />
<KeyWord name="VisualNOS" />
<KeyWord name="WarningMsg" />
<KeyWord name="WildMenu" />
<KeyWord name="WinEnter" />
<KeyWord name="WinLeave" />
<KeyWord name="abort" />
<KeyWord name="abs" func="yes">
<Overload descr="absolute value of {expr}" retVal="var x: Float or Number =">
<Param name="expr" />
</Overload>
</KeyWord>
<KeyWord name="abuf" />
<KeyWord name="acos" func="yes">
<Overload descr="arc cosine of {expr}" retVal="var x: Float =">
<Param name="expr" />
</Overload>
</KeyWord>
<KeyWord name="add" func="yes">
<Overload descr="append {item} to {object}" retVal="var x: List/Blob =">
<Param name="object, item" />
</Overload>
</KeyWord>
<KeyWord name="afile" />
<KeyWord name="ai" />
<KeyWord name="amatch" />
<KeyWord name="and" func="yes">
<Overload descr="bitwise AND" retVal="var x: Number =">
<Param name="expr, expr" />
</Overload>
</KeyWord>
<KeyWord name="append" func="yes">
<Overload descr="append {text} below line {lnum}" retVal="var x: Number =">
<Param name="lnum, text" />
</Overload>
</KeyWord>
<KeyWord name="appendbufline" func="yes">
<Overload descr="append {text} below line {lnum} in buffer {expr}" retVal="var x: Number =">
<Param name="expr, lnum, text" />
</Overload>
</KeyWord>
<KeyWord name="argc" func="yes">
<Overload descr="number of files in the argument list" retVal="var x: Number =">
<Param name="[winid]" />
</Overload>
</KeyWord>
<KeyWord name="argidx" func="yes">
<Overload descr="current index in the argument list" retVal="var x: Number =">
<Param name="" />
</Overload>
</KeyWord>
<KeyWord name="arglistid" func="yes">
<Overload descr="argument list id" retVal="var x: Number =">
<Param name="[winnr [, tabnr]]" />
</Overload>
</KeyWord>
<KeyWord name="args" />
<KeyWord name="argv" />
<KeyWord name="asin" func="yes">
<Overload descr="arc sine of {expr}" retVal="var x: Float =">
<Param name="expr" />
</Overload>
</KeyWord>
<KeyWord name="assert_beeps" func="yes">
<Overload descr="assert {cmd} causes a beep" retVal="var x: Number =">
<Param name="cmd" />
</Overload>
</KeyWord>
<KeyWord name="assert_equal" func="yes">
<Overload descr="assert {exp} is equal to {act}" retVal="var x: Number =">
<Param name="exp, act [, msg]" />
</Overload>
</KeyWord>
<KeyWord name="assert_equalfile" func="yes">
<Overload descr="assert file contents are equal" retVal="var x: Number =">
<Param name="fname-one, fname-two [, msg]" />
</Overload>
</KeyWord>
<KeyWord name="assert_exception" func="yes">
<Overload descr="assert {error} is in v:exception" retVal="var x: Number =">
<Param name="error [, msg]" />
</Overload>
</KeyWord>
<KeyWord name="assert_fails" func="yes">
<Overload descr="assert {cmd} fails" retVal="var x: Number =">
<Param name="cmd [, error [, msg [, lnum [, context]]]]" />
</Overload>
</KeyWord>
<KeyWord name="assert_false" func="yes">
<Overload descr="assert {actual} is false" retVal="var x: Number =">
<Param name="actual [, msg]" />
</Overload>
</KeyWord>
<KeyWord name="assert_inrange" func="yes">
<Overload descr="assert {actual} is inside the range" retVal="var x: Number =">
<Param name="lower, upper, actual [, msg]" />
</Overload>
</KeyWord>
<KeyWord name="assert_match" func="yes">
<Overload descr="assert {pat} matches {text}" retVal="var x: Number =">
<Param name="pat, text [, msg]" />
</Overload>
</KeyWord>
<KeyWord name="assert_nobeep" func="yes">
<Overload descr="assert {cmd} does not cause a beep" retVal="var x: Number =">
<Param name="cmd" />
</Overload>
</KeyWord>
<KeyWord name="assert_notequal" func="yes">
<Overload descr="assert {exp} is not equal {act}" retVal="var x: Number =">
<Param name="exp, act [, msg]" />
</Overload>
</KeyWord>
<KeyWord name="assert_notmatch" func="yes">
<Overload descr="assert {pat} not matches {text}" retVal="var x: Number =">
<Param name="pat, text [, msg]" />
</Overload>
</KeyWord>
<KeyWord name="assert_report" func="yes">
<Overload descr="report a test failure" retVal="var x: Number =">
<Param name="msg" />
</Overload>
</KeyWord>
<KeyWord name="assert_true" func="yes">
<Overload descr="assert {actual} is true" retVal="var x: Number =">
<Param name="actual [, msg]" />
</Overload>
</KeyWord>
<KeyWord name="atan" func="yes">
<Overload descr="arc tangent of {expr}" retVal="var x: Float =">
<Param name="expr" />
</Overload>
</KeyWord>
<KeyWord name="atan2" func="yes">
<Overload descr="arc tangent of {expr1} / {expr2}" retVal="var x: Float =">
<Param name="expr1, expr2" />
</Overload>
</KeyWord>
<KeyWord name="au" />
<KeyWord name="augroup" />
<KeyWord name="autochdir" />
<KeyWord name="autocmd" />
<KeyWord name="autocmd_add" func="yes">
<Overload descr="add a list of autocmds and groups" retVal="var x: Bool =">
<Param name="acmds" />
</Overload>
</KeyWord>
<KeyWord name="autocmd_delete" func="yes">
<Overload descr="delete a list of autocmds and groups" retVal="var x: Bool =">
<Param name="acmds" />
</Overload>
</KeyWord>
<KeyWord name="autocmd_get" func="yes">
<Overload descr="return a list of autocmds" retVal="var x: List =">
<Param name="[opts]" />
</Overload>
</KeyWord>
<KeyWord name="autoindent" />
<KeyWord name="autoread" />
<KeyWord name="autowrite" />
<KeyWord name="awa" />
<KeyWord name="bNext" />
<KeyWord name="background" />
<KeyWord name="backspace" />
<KeyWord name="balloon_gettext" func="yes">
<Overload descr="current text in the balloon" retVal="var x: String =">
<Param name="" />
</Overload>
</KeyWord>
<KeyWord name="balloon_show" func="yes">
<Overload descr="show {expr} inside the balloon" retVal="var x: none =">
<Param name="expr" />
</Overload>
</KeyWord>
<KeyWord name="balloon_split" func="yes">
<Overload descr="split {msg} as used for a balloon" retVal="var x: List =">
<Param name="msg" />
</Overload>
</KeyWord>
<KeyWord name="bang" />
<KeyWord name="bar" />
<KeyWord name="beval_bufnr" />
<KeyWord name="beval_col" />
<KeyWord name="beval_lnum" />
<KeyWord name="beval_text" />
<KeyWord name="beval_winid" />
<KeyWord name="beval_winnr" />
<KeyWord name="blob2list" func="yes">
<Overload descr="convert {blob} into a list of numbers" retVal="var x: List =">
<Param name="blob" />
</Overload>
</KeyWord>
<KeyWord name="bnext" />
<KeyWord name="bprevious" />
<KeyWord name="break" />
<KeyWord name="breakadd" />
<KeyWord name="breakdel" />
<KeyWord name="browse" func="yes">
<Overload descr="put up a file requester" retVal="var x: String =">
<Param name="save, title, initdir, default" />
</Overload>
</KeyWord>
<KeyWord name="browsedir" func="yes">
<Overload descr="put up a directory requester" retVal="var x: String =">
<Param name="title, initdir" />
</Overload>
</KeyWord>
<KeyWord name="bufadd" func="yes">
<Overload descr="add a buffer to the buffer list" retVal="var x: Number =">
<Param name="name" />
</Overload>
</KeyWord>
<KeyWord name="bufdo" />
<KeyWord name="bufexists" func="yes">
<Overload descr="TRUE if buffer {buf} exists" retVal="var x: Number =">
<Param name="buf" />
</Overload>
</KeyWord>
<KeyWord name="buffer" />
<KeyWord name="buflisted" func="yes">
<Overload descr="TRUE if buffer {buf} is listed" retVal="var x: Number =">
<Param name="buf" />
</Overload>
</KeyWord>
<KeyWord name="bufload" func="yes">
<Overload descr="load buffer {buf} if not loaded yet" retVal="var x: Number =">
<Param name="buf" />
</Overload>
</KeyWord>
<KeyWord name="bufloaded" func="yes">
<Overload descr="TRUE if buffer {buf} is loaded" retVal="var x: Number =">
<Param name="buf" />
</Overload>
</KeyWord>
<KeyWord name="bufname" func="yes">
<Overload descr="Name of the buffer {buf}" retVal="var x: String =">
<Param name="[buf]" />
</Overload>
</KeyWord>
<KeyWord name="bufnr" func="yes">
<Overload descr="Number of the buffer {buf}" retVal="var x: Number =">
<Param name="[buf [, create]]" />
</Overload>
</KeyWord>
<KeyWord name="bufwinid" func="yes">
<Overload descr="window ID of buffer {buf}" retVal="var x: Number =">
<Param name="buf" />
</Overload>
</KeyWord>
<KeyWord name="bufwinnr" func="yes">
<Overload descr="window number of buffer {buf}" retVal="var x: Number =">
<Param name="buf" />
</Overload>
</KeyWord>
<KeyWord name="bw" />
<KeyWord name="bwipe" />
<KeyWord name="bwipeout" />
<KeyWord name="byte2line" func="yes">
<Overload descr="line number at byte count {byte}" retVal="var x: Number =">
<Param name="byte" />
</Overload>
</KeyWord>
<KeyWord name="byteidx" func="yes">
<Overload descr="byte index of {nr}'th char in {expr}" retVal="var x: Number =">
<Param name="expr, nr [, utf16]" />
</Overload>
</KeyWord>
<KeyWord name="byteidxcomp" func="yes">
<Overload descr="byte index of {nr}'th char in {expr}" retVal="var x: Number =">
<Param name="expr, nr [, utf16]" />
</Overload>
</KeyWord>
<KeyWord name="cWORD" />
<KeyWord name="call" />
<KeyWord name="catch" />
<KeyWord name="cclose" />
<KeyWord name="cd" />
<KeyWord name="ceil" func="yes">
<Overload descr="round {expr} up" retVal="var x: Float =">
<Param name="expr" />
</Overload>
</KeyWord>
<KeyWord name="cexpr" />
<KeyWord name="cfile" />
<KeyWord name="ch_canread" func="yes">
<Overload descr="check if there is something to read" retVal="var x: Number =">
<Param name="handle" />
</Overload>
</KeyWord>
<KeyWord name="ch_close" func="yes">
<Overload descr="close {handle}" retVal="var x: none =">
<Param name="handle" />
</Overload>
</KeyWord>
<KeyWord name="ch_close_in" func="yes">
<Overload descr="close in part of {handle}" retVal="var x: none =">
<Param name="handle" />
</Overload>
</KeyWord>
<KeyWord name="ch_evalexpr" func="yes">
<Overload descr="evaluate {expr} on JSON {handle}" retVal="var x: any =">
<Param name="handle, expr [, options]" />
</Overload>
</KeyWord>
<KeyWord name="ch_evalraw" func="yes">
<Overload descr="evaluate {string} on raw {handle}" retVal="var x: any =">
<Param name="handle, string [, options]" />
</Overload>
</KeyWord>
<KeyWord name="ch_getbufnr" func="yes">
<Overload descr="get buffer number for {handle}/{what}" retVal="var x: Number =">
<Param name="handle, what" />
</Overload>
</KeyWord>
<KeyWord name="ch_getjob" func="yes">
<Overload descr="get the Job of {channel}" retVal="var x: Job =">
<Param name="channel" />
</Overload>
</KeyWord>
<KeyWord name="ch_info" func="yes">
<Overload descr="info about channel {handle}" retVal="var x: String =">
<Param name="handle" />
</Overload>
</KeyWord>
<KeyWord name="ch_log" func="yes">
<Overload descr="write {msg} in the channel log file" retVal="var x: none =">
<Param name="msg [, handle]" />
</Overload>
</KeyWord>
<KeyWord name="ch_logfile" func="yes">
<Overload descr="start logging channel activity" retVal="var x: none =">
<Param name="fname [, mode]" />
</Overload>
</KeyWord>
<KeyWord name="ch_open" func="yes">
<Overload descr="open a channel to {address}" retVal="var x: Channel =">
<Param name="address [, options]" />
</Overload>
</KeyWord>
<KeyWord name="ch_read" func="yes">
<Overload descr="read from {handle}" retVal="var x: String =">
<Param name="handle [, options]" />
</Overload>
</KeyWord>
<KeyWord name="ch_readblob" func="yes">
<Overload descr="read Blob from {handle}" retVal="var x: Blob =">
<Param name="handle [, options]" />
</Overload>
</KeyWord>
<KeyWord name="ch_readraw" func="yes">
<Overload descr="read raw from {handle}" retVal="var x: String =">
<Param name="handle [, options]" />
</Overload>
</KeyWord>
<KeyWord name="ch_sendexpr" func="yes">
<Overload descr="send {expr} over JSON {handle}" retVal="var x: any =">
<Param name="handle, expr [, options]" />
</Overload>
</KeyWord>
<KeyWord name="ch_sendraw" func="yes">
<Overload descr="send {expr} over raw {handle}" retVal="var x: any =">
<Param name="handle, expr [, options]" />
</Overload>
</KeyWord>
<KeyWord name="ch_setoptions" func="yes">
<Overload descr="set options for {handle}" retVal="var x: none =">
<Param name="handle, options" />
</Overload>
</KeyWord>
<KeyWord name="ch_status" func="yes">
<Overload descr="status of channel {handle}" retVal="var x: String =">
<Param name="handle [, options]" />
</Overload>
</KeyWord>
<KeyWord name="changenr" func="yes">
<Overload descr="current change number" retVal="var x: Number =">
<Param name="" />
</Overload>
</KeyWord>
<KeyWord name="char" />
<KeyWord name="char2nr" func="yes">
<Overload descr="ASCII/UTF-8 value of first char in {expr}" retVal="var x: Number =">
<Param name="expr [, utf8]" />
</Overload>
</KeyWord>
<KeyWord name="charclass" func="yes">
<Overload descr="character class of {string}" retVal="var x: Number =">
<Param name="string" />
</Overload>
</KeyWord>
<KeyWord name="charcol" func="yes">
<Overload descr="column number of cursor or mark" retVal="var x: Number =">
<Param name="expr [, winid]" />
</Overload>
</KeyWord>
<KeyWord name="charconvert_from" />
<KeyWord name="charconvert_to" />
<KeyWord name="charidx" func="yes">
<Overload descr="char index of byte {idx} in {string}" retVal="var x: Number =">
<Param name="string, idx [, countcc [, utf16]]" />
</Overload>
</KeyWord>
<KeyWord name="chdir" func="yes">
<Overload descr="change current working directory" retVal="var x: String =">
<Param name="dir" />
</Overload>
</KeyWord>
<KeyWord name="checktime" />
<KeyWord name="cindent" func="yes">
<Overload descr="C indent for line {lnum}" retVal="var x: Number =">
<Param name="lnum" />
</Overload>
</KeyWord>
<KeyWord name="clearmatches" func="yes">
<Overload descr="clear all matches" retVal="var x: none =">
<Param name="[win]" />
</Overload>
</KeyWord>
<KeyWord name="client" />
<KeyWord name="clipboard" />
<KeyWord name="cm" />
<KeyWord name="cmap" />
<KeyWord name="cmapc" />
<KeyWord name="cmapclear" />
<KeyWord name="cmdarg" />
<KeyWord name="cmdbang" />
<KeyWord name="cmdheight" />
<KeyWord name="cnext" />
<KeyWord name="cno" />
<KeyWord name="cnor" />
<KeyWord name="cnoremap" />
<KeyWord name="col" func="yes">
<Overload descr="column byte index of cursor or mark" retVal="var x: Number =">
<Param name="expr [, winid]" />
</Overload>
</KeyWord>
<KeyWord name="collate" />
<KeyWord name="colo" />
<KeyWord name="colorscheme" />
<KeyWord name="columns" />
<KeyWord name="com" />
<KeyWord name="command" />
<KeyWord name="complete" />
<KeyWord name="completed_item" />
<KeyWord name="completeopt" />
<KeyWord name="confirm" func="yes">
<Overload descr="number of choice picked by user" retVal="var x: Number =">
<Param name="msg [, choices [, default [, type]]]" />
</Overload>
</KeyWord>
<KeyWord name="continue" />
<KeyWord name="cope" />
<KeyWord name="copen" />
<KeyWord name="copy" func="yes">
<Overload descr="make a shallow copy of {expr}" retVal="var x: any =">
<Param name="expr" />
</Overload>
</KeyWord>
<KeyWord name="cos" func="yes">
<Overload descr="cosine of {expr}" retVal="var x: Float =">
<Param name="expr" />
</Overload>
</KeyWord>
<KeyWord name="cosh" func="yes">
<Overload descr="hyperbolic cosine of {expr}" retVal="var x: Float =">
<Param name="expr" />
</Overload>
</KeyWord>
<KeyWord name="count" />
<KeyWord name="count1" />
<KeyWord name="cpo" />
<KeyWord name="cpoptions" />
<KeyWord name="cprevious" />
<KeyWord name="cr" />
<KeyWord name="cscopeprg" />
<KeyWord name="cscopeverbose" />
<KeyWord name="csprg" />
<KeyWord name="csverb" />
<KeyWord name="cterm" />
<KeyWord name="ctermbg" />
<KeyWord name="ctermfg" />
<KeyWord name="ctype" />
<KeyWord name="cu" />
<KeyWord name="cun" />
<KeyWord name="cunmap" />
<KeyWord name="cursor" func="yes">
<Overload descr="move cursor to {lnum}, {col}, {off}" retVal="var x: Number =">
<Param name="lnum, col [, off]" />
</Overload>
</KeyWord>
<KeyWord name="cursor" func="yes">
<Overload descr="move cursor to position in {list}" retVal="var x: Number =">
<Param name="list" />
</Overload>
</KeyWord>
<KeyWord name="cursorbind" />
<KeyWord name="cursorcolumn" />
<KeyWord name="cursorline" />
<KeyWord name="cword" />
<KeyWord name="darkblue" />
<KeyWord name="dd" />
<KeyWord name="debugbreak" func="yes">
<Overload descr="interrupt process being debugged" retVal="var x: Number =">
<Param name="pid" />
</Overload>
</KeyWord>
<KeyWord name="deepcopy" func="yes">
<Overload descr="make a full copy of {expr}" retVal="var x: any =">
<Param name="expr [, noref]" />
</Overload>
</KeyWord>
<KeyWord name="default" />
<KeyWord name="del" />
<KeyWord name="delek" />
<KeyWord name="delete" func="yes">
<Overload descr="delete the file or directory {fname}" retVal="var x: Number =">
<Param name="fname [, flags]" />
</Overload>
</KeyWord>
<KeyWord name="deletebufline" func="yes">
<Overload descr="delete lines from buffer {buf}" retVal="var x: Number =">
<Param name="buf, first [, last]" />
</Overload>
</KeyWord>
<KeyWord name="delm" />
<KeyWord name="desert" />
<KeyWord name="diffopt" />
<KeyWord name="digraph_get" func="yes">
<Overload descr="get the digraph of {chars}" retVal="var x: String =">
<Param name="chars" />
</Overload>
</KeyWord>
<KeyWord name="digraph_getlist" func="yes">
<Overload descr="get all digraphs" retVal="var x: List =">
<Param name="[listall]" />
</Overload>
</KeyWord>
<KeyWord name="digraph_set" func="yes">
<Overload descr="register digraph" retVal="var x: Boolean =">
<Param name="chars, digraph" />
</Overload>
</KeyWord>
<KeyWord name="digraph_setlist" func="yes">
<Overload descr="register multiple digraphs" retVal="var x: Boolean =">
<Param name="digraphlist" />
</Overload>
</KeyWord>
<KeyWord name="doautoall" />
<KeyWord name="doautocmd" />
<KeyWord name="dos" />
<KeyWord name="down" />
<KeyWord name="dying" />
<KeyWord name="echo" />
<KeyWord name="echoerr" />
<KeyWord name="echohl" />
<KeyWord name="echom" />
<KeyWord name="echomsg" />
<KeyWord name="echon" />
<KeyWord name="echoraw" func="yes">
<Overload descr="output {expr} as-is" retVal="var x: none =">
<Param name="expr" />
</Overload>
</KeyWord>
<KeyWord name="echospace" />
<KeyWord name="edit" />
<KeyWord name="elflord" />
<KeyWord name="else" />
<KeyWord name="elseif" />
<KeyWord name="emenu" />
<KeyWord name="empty" func="yes">
<Overload descr="TRUE if {expr} is empty" retVal="var x: Number =">
<Param name="expr" />
</Overload>
</KeyWord>
<KeyWord name="enable" />
<KeyWord name="encoding" />
<KeyWord name="end" />
<KeyWord name="endfor" />
<KeyWord name="endfunc" />
<KeyWord name="endfunction" />
<KeyWord name="endif" />
<KeyWord name="endofline" />
<KeyWord name="endtry" />
<KeyWord name="endwhile" />
<KeyWord name="enew" />
<KeyWord name="enter" />
<KeyWord name="environ" func="yes">
<Overload descr="return environment variables" retVal="var x: Dict =">
<Param name="" />
</Overload>
</KeyWord>
<KeyWord name="eol" />
<KeyWord name="equalprg" />
<KeyWord name="errmsg" />
<KeyWord name="errorformat" />
<KeyWord name="errors" />
<KeyWord name="esc" />
<KeyWord name="escape" func="yes">
<Overload descr="escape {chars} in {string} with '\'" retVal="var x: String =">
<Param name="string, chars" />
</Overload>
</KeyWord>
<KeyWord name="eval" func="yes">
<Overload descr="evaluate {string} into its value" retVal="var x: any =">
<Param name="string" />
</Overload>
</KeyWord>
<KeyWord name="evening" />
<KeyWord name="event" />
<KeyWord name="eventhandler" func="yes">
<Overload descr="TRUE if inside an event handler" retVal="var x: Number =">
<Param name="" />
</Overload>
</KeyWord>
<KeyWord name="exception" />
<KeyWord name="exe" />
<KeyWord name="exec" />
<KeyWord name="executable" func="yes">
<Overload descr="1 if executable {expr} exists" retVal="var x: Number =">
<Param name="expr" />
</Overload>
</KeyWord>
<KeyWord name="execute" />
<KeyWord name="exepath" func="yes">
<Overload descr="full path of the command {expr}" retVal="var x: String =">
<Param name="expr" />
</Overload>
</KeyWord>
<KeyWord name="exists" func="yes">
<Overload descr="TRUE if {expr} exists" retVal="var x: Number =">
<Param name="expr" />
</Overload>
</KeyWord>
<KeyWord name="exit" />
<KeyWord name="exiting" />
<KeyWord name="exp" func="yes">
<Overload descr="exponential of {expr}" retVal="var x: Float =">
<Param name="expr" />
</Overload>
</KeyWord>
<KeyWord name="expand" func="yes">
<Overload descr="expand special keywords in {expr}" retVal="var x: any =">
<Param name="expr [, nosuf [, list]]" />
</Overload>
</KeyWord>
<KeyWord name="expandcmd" func="yes">
<Overload descr="expand {string} like with `:edit`" retVal="var x: String =">
<Param name="string [, options]" />
</Overload>
</KeyWord>
<KeyWord name="expandtab" />
<KeyWord name="expr" />
<KeyWord name="extend" func="yes">
<Overload descr="insert items of {expr2} into {expr1}" retVal="var x: List/Dict =">
<Param name="expr1, expr2 [, expr3]" />
</Overload>
</KeyWord>
<KeyWord name="extendnew" func="yes">
<Overload descr="like extend() but creates a new List/Dictionary" retVal="var x: List/Dict =">
<Param name="expr1, expr2 [, expr3]" />
</Overload>
</KeyWord>
<KeyWord name="exusage" />
<KeyWord name="f-args" />
<KeyWord name="false" />
<KeyWord name="fcl" />
<KeyWord name="fcs_choice" />
<KeyWord name="fcs_reason" />
<KeyWord name="fdc" />
<KeyWord name="fde" />
<KeyWord name="fdi" />
<KeyWord name="fdl" />
<KeyWord name="fdls" />
<KeyWord name="fdm" />
<KeyWord name="fdn" />
<KeyWord name="fdo" />
<KeyWord name="fdt" />
<KeyWord name="feedkeys" func="yes">
<Overload descr="add key sequence to typeahead buffer" retVal="var x: Number =">
<Param name="string [, mode]" />
</Overload>
</KeyWord>
<KeyWord name="fen" />
<KeyWord name="fex" />
<KeyWord name="ffs" />
<KeyWord name="fileformats" />
<KeyWord name="filereadable" func="yes">
<Overload descr="TRUE if {file} is a readable file" retVal="var x: Number =">
<Param name="file" />
</Overload>
</KeyWord>
<KeyWord name="filetype" />
<KeyWord name="filewritable" func="yes">
<Overload descr="TRUE if {file} is a writable file" retVal="var x: Number =">
<Param name="file" />
</Overload>
</KeyWord>
<KeyWord name="fillchars" />
<KeyWord name="filler" />
<KeyWord name="filter" func="yes">
<Overload descr="remove items from {expr1} where {expr2} is 0" retVal="var x: List/Dict/Blob/String =">
<Param name="expr1, expr2" />
</Overload>
</KeyWord>
<KeyWord name="finally" />
<KeyWord name="finddir" func="yes">
<Overload descr="find directory {name} in {path}" retVal="var x: String =">
<Param name="name [, path [, count]]" />
</Overload>
</KeyWord>
<KeyWord name="findfile" func="yes">
<Overload descr="find file {name} in {path}" retVal="var x: String =">
<Param name="name [, path [, count]]" />
</Overload>
</KeyWord>
<KeyWord name="finish" />
<KeyWord name="fixendofline" />
<KeyWord name="fixeol" />
<KeyWord name="flatten" func="yes">
<Overload descr="flatten {list} up to {maxdepth} levels" retVal="var x: List =">
<Param name="list [, maxdepth]" />
</Overload>
</KeyWord>
<KeyWord name="flattennew" func="yes">
<Overload descr="flatten a copy of {list}" retVal="var x: List =">
<Param name="list [, maxdepth]" />
</Overload>
</KeyWord>
<KeyWord name="float2nr" func="yes">
<Overload descr="convert Float {expr} to a Number" retVal="var x: Number =">
<Param name="expr" />
</Overload>
</KeyWord>
<KeyWord name="floor" func="yes">
<Overload descr="round {expr} down" retVal="var x: Float =">
<Param name="expr" />
</Overload>
</KeyWord>
<KeyWord name="flp" />
<KeyWord name="fml" />
<KeyWord name="fmod" func="yes">
<Overload descr="remainder of {expr1} / {expr2}" retVal="var x: Float =">
<Param name="expr1, expr2" />
</Overload>
</KeyWord>
<KeyWord name="fmr" />
<KeyWord name="fname_diff" />
<KeyWord name="fname_in" />
<KeyWord name="fname_new" />
<KeyWord name="fname_out" />
<KeyWord name="fnameescape" func="yes">
<Overload descr="escape special characters in {fname}" retVal="var x: String =">
<Param name="fname" />
</Overload>
</KeyWord>
<KeyWord name="fnamemodify" func="yes">
<Overload descr="modify file name" retVal="var x: String =">
<Param name="fname, mods" />
</Overload>
</KeyWord>
<KeyWord name="fo" />
<KeyWord name="fold" />
<KeyWord name="foldc" />
<KeyWord name="foldclose" />
<KeyWord name="foldclosed" func="yes">
<Overload descr="first line of fold at {lnum} if closed" retVal="var x: Number =">
<Param name="lnum" />
</Overload>
</KeyWord>
<KeyWord name="foldclosedend" func="yes">
<Overload descr="last line of fold at {lnum} if closed" retVal="var x: Number =">
<Param name="lnum" />
</Overload>
</KeyWord>
<KeyWord name="foldcolumn" />
<KeyWord name="foldd" />
<KeyWord name="folddashes" />
<KeyWord name="folddo" />
<KeyWord name="folddoc" />
<KeyWord name="folddoclosed" />
<KeyWord name="folddoopen" />
<KeyWord name="foldenable" />
<KeyWord name="foldend" />