This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
__tmux_find_session_like() { | |
local requested_session=$1 | |
tmux list-sessions | sed -E 's/:.*$//' | fzf --filter=$requested_session --no-sort | |
} | |
__tmux_create_or_attach_to() { | |
local requested_session=$1 |
OlderNewer