Fixed up zsh (but only for linux, cause macos sux)

This commit is contained in:
Anthony Cicchetti 2019-09-22 14:44:21 -04:00
parent 3130ff5b87
commit 9b7b09183c

View file

@ -155,14 +155,9 @@ else
fi
function fzf_hist() {
local sed_cmd
if [[ $(uname -s) == "Darwin" ]]; then
sed_cmd='sed -E'
else
sed_cmd='sed -r'
fi
print -z $( ([ -n "$ZSH_NAME" ] && fc -l 1 || history) | fzf +s --tac | $($sed_cmd 's/ *[0-9]*\*? *//') | ${sed_cmd} 's/\\/\\\\/g')
print -z $( ([ -n "$ZSH_NAME" ] && fc -l 1 || history) | fzf +s --tac | sed -r 's/ *[0-9]*\*? *//' | sed -r 's/\\/\\\\/g')
}
bindkey -s "\C-r" "\eifzf_hist\n"
export PATH="$PATH:$HOME/.anyenv/bin"
eval "$(anyenv init -)"