fix(plugins): cache thefuck aliases (#5522)

master
Francesco Giannelli 5 years ago committed by GitHub
parent 94ea7b4516
commit a2e6a85bf3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      plugins/thefuck/thefuck.plugin.zsh

@ -5,7 +5,8 @@ if [[ -z $commands[thefuck] ]]; then
fi
# Register alias
eval "$(thefuck --alias)"
[[ ! -a $ZSH_CACHE_DIR/thefuck ]] && thefuck --alias > $ZSH_CACHE_DIR/thefuck
source $ZSH_CACHE_DIR/thefuck
fuck-command-line() {
local FUCK="$(THEFUCK_REQUIRE_CONFIRMATION=0 thefuck $(fc -ln -1 | tail -n 1) 2> /dev/null)"

Loading…
Cancel
Save