diff options
author | Cody Hiar <cody@hiar.ca> | 2021-05-07 14:10:08 -0600 |
---|---|---|
committer | Cody Hiar <cody@hiar.ca> | 2021-05-07 14:10:08 -0600 |
commit | f8716663177cf5767c0093cf75418719a46587d7 (patch) | |
tree | f17ad955e0421940bef3872631926ee3aab5a02e /scripts | |
parent | 0b1febe9f810681a78e1dff3e2496f1dbe7692e4 (diff) |
Comment out fzf-tmux not working right now
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/tmux_session_fzf | 4 |
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 |