This commit is contained in:
Anthony Cicchetti 2019-09-20 14:31:53 -04:00
parent 0b49a29872
commit 3130ff5b87
2 changed files with 33 additions and 1 deletions

23
zsh/funcs/fzf.funcs Normal file
View file

@ -0,0 +1,23 @@
# from the fzf examples wiki
bind '"\C-r": "\C-x1\e^\er"'
bind -x '"\C-x1": __fzf_history';
__fzf_history ()
{
__ehc $(history | fzf --tac --tiebreak=index | perl -ne 'm/^\s*([0-9]+)/ and print "!$1"')
}
__ehc()
{
if
[[ -n $1 ]]
then
bind '"\er": redraw-current-line'
bind '"\e^": magic-space'
READLINE_LINE=${READLINE_LINE:+${READLINE_LINE:0:READLINE_POINT}}${1}${READLINE_LINE:+${READLINE_LINE:READLINE_POINT}}
READLINE_POINT=$(( READLINE_POINT + ${#1} ))
else
bind '"\er":'
bind '"\e^":'
fi
}

View file

@ -43,7 +43,6 @@ source $HOME/.antigen/antigen.zsh
antigen use oh-my-zsh
antigen bundle git
antigen bundle command-not-found
antigen bundle vi-mode
antigen bundle zsh-users/zsh-syntax-highlighting
antigen bundle zsh-users/zsh-completions
@ -155,6 +154,16 @@ else
touch $HOME/.zshsrc
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')
}
export PATH="$PATH:$HOME/.anyenv/bin"
eval "$(anyenv init -)"
export PATH="$(yarn global bin):$PATH"