junegunn / fzf

:cherry_blossom: A command-line fuzzy finder
https://junegunn.github.io/fzf/
MIT License
61.95k stars 2.34k forks source link

fix: use builtins for cd and history in fish #3830

Closed LangLangBart closed 1 month ago

LangLangBart commented 1 month ago

description

In addition to the cd command, I deemed history to be treated as well.

# Exemplary fish command history alias
function history
    builtin history --show-time='%F %T '
end
# For a list of all builtins
builtin -n
junegunn commented 1 month ago

Thanks!