send a tag suggestion

which tags should be associated with each other?


why should these tags be associated?

Use the form below to provide more context.

#csurfer


today I was reminded of this so you get to be too

https://github.com/csurfer/tmuxrepl

# in tmuxrepl.plugin.zsh:
# Initializes a new window with the tmuxrepl setup.
function tmuxrepl () {
    tmux new-window && tmux split-window -v -p 10 && tmux send-keys -t bottom "_tmuxrepl_init" C-m
}

# Tmux REPL loop which takes full advantage of your zsh settings.
function _tmuxrepl_init () {
    while true; do
        local cmd
        vared -p ">> " cmd
        ([[ "$cmd" =~ ^cd ]] || [[ "$cmd" =~ \\.$ ]]) && eval "$cmd"
        tmux send-keys -t top "$cmd" C-m
        unset cmd
    done
}