From b1716f9bbefb631a132e6f6aac273ca4da901891 Mon Sep 17 00:00:00 2001 From: Timothy DeHerrera Date: Sun, 15 Dec 2019 00:08:38 -0700 Subject: [PATCH] zsh: fix infinite recursion --- profiles/develop/zsh/zshrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiles/develop/zsh/zshrc b/profiles/develop/zsh/zshrc index 3687369b..c5dd877b 100644 --- a/profiles/develop/zsh/zshrc +++ b/profiles/develop/zsh/zshrc @@ -94,7 +94,7 @@ man () { LESS_TERMCAP_so=$'\e[01;44;33m' \ LESS_TERMCAP_ue=$'\e[0m' \ LESS_TERMCAP_us=$'\e[01;32m' \ - man "$@" + command man "$@" } # pipe rg into less with colors