aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--completion/fish-completion.fish4
-rw-r--r--completion/zsh-completion.zsh2
2 files changed, 3 insertions, 3 deletions
diff --git a/completion/fish-completion.fish b/completion/fish-completion.fish
index 6cd8b99..1c6c57a 100644
--- a/completion/fish-completion.fish
+++ b/completion/fish-completion.fish
@@ -3,8 +3,8 @@
#
# Author: Elis Axelsson <etu AT elis DOT nu>
-set -g ponies (/usr/bin/ponysay.py --onelist)
-set -g quoters (/usr/bin/ponysay.py --quoters)
+set -g ponies ('/usr/bin/ponysay.py' --onelist)
+set -g quoters ('/usr/bin/ponysay.py' --quoters)
complete --command ponysay --short-option h --long-option help --description 'help of ponysay'
diff --git a/completion/zsh-completion.zsh b/completion/zsh-completion.zsh
index 5222d38..2124380 100644
--- a/completion/zsh-completion.zsh
+++ b/completion/zsh-completion.zsh
@@ -4,7 +4,7 @@ _shortopts=(
'-h[Show this help and exit]'
'-l[list ponyfiles]'
'-L[list ponyfiles with alternatives]'
- '-f[Select a pony (either a filename or a ponyname]: :_path_files -W "/usr/share/ponysay/ponies" -g "*(\:r)"'
+ '-f[Select a pony (either a filename or a ponyname]: :_path_files -W '/usr/share/ponysay/ponies' -g "*(\:r)"'
'-q[Select ponies for MLP:FiM quotes]'
'-W[The screen column where the message should be wrapped]'
)