2015-07-22 10:20:52 +02:00
|
|
|
if [[ -z $commands[thefuck] ]]; then
|
2018-06-18 21:04:42 +02: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 10:20:52 +02:00
|
|
|
fi
|
|
|
|
|
2015-07-23 13:10:31 +02:00
|
|
|
# Register alias
|
2021-06-12 05:57:04 +02:00
|
|
|
[[ ! -a $ZSH_CACHE_DIR/thefuck ]] && thefuck --alias > $ZSH_CACHE_DIR/thefuck
|
|
|
|
source $ZSH_CACHE_DIR/thefuck
|
2015-07-22 10:20:52 +02:00
|
|
|
|
2015-07-18 14:10:56 +02:00
|
|
|
fuck-command-line() {
|
2015-07-30 14:04:58 +02:00
|
|
|
local FUCK="$(THEFUCK_REQUIRE_CONFIRMATION=0 thefuck $(fc -ln -1 | tail -n 1) 2> /dev/null)"
|
2015-07-22 10:20:52 +02:00
|
|
|
[[ -z $FUCK ]] && echo -n -e "\a" && return
|
2015-07-18 14:10:56 +02:00
|
|
|
BUFFER=$FUCK
|
|
|
|
zle end-of-line
|
|
|
|
}
|
|
|
|
zle -N fuck-command-line
|
|
|
|
# Defined shortcut keys: [Esc] [Esc]
|
2019-08-19 12:14:22 +02: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
|