summaryrefslogtreecommitdiffstats
path: root/.zshrc
diff options
context:
space:
mode:
authorTharre <tharre3@gmail.com>2018-10-25 03:04:07 +0200
committerTharre <tharre3@gmail.com>2018-10-25 03:11:12 +0200
commit660317908478da37bc74a7ec8e8df3a1531d1b8a (patch)
treed4d1c9e32bc033147ebdb8f4bf6effbca6ab1b97 /.zshrc
parentc8d73e271ae6ae39ef975cc637c4c16287d61ae6 (diff)
downloaddotfiles-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
Diffstat (limited to '.zshrc')
-rw-r--r--.zshrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/.zshrc b/.zshrc
index 1b9ce1c..0aeede7 100644
--- a/.zshrc
+++ b/.zshrc
@@ -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'