From: Simon Ruderich Date: Thu, 11 Mar 2010 16:06:48 +0000 (+0100) Subject: shell/aliases: Fix colors in normal ls. X-Git-Url: https://ruderich.org/simon/gitweb/?p=config%2Fdotfiles.git;a=commitdiff_plain;h=703b7ba5da1f5b0aedef0bdb2a29a006f6111b28 shell/aliases: Fix colors in normal ls. This bug was introduced in 0b47efd8a633ce89b988f5cd39410b8cfe3c37ae where I forgot to add the -G. --- diff --git a/shell/aliases b/shell/aliases index 8edbc3f..d9e827e 100644 --- a/shell/aliases +++ b/shell/aliases @@ -50,7 +50,7 @@ if [ x$ls_color = xgnu ]; then # Normal ls with colors. elif [ x$ls_color = xcli ]; then ls() { - CLICOLOR_FORCE=1 my_ls $* + CLICOLOR_FORCE=1 my_ls -G $* } # Simple ls with no colors. else