From f1e7200df793da093f2b04f732e1554453940074 Mon Sep 17 00:00:00 2001 From: Cam Spiers Date: Sun, 2 Feb 2020 05:03:10 +1300 Subject: [PATCH] Remove heights and reverse of layout --- tmuxinator-fzf-start.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tmuxinator-fzf-start.sh b/tmuxinator-fzf-start.sh index b4d272b..dfe3b41 100755 --- a/tmuxinator-fzf-start.sh +++ b/tmuxinator-fzf-start.sh @@ -31,7 +31,7 @@ # Allow the user to select projects via fzf SELECTED_PROJECTS=$(tmuxinator list -n | tail -n +2 | - fzf --prompt="Project: " -m -1 -q "$1" --reverse --height 50%) + fzf --prompt="Project: " -m -1 -q "$1") if [ -n "$SELECTED_PROJECTS" ]; then # Set the IFS to \n to iterate over \n delimited projects @@ -44,7 +44,7 @@ if [ -n "$SELECTED_PROJECTS" ]; then # If inside tmux then select session to switch, otherwise just attach if [ -n "$TMUX" ]; then - SESSION=$(tmux list-sessions -F "#S" | fzf --prompt="Session: " --reverse --height 50%) + SESSION=$(tmux list-sessions -F "#S" | fzf --prompt="Session: ") if [ -n "$SESSION" ]; then tmux switch-client -t "$SESSION" fi