From e2e7f0a62616927226c2cf57c6693387bd12e8d6 Mon Sep 17 00:00:00 2001 From: Wilfred Hughes Date: Thu, 30 Dec 2021 10:12:27 -0800 Subject: [PATCH] Add TODO --- src/side_by_side.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/side_by_side.rs b/src/side_by_side.rs index 1e9b9055c..37a2e169a 100644 --- a/src/side_by_side.rs +++ b/src/side_by_side.rs @@ -233,6 +233,7 @@ fn highlight_as_novel( // If this is a blank line without a corresponding line on the // other side, highlight it too. This helps highlight novel // blank lines. + // TODO: consider whitespace-only lines here too. if line_content == Some(&"".into()) && opposite_line_num.is_none() { return true; }