2015-07-22 08:20:52 +00:00
|
|
|
if [[ -z $commands[thefuck] ]]; then
|
2018-06-18 19:04:42 +00: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 08:20:52 +00:00
|
|
|
fi
|
|
|
|
|
2015-07-23 11:10:31 +00:00
|
|
|
# Register alias
|
2021-06-12 03:57:04 +00:00
|
|
|
[[ ! -a $ZSH_CACHE_DIR/thefuck ]] && thefuck --alias > $ZSH_CACHE_DIR/thefuck
|
|
|
|
source $ZSH_CACHE_DIR/thefuck
|
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]
|
2019-08-19 10:14:22 +00: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
|