]> gitweb @ CieloNegro.org - youtube-dl.git/commitdiff
adding a proper bash-completion generation
authorgcmalloc <gcmalloc@gmail.com>
Fri, 7 Dec 2012 20:38:45 +0000 (21:38 +0100)
committergcmalloc <gcmalloc@gmail.com>
Fri, 7 Dec 2012 20:38:45 +0000 (21:38 +0100)
devscripts/bash_completion.py [new file with mode: 0644]
devscripts/bash_completion.template [moved from youtube-dl.bash-completion.in with 92% similarity]

diff --git a/devscripts/bash_completion.py b/devscripts/bash_completion.py
new file mode 100644 (file)
index 0000000..1cbfa8b
--- /dev/null
@@ -0,0 +1,22 @@
+#!/usr/bin/env python2
+import youtube_dl
+
+BASH_COMPLETION_FILE = "youtube-dl.bash_completion"
+BASH_COMPLETION_TEMPLATE = "devscripts/bash_completion.template"
+
+def build_completion(opt_parser):
+    opts_flag = []
+    for group in opt_parser.option_groups:
+        for option in group.option_list:
+            #for every long flag
+            opts_flag.append(option.get_opt_string())
+    with open(BASH_COMPLETION_TEMPLATE) as f:
+        template = f.read()
+    with open(BASH_COMPLETION_FILE, "w") as f:
+        #just using the special char
+        print opts_flag
+        filled_template = template.replace("{{flags}}", " ".join(opts_flag))
+        f.write(filled_template)
+
+parser = youtube_dl.parseOpts()[0]
+build_completion(parser)
similarity index 92%
rename from youtube-dl.bash-completion.in
rename to devscripts/bash_completion.template
index c5d0e3f78dfddcab8f198ea891dc2d5c7c8e08c7..3b99a96145bedc1c397f89d216b01e53ed361634 100644 (file)
@@ -3,7 +3,7 @@ __youtube-dl()
     local cur prev opts
     COMPREPLY=()
     cur="${COMP_WORDS[COMP_CWORD]}"
-    opts=""
+    opts="{{flags}}"
 
     if [[ ${cur} == * ]] ; then
         COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )