Esempio n. 1
0
File: print.go Progetto: ccll/looper
func Header() {
	fmt.Println(ansicolor.Cyan("Looper 0.3.2 is watching your files"))
	fmt.Println("Type " + ansicolor.Magenta("help") + " for help.\n")
}
Esempio n. 2
0
File: print.go Progetto: ccll/looper
func UnknownCommand(command string) {
	fmt.Println(ansicolor.Red("ERROR:")+" Unknown command", ansicolor.Magenta(command))
}
Esempio n. 3
0
File: print.go Progetto: jtacoma/gat
func Header() {
	fmt.Println(ansicolor.Cyan("G.A.T.0.1.0 is watching your files"))
	fmt.Println("Type " + ansicolor.Magenta("help") + " for help.\n")
}
Esempio n. 4
0
File: print.go Progetto: ccll/looper
func DisplayHelp() {
	fmt.Println(ansicolor.Magenta("\nInteractions:\n"))
	fmt.Println("  * a, all  Run all tests")
	fmt.Println("  * h, help You found it")
	fmt.Println("  * e, exit Leave Looper")
}
Esempio n. 5
0
File: print.go Progetto: jtacoma/gat
func Help() {
	fmt.Println(ansicolor.Magenta("\nInteractions:\n"))
	fmt.Println("  * a, all  Run all tests.")
	fmt.Println("  * h, help You found it.")
	fmt.Println("  * e, exit Leave G.A.T.")
}