From b4f8cd3bae4fb7988ad238579714efb646a85efa Mon Sep 17 00:00:00 2001 From: Connor Kuehl Date: Tue, 8 May 2018 11:50:56 -0700 Subject: [PATCH] Filter out languages that are hidden. --- src/main.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main.rs b/src/main.rs index 8fe12164..201b9ff0 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.