mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-25 19:03:30 +04:00
Add ui.gutter to theme all gutters (i.e. set bg)
This commit is contained in:
parent
c7ace15fd4
commit
730d3be201
@ -425,6 +425,8 @@ pub fn render_gutter(
|
||||
|
||||
let mut offset = 0;
|
||||
|
||||
let gutter_style = theme.get("ui.gutter");
|
||||
|
||||
// avoid lots of small allocations by reusing a text buffer for each line
|
||||
let mut text = String::with_capacity(8);
|
||||
|
||||
@ -440,7 +442,7 @@ pub fn render_gutter(
|
||||
viewport.y + i as u16,
|
||||
&text,
|
||||
*width,
|
||||
style,
|
||||
gutter_style.patch(style),
|
||||
);
|
||||
}
|
||||
text.clear();
|
||||
|
@ -20,7 +20,7 @@
|
||||
|
||||
use tokio::time::{sleep, Duration, Instant, Sleep};
|
||||
|
||||
use anyhow::{bail, Context, Error};
|
||||
use anyhow::{bail, Error};
|
||||
|
||||
pub use helix_core::diagnostic::Severity;
|
||||
pub use helix_core::register::Registers;
|
||||
|
Loading…
Reference in New Issue
Block a user