1
0
mirror of https://github.com/alecthomas/chroma.git synced 2025-03-21 21:17:50 +02:00

Merge pull request #57 from kenshaw/add-ordering-to-styles-formatters

Fix order output of chroma cli tool
This commit is contained in:
Alec Thomas 2017-10-10 13:24:37 +11:00 committed by GitHub
commit 26632c8906

View File

@ -198,12 +198,12 @@ func listAll() {
}
fmt.Println()
fmt.Printf("styles:")
for name := range styles.Registry {
for _, name := range styles.Names() {
fmt.Printf(" %s", name)
}
fmt.Println()
fmt.Printf("formatters:")
for name := range formatters.Registry {
for _, name := range formatters.Names() {
fmt.Printf(" %s", name)
}
fmt.Println()