diff --git a/src/main.rs b/src/main.rs index 8fe1216..201b9ff 100644 --- a/src/main.rs +++ b/src/main.rs @@ -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.