mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 19:37:54 +03:00
only show inline diagnostics after a delay
This commit is contained in:
parent
d8a115641d
commit
7283ef881f
12 changed files with 219 additions and 17 deletions
|
@ -3550,6 +3550,8 @@ fn goto_first_diag(cx: &mut Context) {
|
|||
None => return,
|
||||
};
|
||||
doc.set_selection(view.id, selection);
|
||||
view.diagnostics_handler
|
||||
.immediately_show_diagnostic(doc, view.id);
|
||||
}
|
||||
|
||||
fn goto_last_diag(cx: &mut Context) {
|
||||
|
@ -3559,6 +3561,8 @@ fn goto_last_diag(cx: &mut Context) {
|
|||
None => return,
|
||||
};
|
||||
doc.set_selection(view.id, selection);
|
||||
view.diagnostics_handler
|
||||
.immediately_show_diagnostic(doc, view.id);
|
||||
}
|
||||
|
||||
fn goto_next_diag(cx: &mut Context) {
|
||||
|
@ -3581,6 +3585,8 @@ fn goto_next_diag(cx: &mut Context) {
|
|||
None => return,
|
||||
};
|
||||
doc.set_selection(view.id, selection);
|
||||
view.diagnostics_handler
|
||||
.immediately_show_diagnostic(doc, view.id);
|
||||
};
|
||||
|
||||
cx.editor.apply_motion(motion);
|
||||
|
@ -3609,6 +3615,8 @@ fn goto_prev_diag(cx: &mut Context) {
|
|||
None => return,
|
||||
};
|
||||
doc.set_selection(view.id, selection);
|
||||
view.diagnostics_handler
|
||||
.immediately_show_diagnostic(doc, view.id);
|
||||
};
|
||||
cx.editor.apply_motion(motion)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue