Filter out languages that are hidden.

pull/86/head
Connor Kuehl 6 years ago committed by David Peter
parent ee3a37f3fc
commit b4f8cd3bae

@ -574,6 +574,9 @@ fn run() -> Result<()> {
let separator = " | ";
for lang in languages {
if lang.hidden {
continue;
}
print!("{:width$}{}", lang.name, separator, width = longest);
// Line-wrapping for the possible file extension overflow.

Loading…
Cancel
Save