mirror of
				https://github.com/go-gitea/gitea
				synced 2025-11-04 05:18:25 +00:00 
			
		
		
		
	* update github.com/PuerkitoBio/goquery * update github.com/alecthomas/chroma * update github.com/blevesearch/bleve/v2 * update github.com/caddyserver/certmagic * update github.com/go-enry/go-enry/v2 * update github.com/go-git/go-billy/v5 * update github.com/go-git/go-git/v5 * update github.com/go-redis/redis/v8 * update github.com/go-testfixtures/testfixtures/v3 * update github.com/jaytaylor/html2text * update github.com/json-iterator/go * update github.com/klauspost/compress * update github.com/markbates/goth * update github.com/mattn/go-isatty * update github.com/mholt/archiver/v3 * update github.com/microcosm-cc/bluemonday * update github.com/minio/minio-go/v7 * update github.com/prometheus/client_golang * update github.com/unrolled/render * update github.com/xanzy/go-gitlab * update github.com/yuin/goldmark * update github.com/yuin/goldmark-highlighting Co-authored-by: techknowlogick <techknowlogick@gitea.io>
		
			
				
	
	
		
			64 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Go
		
	
	
	
		
			Vendored
		
	
	
	
			
		
		
	
	
			64 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Go
		
	
	
	
		
			Vendored
		
	
	
	
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"),
 | 
						|
		},
 | 
						|
	}
 | 
						|
}
 |