File: awk.yaml

package info (click to toggle)
micro 2.0.15-1
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 2,828 kB
  • sloc: sh: 247; makefile: 77; xml: 53
file content (44 lines) | stat: -rw-r--r-- 1,499 bytes parent folder | download | duplicates (5)
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
filetype: awk

detect:
    filename: "\\.awk$"
    header: "^#!.*bin/(env +)?awk( |$)"

rules:
    - preproc: "\\$[A-Za-z0-9_!@#$*?\\-]+"
    - preproc: "\\b(ARGC|ARGIND|ARGV|BINMODE|CONVFMT|ENVIRON|ERRNO|FIELDWIDTHS)\\b"
    - preproc: "\\b(FILENAME|FNR|FS|IGNORECASE|LINT|NF|NR|OFMT|OFS|ORS)\\b"
    - preproc: "\\b(PROCINFO|RS|RT|RSTART|RLENGTH|SUBSEP|TEXTDOMAIN)\\b"
    - identifier.class: "\\b(function|extension|BEGIN|END)\\b"
    - symbol.operator: "[\\-+*/%^|!=&<>?;:]|\\\\|\\[|\\]"
    - statement:  "\\b(for|if|while|do|else|in|delete|exit)\\b"
    - special:  "\\b(break|continue|return)\\b"
    - statement: "\\b(close|getline|next|nextfile|print|printf|system|fflush)\\b"
    - statement: "\\b(atan2|cos|exp|int|log|rand|sin|sqrt|srand)\\b"
    - statement: "\\b(asort|asorti|gensub|gsub|index|length|match)\\b"
    - statement: "\\b(split|sprintf|strtonum|sub|substr|tolower|toupper)\\b"
    - statement: "\\b(mktime|strftime|systime)\\b"
    - statement: "\\b(and|compl|lshift|or|rshift|xor)\\b"
    - statement: "\\b(bindtextdomain|dcgettext|dcngettext)\\b"
    - special:   "/.*[^\\\\]/"

    - constant.string:
        start: "\""
        end: "\""
        skip: "\\\\."
        rules:
            - constant.specialChar: "\\\\."

    - constant.string:
        start: "'"
        end: "'"
        skip: "\\\\."
        rules:
            - constant.specialChar: "\\\\."

    - comment:
        start: "#"
        end: "$"
        rules:
            - todo: "(TODO|XXX|FIXME):?"