remove dup function definition
This commit is contained in:
parent
78b3695dec
commit
2178cfba23
17
files/.zshrc
17
files/.zshrc
|
@ -89,20 +89,3 @@ source $ZSH/oh-my-zsh.sh
|
||||||
# Example aliases
|
# Example aliases
|
||||||
# alias zshconfig="mate ~/.zshrc"
|
# alias zshconfig="mate ~/.zshrc"
|
||||||
# alias ohmyzsh="mate ~/.oh-my-zsh"
|
# alias ohmyzsh="mate ~/.oh-my-zsh"
|
||||||
|
|
||||||
# Remove duplicate when using Ctrl+R
|
|
||||||
# https://github.com/junegunn/fzf/issues/626
|
|
||||||
__fzf_history__() (
|
|
||||||
local line
|
|
||||||
shopt -u nocaseglob nocasematch
|
|
||||||
line=$(
|
|
||||||
HISTTIMEFORMAT= history | tac | sort --key=2.1 -bus | sort -n |
|
|
||||||
FZF_DEFAULT_OPTS="--height ${FZF_TMUX_HEIGHT:-40%} $FZF_DEFAULT_OPTS --tac -n2..,.. --tiebreak=index --bind=ctrl-r:toggle-sort $FZF_CTRL_R_OPTS +m" $(__fzfcmd) |
|
|
||||||
command grep '^ *[0-9]') &&
|
|
||||||
if [[ $- =~ H ]]; then
|
|
||||||
sed 's/^ *\([0-9]*\)\** .*/!\1/' <<< "$line"
|
|
||||||
else
|
|
||||||
sed 's/^ *\([0-9]*\)\** *//' <<< "$line"
|
|
||||||
fi
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue