this post was submitted on 04 Jul 2025
2 points (100.0% liked)

Helix Editor

232 readers
8 users here now

About

Post-modern community focused on post-modern editor.

Rules

Instance rules apply here.

founded 2 years ago
MODERATORS
 

When I'm editing with helix, I often have multiple instances of it running, one for each file, in different terminals (more precisely: in different tabs of my terminal emulator, Konsole). Currently, the title of these tabs reads just "Directoryname: helix". It would be really helpful if the titles included the current filename, so that I could see which tab has which file opened. Is there a way to do this?

top 2 comments
sorted by: hot top controversial new old
[–] breakcore@discuss.tchncs.de 2 points 3 days ago (1 children)

I know this is presumably because of you using konsole's tabs as a part of your existing workflow, so it fits in there, but have you considered using helix' multi buffer system? It is described here : https://helix-editor.vercel.app/usage/buffers

To get tabs to show up, you have to enable the so-called bufferline:

:set bufferline always

It shows the name of the file and is well integrated.

[–] loveknight@programming.dev 1 points 3 days ago

Thanks, that's good to know, I'll see how well I can adapt my workflow to this. (The reason for using Konsole tabs so far is the easy switching via Alt+[number], but I suppose using Helix's integrated multi-document system should offer other advantages (e.g. regarding registers) that could outweigh this by far.)