Remove todos about highlight color, it is implemented
This commit is contained in:
parent
18c3d2acec
commit
b08676909f
2 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue