aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src/ui/editor.rs
diff options
context:
space:
mode:
Diffstat (limited to 'helix-term/src/ui/editor.rs')
-rw-r--r--helix-term/src/ui/editor.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/helix-term/src/ui/editor.rs b/helix-term/src/ui/editor.rs
index 1103d6f5..1f4bf6bd 100644
--- a/helix-term/src/ui/editor.rs
+++ b/helix-term/src/ui/editor.rs
@@ -415,14 +415,15 @@ impl EditorView {
if let Some(path) = doc.relative_path() {
let path = path.to_string_lossy();
+
+ let title = format!("{}{}", path, if doc.modified() { "[+]" } else { "" });
surface.set_stringn(
viewport.x + 6,
viewport.y,
- path,
+ title,
viewport.width.saturating_sub(6) as usize,
text_color,
);
- // TODO: append [+] if modified
}
surface.set_string(