Skip to content

Instantly share code, notes, and snippets.

View mmm's full-sized avatar

Mark Mims mmm

View GitHub Profile
@mmm
mmm / tmux-utils
Last active December 11, 2023 17:12
tmux fuzzy launcher
#!/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