Highlight the selected line when typing in the go to line dialog
This commit is contained in:
parent
53a7da9d3f
commit
0854976691
8 changed files with 48 additions and 5 deletions
|
@ -223,6 +223,7 @@ pub struct EditorStyle {
|
|||
pub selection: SelectionStyle,
|
||||
pub gutter_background: Color,
|
||||
pub active_line_background: Color,
|
||||
pub highlighted_line_background: Color,
|
||||
pub line_number: Color,
|
||||
pub line_number_active: Color,
|
||||
pub guest_selections: Vec<SelectionStyle>,
|
||||
|
@ -286,6 +287,7 @@ impl InputEditorStyle {
|
|||
selection: self.selection,
|
||||
gutter_background: Default::default(),
|
||||
active_line_background: Default::default(),
|
||||
highlighted_line_background: Default::default(),
|
||||
line_number: Default::default(),
|
||||
line_number_active: Default::default(),
|
||||
guest_selections: Default::default(),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue