2015-07-22 01:20:52 -07:00
|
|
|
if [[ -z $commands[thefuck] ]]; then
|
|
|
|
echo 'thefuck is not installed, you should "pip install thefuck" first'
|
|
|
|
return -1
|
|
|
|
fi
|
|
|
|
|
2015-07-23 04:10:31 -07:00
|
|
|
# Register alias
|
|
|
|
eval "$(thefuck-alias)"
|
2015-07-22 01:20:52 -07:00
|
|
|
|
2015-07-18 05:10:56 -07:00
|
|
|
fuck-command-line() {
|
2015-07-22 01:20:52 -07:00
|
|
|
FUCK="$(thefuck $(fc -ln -1 | tail -n 1) 2> /dev/null)"
|
|
|
|
[[ -z $FUCK ]] && echo -n -e "\a" && return
|
2015-07-18 05:10:56 -07:00
|
|
|
BUFFER=$FUCK
|
|
|
|
zle end-of-line
|
|
|
|
}
|
|
|
|
zle -N fuck-command-line
|
|
|
|
# Defined shortcut keys: [Esc] [Esc]
|
|
|
|
bindkey "\e\e" fuck-command-line
|