diff options
author | Blaž Hrastnik | 2020-12-18 08:18:11 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2020-12-18 08:18:11 +0000 |
commit | 0b63e838e0ffe9a36a2cb51790f464d634b843af (patch) | |
tree | edf96947ab44f5fbc791c9a6d8416876ff4535cb /helix-term/src/ui | |
parent | 8b263ef04b8a1399727c41b4e2f4017fc0be9316 (diff) |
Port over Doc::relative_path.
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 ceb5a442..996e182f 100644 --- a/helix-term/src/ui/editor.rs +++ b/helix-term/src/ui/editor.rs @@ -226,7 +226,7 @@ impl EditorView { ); surface.set_string(1, viewport.y, mode, text_color); - if let Some(path) = view.doc.path() { + if let Some(path) = view.doc.relative_path() { surface.set_string(6, viewport.y, path.to_string_lossy(), text_color); } |