We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Observed problem: Exiting from tmux executes all preexec_functions with the previous command.
tmux
preexec_functions
Expected behavior: $1 should probably be empty or "logout", since that's what tmux briefly shows on my screen before exiting.
$1
Steps to reproduce:
$ git -C ~/src/bash-preexec describe --tags 0.3.6 $ tmux -V tmux 2.6 $ tmux tmux $ foo() { echo "$@" >> preexec.out; } tmux $ preexec_functions+=(foo) tmux $ echo 123 <CTRL + D> $ cat preexec.out echo 123 echo 123
If you tail -f preexec.out while performing these steps, you see that the second echo 123 does indeed come from the <CTRL + D>.
tail -f preexec.out
echo 123
<CTRL + D>
The text was updated successfully, but these errors were encountered:
@JeffreyFalgout thanks for reporting! Believe this is the same issue as #27. What do you think? Any ideas for how to address?
Sorry, something went wrong.
Yep, sounds like a dupe.
Duplicate of #27
No branches or pull requests
Observed problem: Exiting from
tmux
executes allpreexec_functions
with the previous command.Expected behavior:
$1
should probably be empty or "logout", since that's whattmux
briefly shows on my screen before exiting.Steps to reproduce:
If you
tail -f preexec.out
while performing these steps, you see that the secondecho 123
does indeed come from the<CTRL + D>
.The text was updated successfully, but these errors were encountered: