summaryrefslogtreecommitdiffstats
path: root/bin/fzf-tmux
diff options
context:
space:
mode:
authorδΊ”ζ‰€ε’Œε“‰ <ketsume0211@gmail.com>2017-04-01 11:09:46 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2017-04-01 11:09:46 +0900
commitbbe696e92522239fe714ed8001887e0125d88f36 (patch)
treef989f8d1a0c38f5f172c876291908f8db8aeaa14 /bin/fzf-tmux
parent5d12f523a30ee70979b2967d375f62400301b13b (diff)
[fzf-tmux] Fix issue with zoomed pane on fish (#891)
Diffstat (limited to 'bin/fzf-tmux')
-rwxr-xr-xbin/fzf-tmux2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/fzf-tmux b/bin/fzf-tmux
index 95614840..d7185a26 100755
--- a/bin/fzf-tmux
+++ b/bin/fzf-tmux
@@ -121,7 +121,7 @@ args+=("--no-height")
if tmux list-panes -F '#F' | grep -q Z; then
zoomed=1
original_window=$(tmux display-message -p "#{window_id}")
- tmp_window=$(tmux new-window -d -P -F "#{window_id}" "bash -c 'while :; do for c in \\| / - \\\\; do sleep 0.2; printf \"\\r\$c fzf-tmux is running\\r\"; done; done'")
+ tmp_window=$(tmux new-window -d -P -F "#{window_id}" "bash -c 'while :; do for c in \\| / - '\\;' do sleep 0.2; printf \"\\r\$c fzf-tmux is running\\r\"; done; done'")
tmux swap-pane -t $tmp_window \; select-window -t $tmp_window
fi