aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/functions/ls.fish
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2007-01-16 11:29:18 +1000
committerGravatar axel <axel@liljencrantz.se>2007-01-16 11:29:18 +1000
commit7492b6cdb32cdc73ec117aa53d2568758a9a3950 (patch)
tree2bb731befc8cb43405d6b6a37b2c52a9b951e67e /share/functions/ls.fish
parent34e27ff4c216e2d379afba19fed2761a684697d8 (diff)
Make all descriptions for function calls use the implicit translation from the previous patch instead of explicitly using N_
darcs-hash:20070116012918-ac50b-c1c0df64333ad910ca81dbc86ad193ece6680722.gz
Diffstat (limited to 'share/functions/ls.fish')
-rw-r--r--share/functions/ls.fish4
1 files changed, 2 insertions, 2 deletions
diff --git a/share/functions/ls.fish b/share/functions/ls.fish
index 6fe0300d..f4cdb9a2 100644
--- a/share/functions/ls.fish
+++ b/share/functions/ls.fish
@@ -4,7 +4,7 @@
if command ls --version 1>/dev/null 2>/dev/null
# This is GNU ls
- function ls -d (N_ "List contents of directory")
+ function ls --description "List contents of directory"
set -l param --color=auto
if isatty 1
set param $param --indicator-style=classify
@@ -21,7 +21,7 @@ if command ls --version 1>/dev/null 2>/dev/null
else
# BSD, OS X and a few more support colors through the -G switch instead
if command ls / -G 1>/dev/null 2>/dev/null
- function ls -d (N_ "List contents of directory")
+ function ls --description "List contents of directory"
command ls -G $argv
end
end