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