We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f28edc8 commit d88e872Copy full SHA for d88e872
moar.go
@@ -51,6 +51,9 @@ func printProblemsHeader() {
51
fmt.Fprintln(os.Stderr, "GOARCH :", runtime.GOARCH)
52
fmt.Fprintln(os.Stderr, "Compiler:", runtime.Compiler)
53
fmt.Fprintln(os.Stderr, "NumCPU :", runtime.NumCPU())
54
+ fmt.Fprintln(os.Stderr)
55
+ fmt.Fprintln(os.Stderr, "Stdin is a terminal:", term.IsTerminal(int(os.Stdin.Fd())))
56
+ fmt.Fprintln(os.Stderr, "Stdout is a terminal:", term.IsTerminal(int(os.Stdout.Fd())))
57
}
58
59
func parseLexerOption(lexerOption string) (chroma.Lexer, error) {
0 commit comments