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
64 lines
2.1 KiB
Go
64 lines
2.1 KiB
Go
package t
|
|
|
|
import (
|
|
. "github.com/alecthomas/chroma" // nolint
|
|
"github.com/alecthomas/chroma/lexers/internal"
|
|
)
|
|
|
|
// Tcsh lexer.
|
|
var Tcsh = internal.Register(MustNewLazyLexer(
|
|
&Config{
|
|
Name: "Tcsh",
|
|
Aliases: []string{"tcsh", "csh"},
|
|
Filenames: []string{"*.tcsh", "*.csh"},
|
|
MimeTypes: []string{"application/x-csh"},
|
|
},
|
|
tcshRules,
|
|
))
|
|
|
|
func tcshRules() Rules {
|
|
return Rules{
|
|
"root": {
|
|
Include("basic"),
|
|
{`\$\(`, Keyword, Push("paren")},
|
|
{`\$\{#?`, Keyword, Push("curly")},
|
|
{"`", LiteralStringBacktick, Push("backticks")},
|
|
Include("data"),
|
|
},
|
|
"basic": {
|
|
{`\b(if|endif|else|while|then|foreach|case|default|continue|goto|breaksw|end|switch|endsw)\s*\b`, Keyword, nil},
|
|
{`\b(alias|alloc|bg|bindkey|break|builtins|bye|caller|cd|chdir|complete|dirs|echo|echotc|eval|exec|exit|fg|filetest|getxvers|glob|getspath|hashstat|history|hup|inlib|jobs|kill|limit|log|login|logout|ls-F|migrate|newgrp|nice|nohup|notify|onintr|popd|printenv|pushd|rehash|repeat|rootnode|popd|pushd|set|shift|sched|setenv|setpath|settc|setty|setxvers|shift|source|stop|suspend|source|suspend|telltc|time|umask|unalias|uncomplete|unhash|universe|unlimit|unset|unsetenv|ver|wait|warp|watchlog|where|which)\s*\b`, NameBuiltin, nil},
|
|
{`#.*`, Comment, nil},
|
|
{`\\[\w\W]`, LiteralStringEscape, nil},
|
|
{`(\b\w+)(\s*)(=)`, ByGroups(NameVariable, Text, Operator), nil},
|
|
{`[\[\]{}()=]+`, Operator, nil},
|
|
{`<<\s*(\'?)\\?(\w+)[\w\W]+?\2`, LiteralString, nil},
|
|
{`;`, Punctuation, nil},
|
|
},
|
|
"data": {
|
|
{`(?s)"(\\\\|\\[0-7]+|\\.|[^"\\])*"`, LiteralStringDouble, nil},
|
|
{`(?s)'(\\\\|\\[0-7]+|\\.|[^'\\])*'`, LiteralStringSingle, nil},
|
|
{`\s+`, Text, nil},
|
|
{"[^=\\s\\[\\]{}()$\"\\'`\\\\;#]+", Text, nil},
|
|
{`\d+(?= |\Z)`, LiteralNumber, nil},
|
|
{`\$#?(\w+|.)`, NameVariable, nil},
|
|
},
|
|
"curly": {
|
|
{`\}`, Keyword, Pop(1)},
|
|
{`:-`, Keyword, nil},
|
|
{`\w+`, NameVariable, nil},
|
|
{"[^}:\"\\'`$]+", Punctuation, nil},
|
|
{`:`, Punctuation, nil},
|
|
Include("root"),
|
|
},
|
|
"paren": {
|
|
{`\)`, Keyword, Pop(1)},
|
|
Include("root"),
|
|
},
|
|
"backticks": {
|
|
{"`", LiteralStringBacktick, Pop(1)},
|
|
Include("root"),
|
|
},
|
|
}
|
|
}
|