annotate runtime/syntax/8th.vim @ 19742:810eee1b42e3 v8.2.0427

patch 8.2.0427: it is not possible to check for a typo in a feature name Commit: https://github.com/vim/vim/commit/7929651e05b081fe55e0e745725a7ad78c51be16 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Mar 22 16:17:14 2020 +0100 patch 8.2.0427: it is not possible to check for a typo in a feature name Problem: It is not possible to check for a typo in a feature name. Solution: Add an extra argument to has().
author Bram Moolenaar <Bram@vim.org>
date Sun, 22 Mar 2020 16:30:03 +0100
parents 314694a2e74a
children 43593a5d873f
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
15878
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
1 " Vim syntax file
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
2 " Language: 8th
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
3 " Version: 19.01d
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
4 " Maintainer: Ron Aaron <ron@aaron-tech.com>
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
5 " URL: https://8th-dev.com/
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
6 " Filetypes: *.8th
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
7 " NOTE: You should also have the ftplugin/8th.vim file to set 'isk'
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
8
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
9 if version < 600
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
10 syntax clear
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
11 finish
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
12 elseif exists("b:current_syntax")
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
13 finish
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
14 endif
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
15
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
16 let s:cpo_save = &cpo
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
17 set cpo&vim
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
18 syn clear
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
19 " Synchronization method
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
20 syn sync ccomment
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
21 syn sync maxlines=100
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
22 syn case match
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
23 syn match eighthColonName "\S\+" contained
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
24 syn match eighthColonDef ":\s\+\S\+" contains=eighthColonName
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
25
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
26 " new words
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
27 syn match eighthClasses "\<\S\+:" contained
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
28 syn match eighthClassWord "\<\S\+:.\+" contains=eighthClasses
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
29
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
30 syn keyword eighthEndOfColonDef ; i;
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
31 syn keyword eighthDefine var var,
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
32
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
33 " Built in words
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
34 com! -nargs=+ Builtin syn keyword eighthBuiltin <args>
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
35 "Builtin ^ < <# <#> = > - -- ,# ; ;; ! ??? / . .# ' () @ * */ \
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
36
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
37 Builtin ! G:! #! G:#! ## G:## #> G:#> #if G:#if ' G:' ( G:( (* G:(* (:) G:(:) (code) G:(code) (getc) G:(getc)
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
38 Builtin (gets) G:(gets) (interp) G:(interp) (needs) G:(needs) (putc) G:(putc) (puts) G:(puts) (putslim) G:(putslim)
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
39 Builtin (say) G:(say) (stat) G:(stat) ) G:) +listener G:+listener +ref G:+ref ,# G:,# -- G:-- -----BEGIN G:-----BEGIN
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
40 Builtin -Inf G:-Inf -Inf? G:-Inf? -listener G:-listener -ref G:-ref -rot G:-rot . G:. .# G:.# .needs G:.needs
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
41 Builtin .r G:.r .s G:.s .stats G:.stats .ver G:.ver .with G:.with 0; G:0; 2dip G:2dip 2drop G:2drop
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
42 Builtin 2dup G:2dup 2over G:2over 2swap G:2swap 3drop G:3drop 4drop G:4drop 8thdt? G:8thdt? 8thver? G:8thver?
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
43 Builtin : G:: ; G:; ;; G:;; ;;; G:;;; ;then G:;then ;with G:;with <# G:<# <#> G:<#> >clip G:>clip >json G:>json
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
44 Builtin >kind G:>kind >n G:>n >r G:>r >s G:>s ?: G:?: ??? G:??? @ G:@ Inf G:Inf Inf? G:Inf? NaN G:NaN
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
45 Builtin NaN? G:NaN? SED-CHECK G:SED-CHECK SED: G:SED: SED: G:SED: \ G:\ ` G:` `` G:`` actor: G:actor:
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
46 Builtin again G:again ahead G:ahead and G:and appname G:appname apropos G:apropos argc G:argc args G:args
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
47 Builtin array? G:array? assert G:assert base G:base bi G:bi bits G:bits break G:break break? G:break?
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
48 Builtin build? G:build? buildver? G:buildver? bye G:bye c# G:c# c/does G:c/does case G:case caseof G:caseof
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
49 Builtin chdir G:chdir clip> G:clip> clone G:clone clone-shallow G:clone-shallow cold G:cold compat-level G:compat-level
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
50 Builtin compile G:compile compile? G:compile? conflict G:conflict const G:const container? G:container?
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
51 Builtin cr G:cr curlang G:curlang curry G:curry curry: G:curry: decimal G:decimal defer: G:defer: deg>rad G:deg>rad
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
52 Builtin depth G:depth die G:die dip G:dip drop G:drop dstack G:dstack dump G:dump dup G:dup dup? G:dup?
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
53 Builtin else G:else enum: G:enum: eval G:eval eval! G:eval! eval0 G:eval0 execnull G:execnull expect G:expect
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
54 Builtin extra! G:extra! extra@ G:extra@ false G:false fnv G:fnv fourth G:fourth free G:free func: G:func:
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
55 Builtin getc G:getc getcwd G:getcwd getenv G:getenv gets G:gets handler G:handler header G:header help G:help
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
56 Builtin hex G:hex i: G:i: i; G:i; if G:if if; G:if; isa? G:isa? items-used G:items-used jcall G:jcall
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
57 Builtin jclass G:jclass jmethod G:jmethod json-nesting G:json-nesting json-pretty G:json-pretty json-throw G:json-throw
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
58 Builtin json> G:json> k32 G:k32 keep G:keep l: G:l: last G:last lib G:lib libbin G:libbin libc G:libc
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
59 Builtin listener@ G:listener@ literal G:literal locals: G:locals: lock G:lock lock-to G:lock-to locked? G:locked?
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
60 Builtin log G:log log-async G:log-async log-task G:log-task log-time G:log-time log-time-local G:log-time-local
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
61 Builtin long-days G:long-days long-months G:long-months loop G:loop loop- G:loop- map? G:map? mark G:mark
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
62 Builtin mark? G:mark? memfree G:memfree mobile? G:mobile? n# G:n# name>os G:name>os name>sem G:name>sem
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
63 Builtin ndrop G:ndrop needs G:needs new G:new next-arg G:next-arg nip G:nip noop G:noop not G:not ns G:ns
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
64 Builtin ns: G:ns: ns>ls G:ns>ls ns>s G:ns>s ns? G:ns? null G:null null; G:null; null? G:null? number? G:number?
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
65 Builtin off G:off on G:on onexit G:onexit only G:only op! G:op! or G:or os G:os os-names G:os-names
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
66 Builtin os>long-name G:os>long-name os>name G:os>name over G:over p: G:p: pack G:pack parse G:parse
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
67 Builtin parsech G:parsech parseln G:parseln parsews G:parsews pick G:pick poke G:poke pool-clear G:pool-clear
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
68 Builtin prior G:prior private G:private process-args G:process-args prompt G:prompt public G:public
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
69 Builtin putc G:putc puts G:puts putslim G:putslim quote G:quote r! G:r! r> G:r> r@ G:r@ rad>deg G:rad>deg
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
70 Builtin rand G:rand rand-pcg G:rand-pcg rand-pcg-seed G:rand-pcg-seed randbuf G:randbuf randbuf-pcg G:randbuf-pcg
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
71 Builtin rdrop G:rdrop recurse G:recurse recurse-stack G:recurse-stack ref@ G:ref@ reg! G:reg! reg@ G:reg@
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
72 Builtin regbin@ G:regbin@ remaining-args G:remaining-args repeat G:repeat reset G:reset roll G:roll
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
73 Builtin rop! G:rop! rot G:rot rpick G:rpick rroll G:rroll rstack G:rstack rswap G:rswap rusage G:rusage
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
74 Builtin s>ns G:s>ns same? G:same? scriptdir G:scriptdir scriptfile G:scriptfile sem G:sem sem-post G:sem-post
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
75 Builtin sem-rm G:sem-rm sem-wait G:sem-wait sem-wait? G:sem-wait? sem>name G:sem>name semi-throw G:semi-throw
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
76 Builtin set-wipe G:set-wipe setenv G:setenv settings! G:settings! settings![] G:settings![] settings@ G:settings@
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
77 Builtin settings@? G:settings@? settings@[] G:settings@[] sh G:sh sh$ G:sh$ short-days G:short-days
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
78 Builtin short-months G:short-months sleep G:sleep space G:space stack-check G:stack-check stack-size G:stack-size
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
79 Builtin step G:step string? G:string? struct: G:struct: swap G:swap syslang G:syslang sysregion G:sysregion
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
80 Builtin tab-hook G:tab-hook tell-conflict G:tell-conflict tempdir G:tempdir tempfilename G:tempfilename
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
81 Builtin then G:then third G:third throw G:throw thrownull G:thrownull times G:times tlog G:tlog tri G:tri
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
82 Builtin true G:true tuck G:tuck type-check G:type-check typeassert G:typeassert unlock G:unlock unpack G:unpack
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
83 Builtin until G:until until! G:until! var G:var var, G:var, while G:while while! G:while! with: G:with:
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
84 Builtin words G:words words-like G:words-like words/ G:words/ xchg G:xchg xor G:xor >auth HTTP:>auth
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
85 Builtin sh I:sh tpush I:tpush trace-word I:trace-word call JSONRPC:call auth-string OAuth:auth-string
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
86 Builtin gen-nonce OAuth:gen-nonce params OAuth:params call SOAP:call ! a:! + a:+ - a:- 2each a:2each
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
87 Builtin 2map a:2map 2map+ a:2map+ 2map= a:2map= = a:= >map a:>map @ a:@ @@ a:@@ bsearch a:bsearch clear a:clear
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
88 Builtin close a:close diff a:diff dot a:dot each a:each each-slice a:each-slice exists? a:exists? filter a:filter
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
89 Builtin generate a:generate group a:group indexof a:indexof insert a:insert intersect a:intersect join a:join
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
90 Builtin len a:len map a:map map+ a:map+ map= a:map= mean a:mean mean&variance a:mean&variance new a:new
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
91 Builtin op a:op op! a:op! op= a:op= open a:open pop a:pop push a:push qsort a:qsort randeach a:randeach
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
92 Builtin reduce a:reduce reduce+ a:reduce+ rev a:rev shift a:shift shuffle a:shuffle slice a:slice slice+ a:slice+
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
93 Builtin slide a:slide sort a:sort union a:union when a:when when! a:when! x a:x x-each a:x-each xchg a:xchg
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
94 Builtin y a:y zip a:zip 8thdir app:8thdir asset app:asset atrun app:atrun atrun app:atrun atrun app:atrun
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
95 Builtin basedir app:basedir current app:current datadir app:datadir exename app:exename isgui app:isgui
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
96 Builtin main app:main oncrash app:oncrash orientation app:orientation pid app:pid restart app:restart
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
97 Builtin resumed app:resumed shared? app:shared? standalone app:standalone subdir app:subdir suspended app:suspended
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
98 Builtin sysquit app:sysquit (here) asm:(here) >n asm:>n avail asm:avail c, asm:c, here! asm:here! n> asm:n>
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
99 Builtin used asm:used w, asm:w, ! b:! + b:+ / b:/ = b:= >base64 b:>base64 >hex b:>hex >mpack b:>mpack
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
100 Builtin @ b:@ append b:append base64> b:base64> bit! b:bit! bit@ b:bit@ clear b:clear compress b:compress
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
101 Builtin conv b:conv each b:each each-slice b:each-slice expand b:expand fill b:fill getb b:getb hex> b:hex>
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
102 Builtin len b:len mem> b:mem> move b:move mpack-date b:mpack-date mpack-ignore b:mpack-ignore mpack> b:mpack>
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
103 Builtin new b:new op b:op rev b:rev search b:search shmem b:shmem slice b:slice splice b:splice ungetb b:ungetb
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
104 Builtin writable b:writable xor b:xor +block bc:+block .blocks bc:.blocks add-block bc:add-block block-hash bc:block-hash
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
105 Builtin block@ bc:block@ first-block bc:first-block hash bc:hash last-block bc:last-block load bc:load
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
106 Builtin new bc:new save bc:save set-sql bc:set-sql validate bc:validate validate-block bc:validate-block
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
107 Builtin add bloom:add filter bloom:filter in? bloom:in? accept bt:accept ch! bt:ch! ch@ bt:ch@ connect bt:connect
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
108 Builtin disconnect bt:disconnect err? bt:err? leconnect bt:leconnect lescan bt:lescan listen bt:listen
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
109 Builtin on? bt:on? read bt:read scan bt:scan service? bt:service? services? bt:services? write bt:write
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
110 Builtin * c:* * c:* + c:+ + c:+ = c:= = c:= >ri c:>ri >ri c:>ri abs c:abs abs c:abs arg c:arg arg c:arg
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
111 Builtin conj c:conj conj c:conj im c:im n> c:n> new c:new new c:new re c:re >aes128gcm cr:>aes128gcm
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
112 Builtin >aes256gcm cr:>aes256gcm >cp cr:>cp >cpe cr:>cpe >decrypt cr:>decrypt >edbox cr:>edbox >encrypt cr:>encrypt
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
113 Builtin >nbuf cr:>nbuf >rsabox cr:>rsabox >uuid cr:>uuid CBC cr:CBC CFB cr:CFB CTR cr:CTR ECB cr:ECB
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
114 Builtin GCM cr:GCM OFB cr:OFB aad? cr:aad? aes128box-sig cr:aes128box-sig aes128gcm> cr:aes128gcm>
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
115 Builtin aes256box-sig cr:aes256box-sig aes256gcm> cr:aes256gcm> aesgcm cr:aesgcm blakehash cr:blakehash
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
116 Builtin chacha20box-sig cr:chacha20box-sig chachapoly cr:chachapoly cipher! cr:cipher! cipher@ cr:cipher@
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
117 Builtin cp> cr:cp> cpe> cr:cpe> decrypt cr:decrypt decrypt+ cr:decrypt+ decrypt> cr:decrypt> dh-genkey cr:dh-genkey
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
118 Builtin dh-secret cr:dh-secret dh-sign cr:dh-sign dh-verify cr:dh-verify ebox-sig cr:ebox-sig ecc-genkey cr:ecc-genkey
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
119 Builtin ecc-secret cr:ecc-secret ecc-sign cr:ecc-sign ecc-verify cr:ecc-verify edbox-sig cr:edbox-sig
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
120 Builtin edbox> cr:edbox> encrypt cr:encrypt encrypt+ cr:encrypt+ encrypt> cr:encrypt> ensurekey cr:ensurekey
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
121 Builtin err? cr:err? gcm-tag-size cr:gcm-tag-size genkey cr:genkey hash cr:hash hash! cr:hash! hash+ cr:hash+
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
122 Builtin hash>b cr:hash>b hash>s cr:hash>s hash@ cr:hash@ hmac cr:hmac hotp cr:hotp iv? cr:iv? mode cr:mode
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
123 Builtin mode@ cr:mode@ randkey cr:randkey restore cr:restore root-certs cr:root-certs rsa_decrypt cr:rsa_decrypt
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
124 Builtin rsa_encrypt cr:rsa_encrypt rsa_sign cr:rsa_sign rsa_verify cr:rsa_verify rsabox-sig cr:rsabox-sig
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
125 Builtin rsabox> cr:rsabox> rsagenkey cr:rsagenkey save cr:save sbox-sig cr:sbox-sig sha1-hmac cr:sha1-hmac
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
126 Builtin shard cr:shard tag? cr:tag? totp cr:totp totp-epoch cr:totp-epoch totp-time-step cr:totp-time-step
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
127 Builtin unshard cr:unshard uuid cr:uuid uuid> cr:uuid> validate-pgp-sig cr:validate-pgp-sig (.hebrew) d:(.hebrew)
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
128 Builtin (.islamic) d:(.islamic) + d:+ +day d:+day +hour d:+hour +min d:+min +msec d:+msec - d:- .hebrew d:.hebrew
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
129 Builtin .islamic d:.islamic .time d:.time / d:/ = d:= >fixed d:>fixed >hebepoch d:>hebepoch >msec d:>msec
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
130 Builtin >unix d:>unix >ymd d:>ymd Adar d:Adar Adar2 d:Adar2 Adar2 d:Adar2 Av d:Av Elul d:Elul Fri d:Fri
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
131 Builtin Heshvan d:Heshvan Iyar d:Iyar Kislev d:Kislev Mon d:Mon Nissan d:Nissan Sat d:Sat Shevat d:Shevat
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
132 Builtin Sivan d:Sivan Sun d:Sun Tammuz d:Tammuz Tevet d:Tevet Thu d:Thu Tishrei d:Tishrei Tue d:Tue
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
133 Builtin Wed d:Wed adjust-dst d:adjust-dst between d:between d. d:d. dawn d:dawn days-in-hebrew-year d:days-in-hebrew-year
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
134 Builtin displaying-hebrew d:displaying-hebrew do-dawn d:do-dawn do-dusk d:do-dusk do-rise d:do-rise
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
135 Builtin doy d:doy dst? d:dst? dstquery d:dstquery dstzones? d:dstzones? dusk d:dusk elapsed-timer d:elapsed-timer
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
136 Builtin elapsed-timer-seconds d:elapsed-timer-seconds first-dow d:first-dow fixed> d:fixed> fixed>dow d:fixed>dow
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
137 Builtin fixed>hebrew d:fixed>hebrew fixed>islamic d:fixed>islamic format d:format hanukkah d:hanukkah
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
138 Builtin hebrew-epoch d:hebrew-epoch hebrew>fixed d:hebrew>fixed hebrewtoday d:hebrewtoday hmonth-name d:hmonth-name
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
139 Builtin islamic.epoch d:islamic.epoch islamic>fixed d:islamic>fixed islamictoday d:islamictoday join d:join
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
140 Builtin last-day-of-hebrew-month d:last-day-of-hebrew-month last-dow d:last-dow last-month d:last-month
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
141 Builtin last-week d:last-week last-year d:last-year latitude d:latitude longitude d:longitude longitude d:longitude
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
142 Builtin msec d:msec msec> d:msec> new d:new next-dow d:next-dow next-month d:next-month next-week d:next-week
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
143 Builtin next-year d:next-year number>hebrew d:number>hebrew omer d:omer parse d:parse pesach d:pesach
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
144 Builtin prev-dow d:prev-dow purim d:purim rosh-chodesh? d:rosh-chodesh? rosh-hashanah d:rosh-hashanah
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
145 Builtin shavuot d:shavuot start-timer d:start-timer sunrise d:sunrise taanit-esther d:taanit-esther
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
146 Builtin ticks d:ticks ticks/sec d:ticks/sec timer d:timer tisha-beav d:tisha-beav tzadjust d:tzadjust
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
147 Builtin unix> d:unix> updatetz d:updatetz year@ d:year@ ymd d:ymd ymd> d:ymd> yom-haatsmaut d:yom-haatsmaut
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
148 Builtin yom-kippur d:yom-kippur add-func db:add-func bind db:bind close db:close col db:col col[] db:col[]
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
149 Builtin col{} db:col{} err? db:err? errmsg db:errmsg exec db:exec exec-cb db:exec-cb key db:key mysql? db:mysql?
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
150 Builtin odbc? db:odbc? open db:open open? db:open? prepare db:prepare query db:query query-all db:query-all
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
151 Builtin rekey db:rekey sqlerrmsg db:sqlerrmsg bp dbg:bp except-task@ dbg:except-task@ go dbg:go line-info dbg:line-info
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
152 Builtin prompt dbg:prompt stop dbg:stop trace dbg:trace trace-enter dbg:trace-enter trace-leave dbg:trace-leave
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
153 Builtin abspath f:abspath append f:append associate f:associate atime f:atime canwrite? f:canwrite?
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
154 Builtin chmod f:chmod close f:close copy f:copy copydir f:copydir create f:create ctime f:ctime dir? f:dir?
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
155 Builtin dname f:dname eachbuf f:eachbuf eachline f:eachline enssep f:enssep eof? f:eof? err? f:err?
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
156 Builtin exists? f:exists? flush f:flush fname f:fname getb f:getb getc f:getc getline f:getline getmod f:getmod
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
157 Builtin glob f:glob glob-nocase f:glob-nocase include f:include launch f:launch link f:link link> f:link>
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
158 Builtin link? f:link? mkdir f:mkdir mmap f:mmap mmap-range f:mmap-range mmap-range? f:mmap-range? mtime f:mtime
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
159 Builtin mv f:mv open f:open open-ro f:open-ro popen f:popen print f:print read f:read relpath f:relpath
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
160 Builtin rglob f:rglob rm f:rm rmdir f:rmdir seek f:seek sep f:sep show f:show size f:size slurp f:slurp
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
161 Builtin stderr f:stderr stdin f:stdin stdout f:stdout tell f:tell times f:times trash f:trash ungetb f:ungetb
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
162 Builtin ungetc f:ungetc unzip f:unzip unzip-entry f:unzip-entry watch f:watch write f:write writen f:writen
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
163 Builtin zip+ f:zip+ zip@ f:zip@ zipentry f:zipentry zipnew f:zipnew zipopen f:zipopen zipsave f:zipsave
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
164 Builtin bold font:bold face? font:face? glyph-path font:glyph-path glyph-pos font:glyph-pos info font:info
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
165 Builtin italic font:italic ls font:ls measure font:measure new font:new pixels font:pixels pixels? font:pixels?
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
166 Builtin points font:points points? font:points? styles font:styles styles? font:styles? underline font:underline
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
167 Builtin +child g:+child +kind g:+kind +path g:+path -child g:-child /path g:/path >img g:>img >progress g:>progress
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
168 Builtin add-items g:add-items adjustwidth g:adjustwidth allow-orient g:allow-orient arc g:arc arc2 g:arc2
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
169 Builtin autohide g:autohide back g:back bezier g:bezier bg g:bg bg? g:bg? bounds g:bounds bounds? g:bounds?
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
170 Builtin box-label g:box-label btn-font g:btn-font bubble g:bubble button-size g:button-size buttons-visible g:buttons-visible
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
171 Builtin c-text g:c-text callout g:callout center g:center child g:child clear g:clear clearpath g:clearpath
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
172 Builtin clr>n g:clr>n coleven g:coleven colordlg g:colordlg colwidth g:colwidth connectededges g:connectededges
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
173 Builtin contrasting g:contrasting cp g:cp curmouse? g:curmouse? default-font g:default-font deselect-row g:deselect-row
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
174 Builtin dismiss g:dismiss do g:do draw-fitted-text g:draw-fitted-text draw-text g:draw-text draw-text-at g:draw-text-at
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
175 Builtin each g:each edit-on-double-click g:edit-on-double-click editable g:editable editdlg g:editdlg
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
176 Builtin empty-text g:empty-text enable g:enable enabled? g:enabled? fade g:fade fb-files g:fb-files
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
177 Builtin fcolor g:fcolor fg g:fg fg? g:fg? file-filter g:file-filter file-name g:file-name filedlg g:filedlg
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
178 Builtin fill g:fill fillall g:fillall fit-text g:fit-text flex! g:flex! focus g:focus fontdlg g:fontdlg
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
179 Builtin forward g:forward fullscreen g:fullscreen get-lasso-items g:get-lasso-items get-tab g:get-tab
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
180 Builtin getclr g:getclr getfont g:getfont getimage g:getimage getpath g:getpath getroot g:getroot gradient g:gradient
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
181 Builtin gui? g:gui? handle g:handle headerheight g:headerheight hide g:hide image g:image image-at g:image-at
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
182 Builtin invalidate g:invalidate ix? g:ix? justify g:justify keyinfo g:keyinfo l-text g:l-text laf g:laf
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
183 Builtin laf! g:laf! laf? g:laf? len g:len line-width g:line-width lineto g:lineto list+ g:list+ list- g:list-
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
184 Builtin loadcontent g:loadcontent localize g:localize m! g:m! m@ g:m@ menu-font g:menu-font menu-update g:menu-update
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
185 Builtin menuenabled g:menuenabled mouse? g:mouse? mousepos? g:mousepos? moveto g:moveto msgdlg g:msgdlg
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
186 Builtin multi g:multi name g:name named-skin g:named-skin new g:new new-laf g:new-laf next g:next obj g:obj
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
187 Builtin on g:on on? g:on? ontop g:ontop oshandle g:oshandle outlinethickness g:outlinethickness panel-size g:panel-size
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
188 Builtin panel-size? g:panel-size? parent g:parent path g:path path>s g:path>s pie g:pie pix! g:pix!
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
189 Builtin pop g:pop popmenu g:popmenu pos? g:pos? prev g:prev propval! g:propval! propval@ g:propval@
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
190 Builtin push g:push qbezier g:qbezier quit g:quit r-text g:r-text readonly g:readonly rect g:rect refresh g:refresh
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
191 Builtin restore g:restore root g:root root-item-visible g:root-item-visible rotate g:rotate rowheight g:rowheight
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
192 Builtin rrect g:rrect s>path g:s>path save g:save say g:say scale g:scale scolor g:scolor scrollthickness g:scrollthickness
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
193 Builtin sectionenable g:sectionenable select! g:select! select@ g:select@ selected-rows g:selected-rows
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
194 Builtin set-lasso g:set-lasso set-long-press g:set-long-press set-popup-font g:set-popup-font set-range g:set-range
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
195 Builtin set-swipe g:set-swipe set-value g:set-value setcursor g:setcursor setfont g:setfont setheader g:setheader
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
196 Builtin sethtml g:sethtml setimage g:setimage setname g:setname setroot g:setroot settab g:settab show g:show
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
197 Builtin show-line-numbers g:show-line-numbers show-pct g:show-pct showmenu g:showmenu showtooltip g:showtooltip
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
198 Builtin size g:size size? g:size? skin g:skin skin-class g:skin-class stackix g:stackix state g:state
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
199 Builtin state? g:state? stepsize g:stepsize stroke g:stroke stroke-fill g:stroke-fill style g:style
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
200 Builtin tabname g:tabname text g:text text-box-style g:text-box-style text? g:text? textcolor g:textcolor
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
201 Builtin textsize g:textsize timer! g:timer! timer@ g:timer@ toback g:toback tofront g:tofront toggle-row g:toggle-row
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
202 Builtin tooltip g:tooltip top g:top transition g:transition translate g:translate tree-open g:tree-open
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
203 Builtin triangle g:triangle update g:update updateitems g:updateitems url g:url user g:user user! g:user!
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
204 Builtin vertical g:vertical view g:view visible? g:visible? vpos! g:vpos! vpos@ g:vpos@ waitcursor g:waitcursor
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
205 Builtin winding g:winding xy g:xy xy? g:xy? +edge gr:+edge +edge+w gr:+edge+w +node gr:+node connect gr:connect
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
206 Builtin edges gr:edges m! gr:m! m@ gr:m@ neighbors gr:neighbors new gr:new node-edges gr:node-edges
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
207 Builtin nodes gr:nodes traverse gr:traverse + h:+ clear h:clear len h:len new h:new peek h:peek pop h:pop
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
208 Builtin push h:push unique h:unique arm? hw:arm? camera hw:camera camera-fmt hw:camera-fmt camera-img hw:camera-img
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
209 Builtin camera? hw:camera? cpu? hw:cpu? device? hw:device? displays? hw:displays? displaysize? hw:displaysize?
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
210 Builtin err? hw:err? gpio hw:gpio gpio! hw:gpio! gpio-mmap hw:gpio-mmap gpio@ hw:gpio@ i2c hw:i2c i2c! hw:i2c!
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
211 Builtin i2c!reg hw:i2c!reg i2c@ hw:i2c@ i2c@reg hw:i2c@reg isround? hw:isround? iswatch? hw:iswatch?
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
212 Builtin mac? hw:mac? mem? hw:mem? poll hw:poll sensor hw:sensor start hw:start stop hw:stop fetch-full imap:fetch-full
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
213 Builtin fetch-uid-mail imap:fetch-uid-mail login imap:login new imap:new select-inbox imap:select-inbox
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
214 Builtin >file img:>file copy img:copy crop img:crop data img:data desat img:desat fill img:fill filter img:filter
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
215 Builtin flip img:flip from-svg img:from-svg new img:new pix! img:pix! pix@ img:pix@ qr-gen img:qr-gen
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
216 Builtin qr-parse img:qr-parse rotate img:rotate scale img:scale scroll img:scroll size img:size countries iso:countries
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
217 Builtin find loc:find sort loc:sort ! m:! !? m:!? + m:+ +? m:+? - m:- @ m:@ @? m:@? @@ m:@@ clear m:clear
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
218 Builtin data m:data each m:each exists? m:exists? iter m:iter iter-all m:iter-all keys m:keys len m:len
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
219 Builtin map m:map new m:new op! m:op! open m:open vals m:vals xchg m:xchg ! mat:! * mat:* + mat:+ = mat:=
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
220 Builtin @ mat:@ col mat:col data mat:data det mat:det dim? mat:dim? get-n mat:get-n ident mat:ident
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
221 Builtin m. mat:m. minor mat:minor n* mat:n* new mat:new row mat:row same-size? mat:same-size? trans mat:trans
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
222 Builtin ! n:! * n:* */ n:*/ + n:+ +! n:+! - n:- / n:/ /mod n:/mod 1+ n:1+ 1- n:1- < n:< = n:= > n:>
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
223 Builtin BIGE n:BIGE BIGPI n:BIGPI E n:E PI n:PI ^ n:^ abs n:abs acos n:acos acos n:acos asin n:asin
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
224 Builtin asin n:asin atan n:atan atan n:atan atan2 n:atan2 band n:band between n:between bfloat n:bfloat
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
225 Builtin bic n:bic bint n:bint binv n:binv bnot n:bnot bor n:bor bxor n:bxor ceil n:ceil clamp n:clamp
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
226 Builtin cmp n:cmp comb n:comb cos n:cos cosd n:cosd exp n:exp expmod n:expmod float n:float floor n:floor
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
227 Builtin fmod n:fmod frac n:frac gcd n:gcd int n:int invmod n:invmod kind? n:kind? lcm n:lcm ln n:ln
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
228 Builtin max n:max median n:median min n:min mod n:mod neg n:neg odd? n:odd? perm n:perm prime? n:prime?
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
229 Builtin quantize n:quantize quantize! n:quantize! r+ n:r+ range n:range rot32l n:rot32l rot32r n:rot32r
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
230 Builtin round n:round round2 n:round2 running-variance n:running-variance running-variance-finalize n:running-variance-finalize
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
231 Builtin sgn n:sgn shl n:shl shr n:shr sin n:sin sind n:sind sqr n:sqr sqrt n:sqrt tan n:tan tand n:tand
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
232 Builtin trunc n:trunc ~= n:~= ! net:! >url net:>url @ net:@ DGRAM net:DGRAM INET4 net:INET4 INET6 net:INET6
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
233 Builtin PROTO_TCP net:PROTO_TCP PROTO_UDP net:PROTO_UDP STREAM net:STREAM accept net:accept addrinfo>o net:addrinfo>o
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
234 Builtin again? net:again? alloc-and-read net:alloc-and-read alloc-buf net:alloc-buf bind net:bind browse net:browse
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
235 Builtin close net:close connect net:connect err>s net:err>s err? net:err? get net:get getaddrinfo net:getaddrinfo
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
236 Builtin getpeername net:getpeername head net:head ifaces? net:ifaces? listen net:listen net-socket net:net-socket
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
237 Builtin opts net:opts port-is-ssl? net:port-is-ssl? post net:post proxy! net:proxy! read net:read recvfrom net:recvfrom
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
238 Builtin s>url net:s>url sendto net:sendto server net:server setsockopt net:setsockopt socket net:socket
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
239 Builtin tlshello net:tlshello url> net:url> user-agent net:user-agent wait net:wait write net:write
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
240 Builtin MAX ns:MAX cast ptr:cast len ptr:len pack ptr:pack unpack ptr:unpack unpack_orig ptr:unpack_orig
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
241 Builtin + q:+ clear q:clear len q:len new q:new notify q:notify overwrite q:overwrite peek q:peek pick q:pick
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
242 Builtin pop q:pop push q:push shift q:shift size q:size slide q:slide throwing q:throwing wait q:wait
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
243 Builtin ++match r:++match +/ r:+/ +match r:+match / r:/ @ r:@ err? r:err? len r:len match r:match new r:new
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
244 Builtin rx r:rx str r:str ! s:! * s:* + s:+ - s:- / s:/ /scripts s:/scripts <+ s:<+ = s:= =ic s:=ic
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
245 Builtin >base64 s:>base64 >ucs2 s:>ucs2 @ s:@ append s:append base64> s:base64> clear s:clear cmp s:cmp
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
246 Builtin cmpi s:cmpi compress s:compress days! s:days! each s:each eachline s:eachline expand s:expand
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
247 Builtin fill s:fill fmt s:fmt gershayim s:gershayim globmatch s:globmatch hexupr s:hexupr insert s:insert
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
248 Builtin intl s:intl intl! s:intl! lang s:lang lc s:lc len s:len lsub s:lsub ltrim s:ltrim map s:map
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
249 Builtin months! s:months! new s:new replace s:replace replace! s:replace! rev s:rev rsearch s:rsearch
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
250 Builtin rsub s:rsub rtrim s:rtrim script? s:script? search s:search size s:size slice s:slice strfmap s:strfmap
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
251 Builtin strfmt s:strfmt trim s:trim tsub s:tsub uc s:uc ucs2> s:ucs2> utf8? s:utf8? zt s:zt close sio:close
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
252 Builtin enum sio:enum open sio:open opts! sio:opts! opts@ sio:opts@ read sio:read write sio:write new smtp:new
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
253 Builtin send smtp:send apply-filter snd:apply-filter devices? snd:devices? end-record snd:end-record
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
254 Builtin filter snd:filter formats? snd:formats? freq snd:freq gain snd:gain gain? snd:gain? len snd:len
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
255 Builtin loop snd:loop mix snd:mix new snd:new pause snd:pause play snd:play played snd:played rate snd:rate
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
256 Builtin record snd:record seek snd:seek stop snd:stop stopall snd:stopall unmix snd:unmix volume snd:volume
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
257 Builtin volume? snd:volume? + st:+ . st:. clear st:clear len st:len ndrop st:ndrop new st:new op! st:op!
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
258 Builtin peek st:peek pick st:pick pop st:pop push st:push roll st:roll shift st:shift size st:size
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
259 Builtin slide st:slide swap st:swap throwing st:throwing >buf struct:>buf arr> struct:arr> buf struct:buf
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
260 Builtin buf> struct:buf> byte struct:byte double struct:double field! struct:field! field@ struct:field@
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
261 Builtin float struct:float ignore struct:ignore int struct:int long struct:long struct; struct:struct;
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
262 Builtin word struct:word ! t:! @ t:@ assign t:assign curtask t:curtask def-queue t:def-queue def-stack t:def-stack
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
263 Builtin done? t:done? err! t:err! err? t:err? getq t:getq guitask t:guitask handler t:handler kill t:kill
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
264 Builtin list t:list main t:main name! t:name! name@ t:name@ notify t:notify pop t:pop priority t:priority
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
265 Builtin push t:push push< t:push< q-notify t:q-notify q-wait t:q-wait qlen t:qlen result t:result task t:task
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
266 Builtin task-n t:task-n task-stop t:task-stop wait t:wait ! w:! @ w:@ alias: w:alias: cb w:cb deprecate w:deprecate
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
267 Builtin exec w:exec exec? w:exec? ffifail w:ffifail find w:find forget w:forget is w:is undo w:undo
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
268 Builtin >s xml:>s >txt xml:>txt parse xml:parse parse-html xml:parse-html parse-stream xml:parse-stream
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
269 Builtin getmsg[] zmq:getmsg[] sendmsg[] zmq:sendmsg[]
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
270 " numbers
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
271 syn keyword eighthMath decimal hex base@ base!
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
272 syn match eighthInteger '\<-\=[0-9.]*[0-9.]\+\>'
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
273 " recognize hex and binary numbers, the '$' and '%' notation is for eighth
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
274 syn match eighthInteger '\<\$\x*\x\+\>' " *1* --- dont't mess
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
275 syn match eighthInteger '\<\x*\d\x*\>' " *2* --- this order!
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
276 syn match eighthInteger '\<%[0-1]*[0-1]\+\>'
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
277 syn match eighthInteger "\<'.\>"
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
278
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
279 " Strings
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
280 syn region eighthString start=+\.\?\"+ skip=+"+ end=+$+
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
281 syn keyword jsonNull null
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
282 syn keyword jsonBool /\(true\|false\)/
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
283 syn region eighthString start=/\<"/ end=/"\>/
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
284 syn match jsonObjEntry /"\"[^"]\+\"\ze\s*:/
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
285
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
286 "syn region jsonObject start=/{/ end=/}/ contained contains=jsonObjEntry,jsonArray,jsonObject, jsonBool, eighthString
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
287 "syn region jsonArray start=/\[/ end=/\]/ contained contains=jsonArray,jsonObject, jsonBool, eighthString
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
288
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
289 " Include files
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
290 " syn match eighthInclude '\<\(libinclude\|include\|needs\)\s\+\S\+'
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
291 syn region eighthComment start="\zs\\" end="$" contains=eighthTodo
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
292
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
293 " Define the default highlighting.
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
294 if !exists("did_eighth_syntax_inits")
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
295 let did_eighth_syntax_inits=1
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
296 " The default methods for highlighting. Can be overriden later.
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
297 hi def link eighthTodo Todo
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
298 hi def link eighthOperators Operator
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
299 hi def link eighthMath Number
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
300 hi def link eighthInteger Number
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
301 hi def link eighthStack Special
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
302 hi def link eighthFStack Special
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
303 hi def link eighthSP Special
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
304 hi def link eighthColonDef Define
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
305 hi def link eighthColonName Operator
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
306 hi def link eighthEndOfColonDef Define
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
307 hi def link eighthDefine Define
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
308 hi def link eighthDebug Debug
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
309 hi def link eighthCharOps Character
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
310 hi def link eighthConversion String
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
311 hi def link eighthForth Statement
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
312 hi def link eighthVocs Statement
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
313 hi def link eighthString String
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
314 hi def link eighthComment Comment
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
315 hi def link eighthClassDef Define
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
316 hi def link eighthEndOfClassDef Define
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
317 hi def link eighthObjectDef Define
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
318 hi def link eighthEndOfObjectDef Define
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
319 hi def link eighthInclude Include
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
320 hi def link eighthBuiltin Define
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
321 hi def link eighthClasses Define
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
322 hi def link eighthClassWord Keyword
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
323
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
324 hi def link jsonObject Delimiter
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
325 hi def link jsonObjEntry Label
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
326 hi def link jsonArray Special
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
327 hi def link jsonNull Function
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
328 hi def link jsonBool Boolean
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
329 endif
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
330
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
331 let b:current_syntax = "8th"
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
332 let &cpo = s:cpo_save
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
333 unlet s:cpo_save
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
334
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
335 " vim: ts=8:sw=4:nocindent:smartindent: