mirror of
https://github.com/cheat/cheat.git
synced 2024-11-16 17:08:29 +01:00
91f0d02de2
* feat: directory-scoped cheatpaths `cheat` now searches for a `.cheat` directory in the current working directory. If found, that directory is (temporarily) appended to the slice of cheatpaths. * makefile wip * fix: appeases linter Appeases linter (`go vet`) by adding quotation marks to YAML struct tags. * chore: modifies .gitignore Adds `tag` to `.gitignore` * feat: adds Makefile Adds a `Makefile` for managing build-related tasks. * chore: documents directory-local paths Adds documentation regarding the new directory-local cheatpath functionality. * chore: updates dependencies * chore: bumps version to 3.3.0 * chore: updates bin scripts - Removes `build_release.sh` - Places deprecation notice in `build_devel.sh`, as its purpose has been superceded by the `Makefile`.
42 lines
1.2 KiB
Go
42 lines
1.2 KiB
Go
package t
|
|
|
|
import (
|
|
. "github.com/alecthomas/chroma" // nolint
|
|
"github.com/alecthomas/chroma/lexers/internal"
|
|
)
|
|
|
|
// TableGen lexer.
|
|
var Tablegen = internal.Register(MustNewLexer(
|
|
&Config{
|
|
Name: "TableGen",
|
|
Aliases: []string{"tablegen"},
|
|
Filenames: []string{"*.td"},
|
|
MimeTypes: []string{"text/x-tablegen"},
|
|
},
|
|
Rules{
|
|
"root": {
|
|
Include("macro"),
|
|
Include("whitespace"),
|
|
{`c?"[^"]*?"`, LiteralString, nil},
|
|
Include("keyword"),
|
|
{`\$[_a-zA-Z][_\w]*`, NameVariable, nil},
|
|
{`\d*[_a-zA-Z][_\w]*`, NameVariable, nil},
|
|
{`\[\{[\w\W]*?\}\]`, LiteralString, nil},
|
|
{`[+-]?\d+|0x[\da-fA-F]+|0b[01]+`, LiteralNumber, nil},
|
|
{`[=<>{}\[\]()*.,!:;]`, Punctuation, nil},
|
|
},
|
|
"macro": {
|
|
{`(#include\s+)("[^"]*")`, ByGroups(CommentPreproc, LiteralString), nil},
|
|
{`^\s*#(ifdef|ifndef)\s+[_\w][_\w\d]*`, CommentPreproc, nil},
|
|
{`^\s*#define\s+[_\w][_\w\d]*`, CommentPreproc, nil},
|
|
{`^\s*#endif`, CommentPreproc, nil},
|
|
},
|
|
"whitespace": {
|
|
{`(\n|\s)+`, Text, nil},
|
|
{`//.*?\n`, Comment, nil},
|
|
},
|
|
"keyword": {
|
|
{Words(``, `\b`, `bit`, `bits`, `class`, `code`, `dag`, `def`, `defm`, `field`, `foreach`, `in`, `int`, `let`, `list`, `multiclass`, `string`), Keyword, nil},
|
|
},
|
|
},
|
|
))
|