File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -175,7 +175,7 @@ impl GameDisplayRatatui {
175175 let should_skip = skip_cache. get ( & i) . copied ( ) . unwrap_or ( false ) ;
176176 let is_comment = comment_cache. get ( & i) . copied ( ) . unwrap_or ( false ) ;
177177 let is_current_line = line_number == current_line_number;
178-
178+
179179 if !should_skip {
180180 let style = self . get_char_style_with_highlight (
181181 i,
@@ -185,11 +185,11 @@ impl GameDisplayRatatui {
185185 current_mistake_position,
186186 is_current_line,
187187 ) ;
188-
188+
189189 // Show newline as enter symbol
190190 current_line_spans. push ( Span :: styled ( "↵" . to_string ( ) , style) ) ;
191191 }
192-
192+
193193 lines. push ( Line :: from ( current_line_spans) ) ;
194194 current_line_spans = Vec :: new ( ) ;
195195 current_line_width = 0 ;
You can’t perform that action at this time.
0 commit comments