cleanup in alias handling

pull/145/head
romkatv 5 years ago
parent ef041b4364
commit b4706cbe43

@ -10,54 +10,43 @@
# https://github.com/robbyrussell/oh-my-zsh/blob/74177c5320b2a1b2f8c4c695c05984b57fd7c6ea/themes/agnoster.zsh-theme # https://github.com/robbyrussell/oh-my-zsh/blob/74177c5320b2a1b2f8c4c695c05984b57fd7c6ea/themes/agnoster.zsh-theme
################################################################ ################################################################
################################################################ if [[ -o 'aliases' ]]; then
# For basic documentation, please refer to the README.md in the 'builtin' 'unsetopt' 'aliases'
# top-level directory. local _p9k_restore_aliases=1
################################################################ else
local _p9k_restore_aliases=0
## Turn on for Debugging fi
#PS4='%s%f%b%k%F{blue}%{λ%}%L %F{240}%N:%i%(?.. %F{red}%?) %1(_.%F{yellow}%-1_ .)%s%f%b%k '
#zstyle ':vcs_info:*+*:*' debug true
#set -o xtrace
() { () {
'builtin' 'emulate' '-L' 'zsh' emulate -L zsh
'builtin' 'local' "_p9k_aliases=$( if (( $+_p9k_sourced )); then
'builtin' 'alias' '-rL' prompt_powerlevel9k_setup
'builtin' 'alias' '-gL' return
'builtin' 'alias' '-sL')" fi
typeset -gr _p9k_sourced=1
'builtin' 'unalias' '-m' '*' typeset -g _p9k_installation_dir=''
{ if [[ -n $POWERLEVEL9K_INSTALLATION_DIR ]]; then
if (( $+_p9k_sourced )); then _p9k_installation_dir=${POWERLEVEL9K_INSTALLATION_DIR:A}
prompt_powerlevel9k_setup else
return if [[ ${(%):-%N} == '(eval)' ]]; then
fi if [[ $0 == '-antigen-load' && -r powerlevel9k.zsh-theme ]]; then
typeset -gr _p9k_sourced=1 # Antigen uses eval to load things so it can change the plugin (!!)
typeset -g _p9k_installation_dir='' # https://github.com/zsh-users/antigen/issues/581
_p9k_installation_dir=$PWD
if [[ -n $POWERLEVEL9K_INSTALLATION_DIR ]]; then
_p9k_installation_dir=${POWERLEVEL9K_INSTALLATION_DIR:A}
else
if [[ ${(%):-%N} == '(eval)' ]]; then
if [[ $0 == '-antigen-load' && -r powerlevel9k.zsh-theme ]]; then
# Antigen uses eval to load things so it can change the plugin (!!)
# https://github.com/zsh-users/antigen/issues/581
_p9k_installation_dir=$PWD
else
>&2 print -P '%F{red}[ERROR]%f Powerlevel10k cannot figure out its installation directory.'
>&2 print -P 'Please set %F{green}POWERLEVEL9K_INSTALLATION_DIR.%f'
return 1
fi
else else
_p9k_installation_dir=${${(%):-%x}:A:h} >&2 print -P '%F{red}[ERROR]%f Powerlevel10k cannot figure out its installation directory.'
>&2 print -P 'Please set %F{green}POWERLEVEL9K_INSTALLATION_DIR.%f'
return 1
fi fi
else
_p9k_installation_dir=${${(%):-%x}:A:h}
fi fi
fi
source $_p9k_installation_dir/internal/p10k.zsh source $_p9k_installation_dir/internal/p10k.zsh
} always {
eval "$_p9k_aliases"
}
} }
(( ! _p9k_restore_aliases )) || setopt aliases
'builtin' 'unset' '_p9k_restore_aliases'

Loading…
Cancel
Save