From 4bcd37d800bcb7cfeb187c78dba64961c3319adb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Sat, 23 Oct 2010 12:48:53 +0300 Subject: [PATCH] Add wodim minbuf= completion. --- completions/wodim | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/completions/wodim b/completions/wodim index 71b1e116..0abb6e00 100644 --- a/completions/wodim +++ b/completions/wodim @@ -38,6 +38,11 @@ _cdrecord() COMPREPLY=( $( compgen -W "$( $1 driver=help 2>&1 | \ awk 'NR > 1 { print $1 }' ) help" -- "$cur" ) ) ;; + minbuf) + compopt +o nospace &>/dev/null + COMPREPLY=( $( compgen -W "$( seq 25 95 2>/dev/null )" \ + -- "$cur" ) ) + ;; esac return 0 fi