2015-07-22 16:20:52 +08:00
|
|
|
if [[ -z $commands[thefuck] ]]; then
|
2018-06-19 03:04:42 +08: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 16:20:52 +08:00
|
|
|
fi
|
|
|
|
|
2015-07-23 19:10:31 +08:00
|
|
|
# Register alias
|
2015-09-01 05:36:41 +08:00
|
|
|
eval "$(thefuck --alias)"
|
2015-07-22 16:20:52 +08:00
|
|
|
|
2015-07-18 20:10:56 +08:00
|
|
|
fuck-command-line() {
|
2015-07-30 20:04:58 +08:00
|
|
|
local FUCK="$(THEFUCK_REQUIRE_CONFIRMATION=0 thefuck $(fc -ln -1 | tail -n 1) 2> /dev/null)"
|
2015-07-22 16:20:52 +08:00
|
|
|
[[ -z $FUCK ]] && echo -n -e "\a" && return
|
2015-07-18 20:10:56 +08:00
|
|
|
BUFFER=$FUCK
|
|
|
|
zle end-of-line
|
|
|
|
}
|
|
|
|
zle -N fuck-command-line
|
|
|
|
# Defined shortcut keys: [Esc] [Esc]
|
2019-08-19 18:14:22 +08:00
|
|
|
bindkey -M emacs '\e\e' fuck-command-line
|
|
|
|
bindkey -M vicmd '\e\e' fuck-command-line
|
|
|
|
bindkey -M viins '\e\e' fuck-command-line
|