aboutsummaryrefslogtreecommitdiff
path: root/scripts/tmux_session_fzf
diff options
context:
space:
mode:
authorCody Hiar <cody@hiar.ca>2021-05-07 14:10:08 -0600
committerCody Hiar <cody@hiar.ca>2021-05-07 14:10:08 -0600
commitf8716663177cf5767c0093cf75418719a46587d7 (patch)
treef17ad955e0421940bef3872631926ee3aab5a02e /scripts/tmux_session_fzf
parent0b1febe9f810681a78e1dff3e2496f1dbe7692e4 (diff)
Comment out fzf-tmux not working right now
Diffstat (limited to 'scripts/tmux_session_fzf')
-rwxr-xr-xscripts/tmux_session_fzf4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/tmux_session_fzf b/scripts/tmux_session_fzf
index 140a474..4f5a96e 100755
--- a/scripts/tmux_session_fzf
+++ b/scripts/tmux_session_fzf
@@ -12,9 +12,9 @@ get_active_pane(){
tmux list-windows -t "${SESSION}" | grep '(active)' | cut -c 1
}
-TARGET=$(tmux ls | awk -F':' '{print $1}' | fzf-tmux -h)
+TARGET=$(tmux ls | awk -F':' '{print $1}' | fzf-tmux)
if [[ -n "${TARGET}" ]]; then
WINDOW=$(get_active_pane "${TARGET}")
echo "${TARGET}:${WINDOW}" >> ~/tmux.log
- tmux switch-client -t "${TARGET}:${WINDOW}"
+ tmux switch-client -t "${TARGET}:${WINDOW}"
fi