My SSID is ^_^. I noticed that gets cutt of to _^ in the status bar.
I think the original regex (introduced here: https://github.com/dracula/tmux/pull/39) is just wrong, maybe the "start of line" indicator is in the wrong place? Anyway, this new regex will fix that.
My SSID is
^_^
. I noticed that gets cutt of to_^
in the status bar.I think the original regex (introduced here: https://github.com/dracula/tmux/pull/39) is just wrong, maybe the "start of line" indicator is in the wrong place? Anyway, this new regex will fix that.
The plain SSID without the regex replacement:
(note the extra space it's supposed to remove)
Before:
After:
sed 's/^ *//g'
will also work, but I like the explicitness of[[:blank:]]
.