mirror of
https://github.com/helix-editor/helix.git
synced 2025-10-06 00:13:28 +02:00
Enable inline diagnostics by default (#13970)
This commit is contained in:
@@ -109,7 +109,7 @@ impl InlineDiagnosticsConfig {
|
||||
impl Default for InlineDiagnosticsConfig {
|
||||
fn default() -> Self {
|
||||
InlineDiagnosticsConfig {
|
||||
cursor_line: DiagnosticFilter::Disable,
|
||||
cursor_line: DiagnosticFilter::Enable(Severity::Warning),
|
||||
other_lines: DiagnosticFilter::Disable,
|
||||
min_diagnostic_width: 40,
|
||||
prefix_len: 1,
|
||||
|
@@ -1055,7 +1055,7 @@ impl Default for Config {
|
||||
indent_heuristic: IndentationHeuristic::default(),
|
||||
jump_label_alphabet: ('a'..='z').collect(),
|
||||
inline_diagnostics: InlineDiagnosticsConfig::default(),
|
||||
end_of_line_diagnostics: DiagnosticFilter::Disable,
|
||||
end_of_line_diagnostics: DiagnosticFilter::Enable(Severity::Hint),
|
||||
clipboard_provider: ClipboardProvider::default(),
|
||||
editor_config: true,
|
||||
}
|
||||
|
Reference in New Issue
Block a user