diff --git a/CHANGELOG.md b/CHANGELOG.md index a9ce81e..571cb32 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Changelog ### master +- bug: when using `vi` copy mode, Enter does not quit screen after tpm + installation/update. Fix by making `q` the key for vi mode. ### v3.1.0, 2023-01-03 - upgrade to new version of `tmux-test` diff --git a/scripts/helpers/tmux_echo_functions.sh b/scripts/helpers/tmux_echo_functions.sh index 7a6ef0a..a9be5da 100644 --- a/scripts/helpers/tmux_echo_functions.sh +++ b/scripts/helpers/tmux_echo_functions.sh @@ -19,7 +19,7 @@ end_message() { if _has_emacs_mode_keys; then local continue_key="ESCAPE" else - local continue_key="ENTER" + local continue_key="q" fi tmux_echo "" tmux_echo "TMUX environment reloaded."