Skip to content

Commit

Permalink
Remove todos about highlight color, it is implemented
Browse files Browse the repository at this point in the history
  • Loading branch information
jackpot51 committed Mar 18, 2024
1 parent 18c3d2a commit b086769
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/edit/editor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion src/edit/vi.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit b086769

Please sign in to comment.