-
Notifications
You must be signed in to change notification settings - Fork 479
Open
Description
-
In your file 'tmux_echo_functions.sh', you incorrectly direct the user to press ENTER to continue. It should be 'q'.
-
Also, you're having tmux spawn a bash process to echo a message to the screen when tmux has its own internal command 'display message -p'.
-
For me, this is too minor to clone and make a pull request. The code is:
tmux_echo() {
local message="$1"
tmux display-message -p "$message'"
}
echo_ok() {
tmux_echo "$*"
}
echo_err() {
tmux_echo "$*"
}
end_message() {
tmux_echo "
TMUX environment reloaded.
Done, press 'q' to continue."
}
- Thanks for a great addition to the already great tmux
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels