aboutsummaryrefslogtreecommitdiff
path: root/completion
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2012-07-19 18:26:19 +0200
committerMattias Andrée <maandree@operamail.com>2012-07-19 18:26:19 +0200
commit5f672bb9f76f0c37563202cfd9ed9755633a7050 (patch)
tree19f48fd0d8ccd94a0629b32fe03c73c5e9d83407 /completion
parentecd2e9824281a56f9fca09fc2a408006bd44f2ea (diff)
downloadponysay-5f672bb9f76f0c37563202cfd9ed9755633a7050.tar.gz
ponysay-5f672bb9f76f0c37563202cfd9ed9755633a7050.tar.bz2
ponysay-5f672bb9f76f0c37563202cfd9ed9755633a7050.zip
m manuals
Diffstat (limited to 'completion')
-rw-r--r--completion/bash-completion.sh4
-rw-r--r--completion/fish_ponysay.fish4
-rw-r--r--completion/fish_ponythink.fish4
3 files changed, 6 insertions, 6 deletions
diff --git a/completion/bash-completion.sh b/completion/bash-completion.sh
index e119834..53c53ef 100644
--- a/completion/bash-completion.sh
+++ b/completion/bash-completion.sh
@@ -17,10 +17,10 @@ _ponysay()
COMPREPLY=()
sysponies=/usr/share/ponysay/ponies/
- usrponies=~/.ponies/
+ usrponies=~/.local/share/ponysay/ponies/
if [[ $TERM = "linux" ]]; then
sysponies=/usr/share/ponysay/ttyponies/
- usrponies=~/.ttyponies/
+ usrponies=~/.local/share/ponysay/ttyponies/
fi
if [[ -d $sysponies ]]; then
diff --git a/completion/fish_ponysay.fish b/completion/fish_ponysay.fish
index f0c73a2..ea98382 100644
--- a/completion/fish_ponysay.fish
+++ b/completion/fish_ponysay.fish
@@ -6,11 +6,11 @@
if test -d /usr/share/ponysay/ponies/
- set -g systemponies (ls /usr/share/ponysay/ponies/ | sed 's/\.pony/\t Pony from \/usr\/share\/ponysay\/ponies\//')
+ set -g systemponies (ls --color=no /usr/share/ponysay/ponies/ | sed 's/\.pony/\t Pony from \/usr\/share\/ponysay\/ponies\//')
end
if test -d ~/.local/share/ponysay/ponies/
- set -g homeponies (ls ~/.local/share/ponysay/ponies/ | sed 's/\.pony/\t Pony from ~\/.local\/share\/ponysay\/ponies\//')
+ set -g homeponies (ls --color=no ~/.local/share/ponysay/ponies/ | sed 's/\.pony/\t Pony from ~\/.local\/share\/ponysay\/ponies\//')
end
complete -c ponysay -s h --description "Help of ponysay"
diff --git a/completion/fish_ponythink.fish b/completion/fish_ponythink.fish
index 928b72e..24391ce 100644
--- a/completion/fish_ponythink.fish
+++ b/completion/fish_ponythink.fish
@@ -6,11 +6,11 @@
if test -d /usr/share/ponysay/ponies/
- set -g systemponies (ls /usr/share/ponysay/ponies/ | sed 's/\.pony/\t Pony from \/usr\/share\/ponysay\/ponies\//')
+ set -g systemponies (ls --color=no /usr/share/ponysay/ponies/ | sed 's/\.pony/\t Pony from \/usr\/share\/ponysay\/ponies\//')
end
if test -d ~/.local/share/ponysay/ponies/
- set -g homeponies (ls ~/.local/share/ponysay/ponies/ | sed 's/\.pony/\t Pony from ~\/.local\/share\/ponysay\/ponies\//')
+ set -g homeponies (ls --color=no ~/.local/share/ponysay/ponies/ | sed 's/\.pony/\t Pony from ~\/.local\/share\/ponysay\/ponies\//')
end
complete -c ponythink -s h --description "Help of ponythink"