Completions (mostly): s/.../…/g

This commit is contained in:
Aaron Gyes
2016-07-09 10:07:59 -07:00
parent 0ef811f8b8
commit 6e0521e23f
10 changed files with 14 additions and 15 deletions

View File

@@ -1,5 +1,5 @@
function popd --description "Pop dir from stack"
function popd --description "Pop directory from the stack and cd to it"
if count $argv >/dev/null
switch $argv[1]
case -h --h --he --hel --help
@@ -11,10 +11,9 @@ function popd --description "Pop dir from stack"
if test $dirstack[1]
cd $dirstack[1]
else
printf (_ "%s: Directory stack is empty...\n") popd
printf (_ "%s: Directory stack is empty\n") popd 1>&2
return 1
end
set -e dirstack[1]
end