mirror of
https://github.com/alecthomas/chroma.git
synced 2025-07-17 01:22:22 +02:00
Fix order output of chroma cli tool
Changes output for the chroma cli tool for styles and formatters so that the output on --list is always in the same order.
This commit is contained in:
@ -198,12 +198,12 @@ func listAll() {
|
|||||||
}
|
}
|
||||||
fmt.Println()
|
fmt.Println()
|
||||||
fmt.Printf("styles:")
|
fmt.Printf("styles:")
|
||||||
for name := range styles.Registry {
|
for _, name := range styles.Names() {
|
||||||
fmt.Printf(" %s", name)
|
fmt.Printf(" %s", name)
|
||||||
}
|
}
|
||||||
fmt.Println()
|
fmt.Println()
|
||||||
fmt.Printf("formatters:")
|
fmt.Printf("formatters:")
|
||||||
for name := range formatters.Registry {
|
for _, name := range formatters.Names() {
|
||||||
fmt.Printf(" %s", name)
|
fmt.Printf(" %s", name)
|
||||||
}
|
}
|
||||||
fmt.Println()
|
fmt.Println()
|
||||||
|
Reference in New Issue
Block a user