From 9644b09ebb1c37bc1a4898f41d3f414579f6c6a1 Mon Sep 17 00:00:00 2001 From: "flyingscorpio@arch-desktop" Date: Sat, 5 Sep 2020 16:50:56 +0200 Subject: [PATCH] Fix alias line --- dotfiles/zsh/zshrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotfiles/zsh/zshrc b/dotfiles/zsh/zshrc index 5f2dedc..d886f13 100644 --- a/dotfiles/zsh/zshrc +++ b/dotfiles/zsh/zshrc @@ -71,7 +71,7 @@ source "$HOME/github_dotfiles/zsh-vim-mode/zsh-vim-mode.plugin.zsh" # HELP COMMAND # By default in zsh, run-help is an alias to man, which is useless. # Here we load the zsh run-help function and name it help, just like in bash. -if command -v run-help >/dev/null 2>&1; then +if alias run-help >/dev/null 2>&1; then unalias run-help fi autoload -Uz run-help