2015-07-22 01:20:52 -07:00
|
|
|
if [[ -z $commands[thefuck] ]]; then
|
2018-06-18 12:04:42 -07:00
|
|
|
echo 'thefuck is not installed, you should "pip install thefuck" or "brew install thefuck" first.'
|
|
|
|
echo 'See https://github.com/nvbn/thefuck#installation'
|
|
|
|
return 1
|
2015-07-22 01:20:52 -07:00
|
|
|
fi
|
|
|
|
|
2015-07-23 04:10:31 -07:00
|
|
|
# Register alias
|
2015-08-31 14:36:41 -07:00
|
|
|
eval "$(thefuck --alias)"
|
2015-07-22 01:20:52 -07:00
|
|
|
|
2015-07-18 05:10:56 -07:00
|
|
|
fuck-command-line() {
|
2015-07-30 05:04:58 -07:00
|
|
|
local FUCK="$(THEFUCK_REQUIRE_CONFIRMATION=0 thefuck $(fc -ln -1 | tail -n 1) 2> /dev/null)"
|
2015-07-22 01:20:52 -07:00
|
|
|
[[ -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
|