From a1534869447f092371147e927304c5ad4967f516 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=84=B3ichiel=20=E2=84=9Boos?= Date: Thu, 11 May 2017 12:08:35 +0200 Subject: [PATCH] Remove negation for ggrep Since it was not part of this patch --- modules/utility/init.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/utility/init.zsh b/modules/utility/init.zsh index 6110705..fad2ea0 100644 --- a/modules/utility/init.zsh +++ b/modules/utility/init.zsh @@ -47,7 +47,7 @@ if [[ ! -z ${terminfo[colors]} ]] && (( ${terminfo[colors]} >= 8 )); then export GREP_COLORS="mt=${GREP_COLOR}" #GNU fi if [[ ${OSTYPE} == openbsd* ]]; then - if ! (( ${+commands[ggrep]} )); then + if (( ${+commands[ggrep]} )); then alias grep='ggrep --color=auto' fi else