[Bash-completion-commits] [SCM] bash-completion branch, master, updated. 2.1-16-g5c6b1bb

Ville Skyttä ville.skytta at iki.fi
Thu May 9 11:04:48 UTC 2013


The following commit has been merged in the master branch:
commit 5c6b1bb4a47ca522c111f110f44eff771d9aea5f
Author: Ville Skyttä <ville.skytta at iki.fi>
Date:   Thu May 9 14:03:52 2013 +0300

    wget: Add --accept-regex/--reject-regex/--regex-type arg (non)completions.

diff --git a/completions/wget b/completions/wget
index 1c8aa7d..a426de1 100644
--- a/completions/wget
+++ b/completions/wget
@@ -147,9 +147,14 @@ _wget()
             COMPREPLY=( $( compgen -W 'bits' -- "$cur" ) )
             return
             ;;
+        --regex-type)
+            COMPREPLY=( $( compgen -W 'posix' -- "$cur" ) )
+            return
+            ;;
         -B|--base|--password|--ftp-password|--http-password|--proxy-password|\
         --default-page|--referer|-U|--user-agent|--post-data|--warc-header|-A|\
-        --accept|-R|--reject|-I|--include-directories|-X|--exclude-directories)
+        --accept|-R|--reject|--accept-regex|--reject-regex|-I|\
+        --include-directories|-X|--exclude-directories)
             # argument required but no completions available
             return
             ;;

-- 
bash-completion



More information about the Bash-completion-commits mailing list