From 7e7992f9613e08dd6cd2a071384359118978b7fb Mon Sep 17 00:00:00 2001 From: Kevin Moore Date: Fri, 4 Sep 2020 09:04:35 -0700 Subject: [PATCH] fix formatting --- lib/src/highlighter.dart | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/src/highlighter.dart b/lib/src/highlighter.dart index 491dae5..d61ff9f 100644 --- a/lib/src/highlighter.dart +++ b/lib/src/highlighter.dart @@ -288,7 +288,9 @@ class Highlighter { final currentColor = current == null ? null - : current.isPrimary ? _primaryColor : _secondaryColor; + : current.isPrimary + ? _primaryColor + : _secondaryColor; var foundCurrent = false; for (var highlight in highlightsByColumn) { final startLine = highlight?.span.start.line;