this has to do with how PREFIX is set in completion scripts when running make

This commit is contained in:
Mattias Andrée 2012-08-19 20:12:57 +02:00
parent f4f11c9067
commit 285fbf3ff5
2 changed files with 3 additions and 3 deletions

View file

@ -3,8 +3,8 @@
# #
# Author: Elis Axelsson <etu AT elis DOT nu> # Author: Elis Axelsson <etu AT elis DOT nu>
set -g ponies (/usr/bin/ponysay.py --onelist) set -g ponies ('/usr/bin/ponysay.py' --onelist)
set -g quoters (/usr/bin/ponysay.py --quoters) set -g quoters ('/usr/bin/ponysay.py' --quoters)
complete --command ponysay --short-option h --long-option help --description 'help of ponysay' complete --command ponysay --short-option h --long-option help --description 'help of ponysay'

View file

@ -4,7 +4,7 @@ _shortopts=(
'-h[Show this help and exit]' '-h[Show this help and exit]'
'-l[list ponyfiles]' '-l[list ponyfiles]'
'-L[list ponyfiles with alternatives]' '-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]' '-q[Select ponies for MLP:FiM quotes]'
'-W[The screen column where the message should be wrapped]' '-W[The screen column where the message should be wrapped]'
) )