aboutsummaryrefslogtreecommitdiff
path: root/helix-term
diff options
context:
space:
mode:
Diffstat (limited to 'helix-term')
-rw-r--r--helix-term/src/commands.rs2
-rw-r--r--helix-term/src/ui/editor.rs5
2 files changed, 4 insertions, 3 deletions
diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs
index 61c62251..8dc69544 100644
--- a/helix-term/src/commands.rs
+++ b/helix-term/src/commands.rs
@@ -830,7 +830,7 @@ pub fn command_mode(cx: &mut Context) {
["w"] | ["write"] => {
// TODO: non-blocking via save() command
let id = editor.view().doc;
- let doc = &mut editor.document(id).unwrap();
+ let doc = &mut editor.documents[id];
smol::block_on(doc.save());
}
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(