From 4780a0efc8678fb270ea4f4e0e4ce1fd25889b9e Mon Sep 17 00:00:00 2001 From: Michael Prokop Date: Mon, 13 Apr 2015 09:25:39 +0200 Subject: [PATCH] zshrc/grmlzshrc.t2t: update docs related to '-F' removal from ls aliases --- doc/grmlzshrc.t2t | 4 ++-- etc/zsh/zshrc | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/grmlzshrc.t2t b/doc/grmlzshrc.t2t index 62d412b..ab49647 100644 --- a/doc/grmlzshrc.t2t +++ b/doc/grmlzshrc.t2t @@ -901,7 +901,7 @@ Runs the function H-Glob() to expand or explain wildcards. : **j** (//jobs -l//) Prints status of jobs in the current shell session in long format. -: **l** (//ls -lF --color=auto//) +: **l** (//ls -l --color=auto//) Lists files in long output format with indicator for filetype appended to filename. If the terminal supports it, with colored output. @@ -923,7 +923,7 @@ Lists files in long colored output format. : **llog** (//$PAGER /var/log/syslog//) Opens syslog in pager. -: **ls** (//ls -CF --color=auto//) +: **ls** (//ls -C --color=auto//) Lists directory, entries are listed by columns and an indicator for file type is appended to each file name. Additionally the output is colored, if the terminal supports it. diff --git a/etc/zsh/zshrc b/etc/zsh/zshrc index 01edce7..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,7 +2449,7 @@ 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' -- 2.1.4