2021-05-13 07:49:58 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
PATH=/bin:/usr/bin
|
|
|
|
TERM=screen
|
|
|
|
|
|
|
|
[ -z "$TEST_TMUX" ] && TEST_TMUX=$(readlink -f ../tmux)
|
|
|
|
TMUX="$TEST_TMUX -f/dev/null -Ltest"
|
|
|
|
$TMUX kill-server 2>/dev/null
|
|
|
|
|
|
|
|
$TMUX new -d -x40 -y10 \
|
|
|
|
"cat copy-mode-test.txt; printf '\e[9;15H'; cat" || exit 1
|
|
|
|
$TMUX set -g window-size manual || exit 1
|
|
|
|
|
|
|
|
# Enter copy mode and go to the first column of the first row.
|
|
|
|
$TMUX set-window-option -g mode-keys vi
|
|
|
|
$TMUX copy-mode
|
|
|
|
$TMUX send-keys -X history-top
|
|
|
|
$TMUX send-keys -X start-of-line
|
|
|
|
|
|
|
|
# Test that `previous-word` and `previous-space`
|
|
|
|
# do not go past the start of text.
|
|
|
|
$TMUX send-keys -X begin-selection
|
|
|
|
$TMUX send-keys -X previous-word
|
|
|
|
$TMUX send-keys -X previous-space
|
|
|
|
$TMUX send-keys -X previous-word
|
|
|
|
$TMUX send-keys -X copy-selection
|
|
|
|
[ "$($TMUX show-buffer)" = "A" ] || exit 1
|
|
|
|
|
|
|
|
# Test that `next-word-end` skips single-letter words
|
|
|
|
# and `previous-word` does not skip multi-letter words.
|
|
|
|
$TMUX send-keys -X next-word-end
|
|
|
|
$TMUX send-keys -X begin-selection
|
|
|
|
$TMUX send-keys -X previous-word
|
|
|
|
$TMUX send-keys -X copy-selection
|
|
|
|
[ "$($TMUX show-buffer)" = "line" ] || exit 1
|
|
|
|
|
|
|
|
# Test that `next-word-end` wraps around indented line breaks.
|
|
|
|
$TMUX send-keys -X next-word
|
|
|
|
$TMUX send-keys -X next-word
|
|
|
|
$TMUX send-keys -X begin-selection
|
|
|
|
$TMUX send-keys -X next-word-end
|
|
|
|
$TMUX send-keys -X next-word-end
|
|
|
|
$TMUX send-keys -X copy-selection
|
2024-05-13 11:42:14 +00:00
|
|
|
[ "$($TMUX show-buffer)" = "$(printf "words\n Indented")" ] || exit 1
|
2021-05-13 07:49:58 +00:00
|
|
|
|
|
|
|
# Test that `next-word` wraps around un-indented line breaks.
|
|
|
|
$TMUX send-keys -X next-word
|
|
|
|
$TMUX send-keys -X begin-selection
|
|
|
|
$TMUX send-keys -X next-word
|
|
|
|
$TMUX send-keys -X copy-selection
|
2024-05-13 11:42:14 +00:00
|
|
|
[ "$($TMUX show-buffer)" = "$(printf "line\nA")" ] || exit 1
|
2021-05-13 07:49:58 +00:00
|
|
|
|
|
|
|
# Test that `next-word-end` does not treat periods as letters.
|
|
|
|
$TMUX send-keys -X next-word
|
|
|
|
$TMUX send-keys -X begin-selection
|
|
|
|
$TMUX send-keys -X next-word-end
|
|
|
|
$TMUX send-keys -X copy-selection
|
|
|
|
[ "$($TMUX show-buffer)" = "line" ] || exit 1
|
|
|
|
|
|
|
|
# Test that `next-space-end` treats periods as letters.
|
|
|
|
$TMUX send-keys -X previous-word
|
|
|
|
$TMUX send-keys -X begin-selection
|
|
|
|
$TMUX send-keys -X next-space-end
|
|
|
|
$TMUX send-keys -X copy-selection
|
|
|
|
[ "$($TMUX show-buffer)" = "line..." ] || exit 1
|
|
|
|
|
|
|
|
# Test that `previous-space` and `next-space` treat periods as letters.
|
|
|
|
$TMUX send-keys -X previous-space
|
|
|
|
$TMUX send-keys -X begin-selection
|
|
|
|
$TMUX send-keys -X next-space
|
|
|
|
$TMUX send-keys -X copy-selection
|
2024-05-13 11:42:14 +00:00
|
|
|
[ "$($TMUX show-buffer)" = "$(printf "line...\n.")" ] || exit 1
|
2021-05-13 07:49:58 +00:00
|
|
|
|
|
|
|
# Test that `next-word` and `next-word-end` do not treat other symbols as letters.
|
|
|
|
$TMUX send-keys -X begin-selection
|
|
|
|
$TMUX send-keys -X next-word
|
|
|
|
$TMUX send-keys -X next-word
|
|
|
|
$TMUX send-keys -X next-word-end
|
|
|
|
$TMUX send-keys -X next-word-end
|
|
|
|
$TMUX send-keys -X copy-selection
|
|
|
|
[ "$($TMUX show-buffer)" = "... @nd then" ] || exit 1
|
|
|
|
|
|
|
|
# Test that `next-space` wraps around for indented symbols
|
|
|
|
$TMUX send-keys -X next-space
|
|
|
|
$TMUX send-keys -X begin-selection
|
|
|
|
$TMUX send-keys -X next-space
|
|
|
|
$TMUX send-keys -X copy-selection
|
2024-05-13 11:42:14 +00:00
|
|
|
[ "$($TMUX show-buffer)" = "$(printf "\$ym_bols[]{}\n ?")" ] || exit 1
|
2021-05-13 07:49:58 +00:00
|
|
|
|
|
|
|
# Test that `next-word-end` treats digits as letters
|
|
|
|
$TMUX send-keys -X next-word-end
|
|
|
|
$TMUX send-keys -X begin-selection
|
|
|
|
$TMUX send-keys -X next-word-end
|
|
|
|
$TMUX send-keys -X copy-selection
|
|
|
|
[ "$($TMUX show-buffer)" = "? 500xyz" ] || exit 1
|
|
|
|
|
|
|
|
# Test that `previous-word` treats digits as letters
|
|
|
|
$TMUX send-keys -X begin-selection
|
|
|
|
$TMUX send-keys -X previous-word
|
|
|
|
$TMUX send-keys -X copy-selection
|
|
|
|
[ "$($TMUX show-buffer)" = "500xyz" ] || exit 1
|
|
|
|
|
|
|
|
# Test that `next-word`, `next-word-end`,
|
|
|
|
# `next-space`, and `next-space-end` stop at the end of text.
|
|
|
|
$TMUX send-keys -X begin-selection
|
|
|
|
$TMUX send-keys -X next-word
|
|
|
|
$TMUX send-keys -X next-word-end
|
|
|
|
$TMUX send-keys -X next-word
|
|
|
|
$TMUX send-keys -X next-space
|
|
|
|
$TMUX send-keys -X next-space-end
|
|
|
|
$TMUX send-keys -X copy-selection
|
|
|
|
[ "$($TMUX show-buffer)" = "500xyz" ] || exit 1
|
|
|
|
|
|
|
|
$TMUX kill-server 2>/dev/null
|
|
|
|
exit 0
|