[Bash-completion-commits] [SCM] bash-completion branch, master, updated. f48ca28b99f96bc40f5e3bfd6662e8b00b5a3d2b
Ville Skyttä
ville.skytta at iki.fi
Tue Mar 30 19:16:17 UTC 2010
The following commit has been merged in the master branch:
commit b8267d131e977e40352decaecdf8f9f77fac7f2b
Author: Ville Skyttä <ville.skytta at iki.fi>
Date: Tue Mar 30 22:04:07 2010 +0300
Add *.Z support to man completion.
diff --git a/contrib/man b/contrib/man
index 9f2e58e..c1da66a 100644
--- a/contrib/man
+++ b/contrib/man
@@ -7,7 +7,7 @@ _man()
{
local cur i prev sect manpath manext mansect uname
- manext="@([0-9lnp]|[0-9][px]|man|3pm)?(.@([gx]z|bz2|lzma))"
+ manext="@([0-9lnp]|[0-9][px]|man|3pm)?(.@([gx]z|bz2|lzma|Z))"
mansect="@([0-9lnp]|[0-9][px]|3pm)"
COMPREPLY=()
@@ -54,7 +54,7 @@ _man()
# weed out directory path names and paths to man pages
COMPREPLY=( ${COMPREPLY[@]##*/?(:)} )
# strip suffix from man pages
- COMPREPLY=( ${COMPREPLY[@]%.@([gx]z|bz2|lzma)} )
+ COMPREPLY=( ${COMPREPLY[@]%.@([gx]z|bz2|lzma|Z)} )
COMPREPLY=( $( compgen -W '${COMPREPLY[@]%.*}' -- "${cur//\\\\/}" ) )
if [[ "$prev" != $mansect ]]; then
--
bash-completion
More information about the Bash-completion-commits
mailing list