Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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`
Expand Down
2 changes: 1 addition & 1 deletion scripts/helpers/tmux_echo_functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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."
Expand Down