diff options
Diffstat (limited to 'helix-term/src/ui')
-rw-r--r-- | helix-term/src/ui/editor.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/ui/editor.rs b/helix-term/src/ui/editor.rs index 65b114a6..5db68751 100644 --- a/helix-term/src/ui/editor.rs +++ b/helix-term/src/ui/editor.rs @@ -501,7 +501,7 @@ impl EditorView { // Compute the individual info strings. let diag_count = format!("{}", doc.diagnostics().len()); let indent_info = match doc.indent_style { - IndentStyle::Tabs => "tab", + IndentStyle::Tabs => "tabs", IndentStyle::Spaces(1) => "spaces:1", IndentStyle::Spaces(2) => "spaces:2", IndentStyle::Spaces(3) => "spaces:3", |