sainnhe/tmux-fzf

Removing prefixes for `TMUX_FZF_*_FORMAT`

toyboot4e opened this issue · 1 comments

Currently, session, window and pane formats are displayed after some prefix, like:

"#S:#{window_index}: $TMUX_FZF_WINDOW_FORMAT"

But then we can't remove session names even if we only want to see ${window_name}.
So I suggest removing those prefixes for TMUX_FZF_*_FORMAT so that users get full control:

"$TMUX_FZF_WINDOW_FORMAT"

Thank you.

The prefix is used as an identifier, this plugin need it to know the extract session/window/pane ID to switch to.

So in current implementation, it can't be removed.