diff options
author | Ramkumar Ramachandra <artagnon@gmail.com> | 2013-07-04 08:41:27 -0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2013-10-09 10:11:55 -0400 |
commit | 7b6c48e16e5d312b0ebae78acfb3ff4f9c8c083c (patch) | |
tree | 0c949fedd6487478dae705ee7ea361f52cbcbdde /tools/perf/bash_completion | |
parent | 30079d1d5ebcb8d706c6e05cacebb7facc60cd95 (diff) |
perf completion: Strip dependency on _filedir
_filedir is defined in the bash-completion package, but there is no need
to depend on it. Instead, call complete with multiple -o arguments
before the -F argument like in git.git's completion script.
Signed-off-by: Ramkumar Ramachandra <artagnon@gmail.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Link: http://lkml.kernel.org/r/1372941691-14684-4-git-send-email-artagnon@gmail.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/bash_completion')
-rw-r--r-- | tools/perf/bash_completion | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/tools/perf/bash_completion b/tools/perf/bash_completion index b0cdd12bd5e4..d2598be517fb 100644 --- a/tools/perf/bash_completion +++ b/tools/perf/bash_completion | |||
@@ -54,9 +54,8 @@ _perf() | |||
54 | subcmd=${COMP_WORDS[1]} | 54 | subcmd=${COMP_WORDS[1]} |
55 | opts=$($cmd $subcmd --list-opts) | 55 | opts=$($cmd $subcmd --list-opts) |
56 | COMPREPLY=( $( compgen -W '$opts' -- "$cur" ) ) | 56 | COMPREPLY=( $( compgen -W '$opts' -- "$cur" ) ) |
57 | # Fall down to list regular files | ||
58 | else | ||
59 | _filedir | ||
60 | fi | 57 | fi |
61 | } && | 58 | } && |
62 | complete -F _perf perf | 59 | |
60 | complete -o bashdefault -o default -o nospace -F _perf perf 2>/dev/null \ | ||
61 | || complete -o default -o nospace -F _perf perf | ||