diff --git a/script-resources/common_script_utils.py b/script-resources/common_script_utils.py index 4d13e50..239eb11 100644 --- a/script-resources/common_script_utils.py +++ b/script-resources/common_script_utils.py @@ -19,7 +19,7 @@ def run_chooser(choices: Iterable[str], prompt: str = None, async_read: bool = F process_args = [ "fzf", "--with-nth=2..", - "--height=40%", + "--height=50%", "--reverse", "--tiebreak=index", ] diff --git a/scripts/fzf-search-manpage b/scripts/fzf-search-manpage index c567225..1199656 100755 --- a/scripts/fzf-search-manpage +++ b/scripts/fzf-search-manpage @@ -1,4 +1,4 @@ #!/usr/bin/env sh set -eu # https://superuser.com/a/207474 -apropos . | fzf --height=40% --reverse --no-multi --tiebreak=begin --query="$*" | sed -n 's/^\([^ ]\+\) \?(\([^)]\+\)).*$/\2 \1/p' +apropos . | fzf --no-multi --tiebreak=begin --query="$*" | sed -n 's/^\([^ ]\+\) \?(\([^)]\+\)).*$/\2 \1/p' diff --git a/zsh/env.zsh b/zsh/env.zsh index 34e23a0..baf1882 100644 --- a/zsh/env.zsh +++ b/zsh/env.zsh @@ -33,4 +33,4 @@ unset jq_colors export HOMEBREW_NO_AUTO_UPDATE=1 # https://github.com/junegunn/fzf/blob/764316a53d0eb60b315f0bbcd513de58ed57a876/src/tui/tui.go#L496-L515 -export FZF_DEFAULT_OPTS="--color=16 --height=40% --reverse" +export FZF_DEFAULT_OPTS="--color=16"