X-Git-Url: https://git.grml.org/?a=blobdiff_plain;f=etc%2Fzsh%2Fzshrc;h=33524bdf6cba96c12b58ccab16aa6fe59a612fa7;hb=4780a0efc8678fb270ea4f4e0e4ce1fd25889b9e;hp=d106274355aa162b029bc6821015afc648449cc4;hpb=2065da59e373daa1747b580b0a48dce8b075a0d6;p=grml-etc-core.git diff --git a/etc/zsh/zshrc b/etc/zsh/zshrc index d106274..33524bd 100644 --- a/etc/zsh/zshrc +++ b/etc/zsh/zshrc @@ -2441,7 +2441,7 @@ fi # do we have GNU ls with color-support? if [[ "$TERM" != dumb ]]; then - #a1# List files with colors (\kbd{ls -F \ldots}) + #a1# List files with colors (\kbd{ls \ldots}) alias ls="command ls ${ls_options:+${ls_options[*]}}" #a1# List all files, with colors (\kbd{ls -la \ldots}) alias la="command ls -la ${ls_options:+${ls_options[*]}}" @@ -2449,13 +2449,13 @@ if [[ "$TERM" != dumb ]]; then alias ll="command ls -l ${ls_options:+${ls_options[*]}}" #a1# List files with long colored list, human readable sizes (\kbd{ls -hAl \ldots}) alias lh="command ls -hAl ${ls_options:+${ls_options[*]}}" - #a1# List files with long colored list, append qualifier to filenames (\kbd{ls -lF \ldots})\\&\quad(\kbd{/} for directories, \kbd{@} for symlinks ...) + #a1# List files with long colored list, append qualifier to filenames (\kbd{ls -l \ldots})\\&\quad(\kbd{/} for directories, \kbd{@} for symlinks ...) alias l="command ls -l ${ls_options:+${ls_options[*]}}" else alias la='command ls -la' alias ll='command ls -l' alias lh='command ls -hAl' - alias l='command ls -lF' + alias l='command ls -l' fi alias mdstat='cat /proc/mdstat'