defunkt/Zen

option to show current filename

Closed this issue · 3 comments

Just a suggestion, but would it be possible to add an option to show the filename in the footer? I like having tabs hidden (all the time, actually), but just a simple visual reminder of the buffer's filename would be nice.

Not just with stylesheets, at least not without seriously hacky stuff with the statusbar. You could try something with your user stylesheet first?

On 08 Dec 2015, at 19:59, Matt Sawyer notifications@github.com wrote:

Just a suggestion, but would it be possible to add an option to show the filename in the footer? I like having tabs hidden (all the time, actually), but just a simple visual reminder of the buffer's filename would be nice.


Reply to this email directly or view it on GitHub.

@mattsawyer77

Add this to your user stylesheet:


[data-zen="true"] {
    .status-bar .file-info {
        position: fixed;
        bottom: 0;
        left: 0;
        right: auto;
        padding: 0 @component-padding;
        background: none;
        color: @syntax-text-color;
    }
}

It adds the path to the bottom left corner:
screenshot 2015-12-19 16 17 57

I'm closing this as there seems to be a good user-space solution.