mirror of
https://github.com/erkin/ponysay.git
synced 2024-11-25 22:07:58 +01:00
Made the fish-completion aware of the ttyponies, and cleaned it up
This commit is contained in:
parent
9820d208a1
commit
1334d466b5
1 changed files with 18 additions and 6 deletions
|
@ -4,21 +4,33 @@
|
||||||
#
|
#
|
||||||
# Author: Elis Axelsson <etu AT elis DOT nu>
|
# Author: Elis Axelsson <etu AT elis DOT nu>
|
||||||
|
|
||||||
|
if test $TERM = "linux"
|
||||||
if test -d /usr/share/ponysay/ponies/
|
set -g systempath "/usr/share/ponysay/ttyponies/"
|
||||||
set -g systemponies (ls --color=no /usr/share/ponysay/ponies/ | sed 's/\.pony/\t Pony from \/usr\/share\/ponysay\/ponies\//')
|
set -g homepath "~/.local/share/ponysay/ttyponies/"
|
||||||
|
else
|
||||||
|
set -g systempath "/usr/share/ponysay/ponies/"
|
||||||
|
set -g homepath "~/.local/share/ponysay/ponies/"
|
||||||
end
|
end
|
||||||
|
|
||||||
if test -d ~/.local/share/ponysay/ponies/
|
|
||||||
set -g homeponies (ls --color=no ~/.local/share/ponysay/ponies/ | sed 's/\.pony/\t Pony from ~\/.local\/share\/ponysay\/ponies\//')
|
if test -d $systempath
|
||||||
|
set -g systemponies (ls --color=no $systempath | sed 's/\.pony//')
|
||||||
end
|
end
|
||||||
|
|
||||||
|
if test -d $homepath
|
||||||
|
set -g homeponies (ls --color=no $homepath | sed 's/\.pony//')
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
complete -c ponysay -s h --description "Help of ponysay"
|
complete -c ponysay -s h --description "Help of ponysay"
|
||||||
complete -c ponysay -s v --description "Version of ponysay"
|
complete -c ponysay -s v --description "Version of ponysay"
|
||||||
complete -c ponysay -s l --description "List pony files"
|
complete -c ponysay -s l --description "List pony files"
|
||||||
complete -c ponysay -s f -a "$systemponies $homeponies" --description "Select a pony, either a filename or pony name"
|
complete -c ponysay -s f -a "$homeponies $systemponies" --description "Ponyfile"
|
||||||
complete -c ponysay -s W -a "Integer" --description "The screen column where the message should be wrapped"
|
complete -c ponysay -s W -a "Integer" --description "The screen column where the message should be wrapped"
|
||||||
|
|
||||||
|
|
||||||
|
set -e systempath
|
||||||
|
set -e homepath
|
||||||
set -e systemponies
|
set -e systemponies
|
||||||
set -e homeponies
|
set -e homeponies
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue