diff options
author | Tharre <tharre3@gmail.com> | 2018-10-25 03:04:07 +0200 |
---|---|---|
committer | Tharre <tharre3@gmail.com> | 2018-10-25 03:11:12 +0200 |
commit | 660317908478da37bc74a7ec8e8df3a1531d1b8a (patch) | |
tree | d4d1c9e32bc033147ebdb8f4bf6effbca6ab1b97 | |
parent | c8d73e271ae6ae39ef975cc637c4c16287d61ae6 (diff) | |
download | dotfiles-660317908478da37bc74a7ec8e8df3a1531d1b8a.tar.gz dotfiles-660317908478da37bc74a7ec8e8df3a1531d1b8a.tar.xz dotfiles-660317908478da37bc74a7ec8e8df3a1531d1b8a.zip |
zsh: fix "no such hash table element: run-help"
~/.zshrc:unalias:9 no such hash table element: run-help
-rw-r--r-- | .zshrc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -6,7 +6,7 @@ compinit -d "${XDG_CONFIG_HOME:-$HOME/.config}/zcompdump" ## aliases autoload -Uz run-help -unalias run-help +unalias run-help &> /dev/null alias help=run-help alias ls='ls --color=auto' alias lsa='ls -lah' |