diff --git a/functions/_fzf_search_git_log.fish b/functions/_fzf_search_git_log.fish index 2f0a521..f5de078 100644 --- a/functions/_fzf_search_git_log.fish +++ b/functions/_fzf_search_git_log.fish @@ -10,7 +10,7 @@ function _fzf_search_git_log --description "Search the output of git log and pre git log --no-show-signature --color=always --format=format:$fzf_git_log_format --date=short | \ _fzf_wrapper --ansi \ --multi \ - --tiebreak=index \ + --scheme=history \ --prompt="Search Git Log> " \ --preview='git show --color=always --stat --patch {1}' \ --query=(commandline --current-token) \ diff --git a/functions/_fzf_search_history.fish b/functions/_fzf_search_history.fish index 4b8e3c8..8b9adfd 100644 --- a/functions/_fzf_search_history.fish +++ b/functions/_fzf_search_history.fish @@ -16,7 +16,7 @@ function _fzf_search_history --description "Search command history. Replace the _fzf_wrapper --read0 \ --print0 \ --multi \ - --tiebreak=index \ + --scheme=history \ --prompt="Search History> " \ --query=(commandline) \ --preview="echo -- {} | string replace --regex '^.*? │ ' '' | fish_indent --ansi" \