-
Notifications
You must be signed in to change notification settings - Fork 260
/
syntax.go
82 lines (72 loc) · 1.76 KB
/
syntax.go
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
package main
import (
"fmt"
"regexp"
"strings"
"github.com/charmbracelet/vhs/parser"
"github.com/charmbracelet/vhs/token"
)
// Highlight syntax highlights a command for prettier printing.
// It takes an argument whether or not to print the command in a faint style to
// represent hidden commands.
func Highlight(c parser.Command, faint bool) string {
var (
optionsStyle = TimeStyle
argsStyle = NumberStyle
)
if faint {
if c.Options != "" {
return FaintStyle.Render(fmt.Sprintf("%s %s %s", c.Type, c.Options, c.Args))
}
return FaintStyle.Render(fmt.Sprintf("%s %s", c.Type, c.Args))
}
switch c.Type {
case token.REGEX:
argsStyle = StringStyle
case token.SET:
optionsStyle = KeywordStyle
if isNumber(c.Args) {
argsStyle = NumberStyle
} else if isTime(c.Args) {
argsStyle = TimeStyle
} else {
argsStyle = StringStyle
}
case token.ENV:
optionsStyle = NoneStyle
argsStyle = StringStyle
case token.OUTPUT:
optionsStyle = NoneStyle
argsStyle = StringStyle
case token.CTRL:
argsStyle = CommandStyle
case token.SLEEP:
argsStyle = TimeStyle
case token.TYPE:
optionsStyle = TimeStyle
argsStyle = StringStyle
case token.HIDE, token.SHOW:
return FaintStyle.Render(c.Type.String())
}
var s strings.Builder
s.WriteString(CommandStyle.Render(c.Type.String()) + " ")
if c.Options != "" {
s.WriteString(optionsStyle.Render(c.Options))
switch c.Type {
case token.ENV:
s.WriteString("=")
default:
s.WriteString(" ")
}
}
s.WriteString(argsStyle.Render(c.Args))
return s.String()
}
var numberRegex = regexp.MustCompile("^[0-9]+$")
func isNumber(s string) bool {
return numberRegex.MatchString(s)
}
var timeRegex = regexp.MustCompile("^[0-9]+m?s$")
func isTime(s string) bool {
return timeRegex.MatchString(s)
}