]> git.lizzy.rs Git - micro.git/blob - runtime/syntax/perl.yaml
3fcb8703434817caeb24038ecbec47cd21f3dd84
[micro.git] / runtime / syntax / perl.yaml
1 filetype: perl
2
3 detect: 
4     filename: "\\.p[lm]$"
5     header: "^#!.*/(env +)?perl( |$)"
6
7 rules:
8     - type: "\\b(accept|alarm|atan2|bin(d|mode)|c(aller|h(dir|mod|op|own|root)|lose(dir)?|onnect|os|rypt)|d(bm(close|open)|efined|elete|ie|o|ump)|e(ach|of|val|x(ec|ists|it|p))|f(cntl|ileno|lock|ork))\\b|\\b(get(c|login|peername|pgrp|ppid|priority|pwnam|(host|net|proto|serv)byname|pwuid|grgid|(host|net)byaddr|protobynumber|servbyport)|([gs]et|end)(pw|gr|host|net|proto|serv)ent|getsock(name|opt)|gmtime|goto|grep|hex|index|int|ioctl|join)\\b|\\b(keys|kill|last|length|link|listen|local(time)?|log|lstat|m|mkdir|msg(ctl|get|snd|rcv)|next|oct|open(dir)?|ord|pack|pipe|pop|printf?|push|q|qq|qx|rand|re(ad(dir|link)?|cv|do|name|quire|set|turn|verse|winddir)|rindex|rmdir|s|scalar|seek(dir)?)\\b|\\b(se(lect|mctl|mget|mop|nd|tpgrp|tpriority|tsockopt)|shift|shm(ctl|get|read|write)|shutdown|sin|sleep|socket(pair)?|sort|spli(ce|t)|sprintf|sqrt|srand|stat|study|substr|symlink|sys(call|read|tem|write)|tell(dir)?|time|tr(y)?|truncate|umask)\\b|\\b(un(def|link|pack|shift)|utime|values|vec|wait(pid)?|wantarray|warn|write)\\b"
9     - statement: "\\b(continue|else|elsif|do|for|foreach|if|unless|until|while|eq|ne|lt|gt|le|ge|cmp|x|my|sub|use|package|can|isa)\\b"
10
11     - special: "\\-\\>"
12     - symbol: "(,|\\.)"
13
14     - identifier:
15         start: "[\\$@%]"
16         end: "\\W"
17         rules: []
18
19     - constant.string: "\"\\(.*\\)\"|qq?\\|.*\\||qq?\\{.*\\}|qq?\\/.*\\/"
20     - default: "[sm]/.*/"
21     - preproc:
22         start: "(^use| = new)"
23         end: ";"
24         rules: []
25
26     - comment:
27         start: "#"
28         end: "$"
29         rules: []
30
31     - comment:
32         start: "^="
33         end: "^=cut"
34         rules: []
35
36     - identifier.macro:
37         start: "<< 'STOP'"
38         end: "STOP"
39         rules: []