diff options
Diffstat (limited to 'helix-view/src')
-rw-r--r-- | helix-view/src/editor.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/helix-view/src/editor.rs b/helix-view/src/editor.rs index c13a6673..3521077e 100644 --- a/helix-view/src/editor.rs +++ b/helix-view/src/editor.rs @@ -314,7 +314,10 @@ pub enum StatusLineElement { /// The LSP activity spinner Spinner, - /// The file nane/path, including a dirty flag if it's unsaved + /// The base file name, including a dirty flag if it's unsaved + FileBaseName, + + /// The relative file path, including a dirty flag if it's unsaved FileName, /// The file encoding |