mirror of
				https://github.com/tmux/tmux.git
				synced 2025-11-04 09:26:05 +00:00 
			
		
		
		
	Use printf not echo -e, from Joyce Lin.
This commit is contained in:
		@@ -42,14 +42,14 @@ $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
 | 
			
		||||
[ "$($TMUX show-buffer)" = "$(echo -e "words\n        Indented")" ] || exit 1
 | 
			
		||||
[ "$($TMUX show-buffer)" = "$(printf "words\n        Indented")" ] || exit 1
 | 
			
		||||
 | 
			
		||||
# 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
 | 
			
		||||
[ "$($TMUX show-buffer)" = "$(echo -e "line\n")" ] || exit 1
 | 
			
		||||
[ "$($TMUX show-buffer)" = "$(printf "line\n")" ] || exit 1
 | 
			
		||||
 | 
			
		||||
# Test that `next-word-end` treats periods as letters.
 | 
			
		||||
$TMUX send-keys -X next-word
 | 
			
		||||
@@ -63,14 +63,14 @@ $TMUX send-keys -X previous-word
 | 
			
		||||
$TMUX send-keys -X begin-selection
 | 
			
		||||
$TMUX send-keys -X next-word
 | 
			
		||||
$TMUX send-keys -X copy-selection
 | 
			
		||||
[ "$($TMUX show-buffer)" = "$(echo -e "line...\n")" ] || exit 1
 | 
			
		||||
[ "$($TMUX show-buffer)" = "$(printf "line...\n")" ] || 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
 | 
			
		||||
[ "$($TMUX show-buffer)" = "$(echo -e "line...\n")" ] || exit 1
 | 
			
		||||
[ "$($TMUX show-buffer)" = "$(printf "line...\n")" ] || exit 1
 | 
			
		||||
 | 
			
		||||
# Test that `next-word` and `next-word-end` treat other symbols as letters.
 | 
			
		||||
$TMUX send-keys -X begin-selection
 | 
			
		||||
@@ -87,7 +87,7 @@ $TMUX send-keys -X previous-word
 | 
			
		||||
$TMUX send-keys -X begin-selection
 | 
			
		||||
$TMUX send-keys -X next-word
 | 
			
		||||
$TMUX send-keys -X copy-selection
 | 
			
		||||
[ "$($TMUX show-buffer)" = "$(echo -e "\$ym_bols[]{}\n ")" ] || exit 1
 | 
			
		||||
[ "$($TMUX show-buffer)" = "$(printf "\$ym_bols[]{}\n ")" ] || exit 1
 | 
			
		||||
 | 
			
		||||
# Test that `next-word-end` treats digits as letters
 | 
			
		||||
$TMUX send-keys -X next-word-end
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user