Skip to content

Commit b086769

Browse files
committed
Remove todos about highlight color, it is implemented
1 parent 18c3d2a commit b086769

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/edit/editor.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ impl<'buffer> Editor<'buffer> {
9999
None
100100
};
101101

102-
// Highlight selection (TODO: HIGHLIGHT COLOR!)
102+
// Highlight selection
103103
if let Some((start, end)) = self.selection_bounds() {
104104
if line_i >= start.line && line_i <= end.line {
105105
let mut range_opt = None;

src/edit/vi.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ impl<'syntax_system, 'buffer> ViEditor<'syntax_system, 'buffer> {
322322
None
323323
};
324324

325-
// Highlight selection (TODO: HIGHLIGHT COLOR!)
325+
// Highlight selection
326326
if let Some((start, end)) = self.selection_bounds() {
327327
if line_i >= start.line && line_i <= end.line {
328328
let mut range_opt = None;

0 commit comments

Comments
 (0)