Hacker News new | ask | show | jobs
by anelson 1503 days ago
I had this problem myself when using tmux (how to switch sessions quickly and easily).

I ended up writing a shell script [1] to use fzf to display a list not only of sessions, but the windows within each session.

Which I invoke from tmux like this:

bind C-a run-shell -b "$HOME/.local/bin/ftwind"

This has become so ingrained in my tmux workflow that I would be utterly helpless without it.

[1]: https://github.com/anelson/dotfiles/blob/master/home/.local/...

EDIT: for formatting