mirror of
https://github.com/cheat/cheat.git
synced 2024-11-01 05:31:01 +01:00
55b18b4897
commit 95479c8ad744db48386a5c78e54ef8da80e9120b Author: Chris Lane <chris@chris-allen-lane.com> Date: Wed Apr 28 12:26:32 2021 -0400 chore(version): bump version to 4.2.1 commit6956f51cae
Author: Chris Lane <chris@chris-allen-lane.com> Date: Wed Apr 28 12:24:21 2021 -0400 fix(Makefile): `vendor-update` Update the `vendor-update` build target to run `go mod vendor` after updating dependencies. commit0aca411279
Author: Chris Lane <chris@chris-allen-lane.com> Date: Wed Apr 28 12:23:24 2021 -0400 chore(deps): update dependencies commite847956b02
Author: Chris Lane <chris@chris-allen-lane.com> Date: Wed Apr 28 08:26:51 2021 -0400 chore(deps): build updates - Upgrade `go` to `1.16.3` - Attempt to fix build errors regarding dependencies
53 lines
2.0 KiB
Go
53 lines
2.0 KiB
Go
package a
|
|
|
|
import (
|
|
. "github.com/alecthomas/chroma" // nolint
|
|
"github.com/alecthomas/chroma/lexers/internal"
|
|
)
|
|
|
|
// Awk lexer.
|
|
var Awk = internal.Register(MustNewLazyLexer(
|
|
&Config{
|
|
Name: "Awk",
|
|
Aliases: []string{"awk", "gawk", "mawk", "nawk"},
|
|
Filenames: []string{"*.awk"},
|
|
MimeTypes: []string{"application/x-awk"},
|
|
},
|
|
awkRules,
|
|
))
|
|
|
|
func awkRules() Rules {
|
|
return Rules{
|
|
"commentsandwhitespace": {
|
|
{`\s+`, Text, nil},
|
|
{`#.*$`, CommentSingle, nil},
|
|
},
|
|
"slashstartsregex": {
|
|
Include("commentsandwhitespace"),
|
|
{`/(\\.|[^[/\\\n]|\[(\\.|[^\]\\\n])*])+/\B`, LiteralStringRegex, Pop(1)},
|
|
{`(?=/)`, Text, Push("#pop", "badregex")},
|
|
Default(Pop(1)),
|
|
},
|
|
"badregex": {
|
|
{`\n`, Text, Pop(1)},
|
|
},
|
|
"root": {
|
|
{`^(?=\s|/)`, Text, Push("slashstartsregex")},
|
|
Include("commentsandwhitespace"),
|
|
{`\+\+|--|\|\||&&|in\b|\$|!?~|\|&|(\*\*|[-<>+*%\^/!=|])=?`, Operator, Push("slashstartsregex")},
|
|
{`[{(\[;,]`, Punctuation, Push("slashstartsregex")},
|
|
{`[})\].]`, Punctuation, nil},
|
|
{`(break|continue|do|while|exit|for|if|else|return|switch|case|default)\b`, Keyword, Push("slashstartsregex")},
|
|
{`function\b`, KeywordDeclaration, Push("slashstartsregex")},
|
|
{`(atan2|cos|exp|int|log|rand|sin|sqrt|srand|gensub|gsub|index|length|match|split|patsplit|sprintf|sub|substr|tolower|toupper|close|fflush|getline|next(file)|print|printf|strftime|systime|mktime|delete|system|strtonum|and|compl|lshift|or|rshift|asorti?|isarray|bindtextdomain|dcn?gettext|@(include|load|namespace))\b`, KeywordReserved, nil},
|
|
{`(ARGC|ARGIND|ARGV|BEGIN(FILE)?|BINMODE|CONVFMT|ENVIRON|END(FILE)?|ERRNO|FIELDWIDTHS|FILENAME|FNR|FPAT|FS|IGNORECASE|LINT|NF|NR|OFMT|OFS|ORS|PROCINFO|RLENGTH|RS|RSTART|RT|SUBSEP|TEXTDOMAIN)\b`, NameBuiltin, nil},
|
|
{`[@$a-zA-Z_]\w*`, NameOther, nil},
|
|
{`[0-9][0-9]*\.[0-9]+([eE][0-9]+)?[fd]?`, LiteralNumberFloat, nil},
|
|
{`0x[0-9a-fA-F]+`, LiteralNumberHex, nil},
|
|
{`[0-9]+`, LiteralNumberInteger, nil},
|
|
{`"(\\\\|\\"|[^"])*"`, LiteralStringDouble, nil},
|
|
{`'(\\\\|\\'|[^'])*'`, LiteralStringSingle, nil},
|
|
},
|
|
}
|
|
}
|