aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/functions/pwd.fish
diff options
context:
space:
mode:
Diffstat (limited to 'share/functions/pwd.fish')
-rw-r--r--share/functions/pwd.fish4
1 files changed, 2 insertions, 2 deletions
diff --git a/share/functions/pwd.fish b/share/functions/pwd.fish
index 0369b195..6d1c3f58 100644
--- a/share/functions/pwd.fish
+++ b/share/functions/pwd.fish
@@ -4,11 +4,11 @@
#
if test (uname) = Darwin
- function pwd -d (N_ "Print working directory")
+ function pwd --description "Print working directory"
echo $PWD | sed -e 's|/private||' -e "s|^$HOME|~|"
end
else
- function pwd -d (N_ "Print working directory")
+ function pwd --description "Print working directory"
echo $PWD | sed -e "s|^$HOME|~|"
end
end \ No newline at end of file