Remove todos about highlight color, it is implemented

This commit is contained in:
Jeremy Soller 2024-03-18 08:41:42 -06:00
parent 18c3d2acec
commit b08676909f
No known key found for this signature in database
GPG key ID: D02FD439211AF56F
2 changed files with 2 additions and 2 deletions

View file

@ -99,7 +99,7 @@ impl<'buffer> Editor<'buffer> {
None
};
// Highlight selection (TODO: HIGHLIGHT COLOR!)
// Highlight selection
if let Some((start, end)) = self.selection_bounds() {
if line_i >= start.line && line_i <= end.line {
let mut range_opt = None;

View file

@ -322,7 +322,7 @@ impl<'syntax_system, 'buffer> ViEditor<'syntax_system, 'buffer> {
None
};
// Highlight selection (TODO: HIGHLIGHT COLOR!)
// Highlight selection
if let Some((start, end)) = self.selection_bounds() {
if line_i >= start.line && line_i <= end.line {
let mut range_opt = None;