Skip to content

Commit e95528e

Browse files
authored
Merge pull request #134 from oblitum/fix-bad-bind-key-recover
Fix unwanted changes to other keybindings
2 parents 7dced2a + 25f472d commit e95528e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/copycat_mode_quit.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ unbind_prev_next_bindings() {
1818
}
1919

2020
unbind_all_bindings() {
21-
grep -v copycat <"${TMPDIR:-/tmp}/copycat_$(whoami)_recover_keys" | while read key_cmd; do
21+
grep -v copycat <"${TMPDIR:-/tmp}/copycat_$(whoami)_recover_keys" | while read -r key_cmd; do
2222
sh -c "tmux $key_cmd"
2323
done < /dev/stdin
2424
rm "${TMPDIR:-/tmp}/copycat_$(whoami)_recover_keys"

0 commit comments

Comments
 (0)