feat: implement end of line virtual text for the current line

This commit is contained in:
Nik Revenco 2025-03-18 19:01:05 +00:00
parent 1ac4e51932
commit 711aa58d40
2 changed files with 11 additions and 10 deletions

View file

@ -201,15 +201,14 @@ impl EditorView {
inline_diagnostic_config, inline_diagnostic_config,
config.end_of_line_diagnostics, config.end_of_line_diagnostics,
)); ));
log::error!("{}", primary_cursor); if config.vcs.blame {
// if config.vcs.blame { decorations.add_decoration(text_decorations::blame::EolBlame::new(
// decorations.add_decoration(text_decorations::blame::EolBlame::new( doc,
// doc, theme,
// theme, doc.text().char_to_line(primary_cursor),
// primary_cursor, "hello world".to_string(),
// "hello world".to_string(), ));
// )); }
// }
render_document( render_document(
surface, surface,
inner, inner,

View file

@ -40,6 +40,9 @@ impl Decoration for EolBlame<'_> {
pos: LinePos, pos: LinePos,
virt_off: Position, virt_off: Position,
) -> Position { ) -> Position {
if self.cursor != pos.doc_line {
return Position::new(0, 0);
}
let row = pos.visual_line; let row = pos.visual_line;
let col = virt_off.col as u16; let col = virt_off.col as u16;
// if col != self.cursor as u16 { // if col != self.cursor as u16 {
@ -67,7 +70,6 @@ impl Decoration for EolBlame<'_> {
.0 .0
}) })
.unwrap_or(start_col); .unwrap_or(start_col);
log::error!("cursor: {}, row: {row}, col: {col}, start_col: {start_col}, draw_col: {draw_col}, end_col: {end_col}", self.cursor);
let col_off = end_col - start_col; let col_off = end_col - start_col;