]> Pileus Git - ~andy/linux/commitdiff
perf completion: Factor out call to __ltrim_colon_completions
authorRamkumar Ramachandra <artagnon@gmail.com>
Sun, 17 Nov 2013 16:13:25 +0000 (21:43 +0530)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Wed, 27 Nov 2013 17:58:35 +0000 (14:58 -0300)
In our sole callsite, __ltrim_colon_completions is called after
__perfcomp, to modify the COMPREPLY set by the invocation.

This is problematic, because in the zsh equivalent (using compset/
compadd), we'll have to generate completions in one-shot.

So factor out this entire callsite into a special override'able
__perfcomp_colon function; we will override it when introducing zsh
support.

Signed-off-by: Ramkumar Ramachandra <artagnon@gmail.com>
Cc: Ingo Molnar <mingo@kernel.org>
Link: http://lkml.kernel.org/r/1384704807-15779-4-git-send-email-artagnon@gmail.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/bash_completion

index 824312681601b8f8ec60e8189e915f9ef6f7ac33..573599b42be2701cf731a804d9bb96c09da5177c 100644 (file)
@@ -94,6 +94,12 @@ __perfcomp ()
        COMPREPLY=( $( compgen -W "$1" -- "$2" ) )
 }
 
+__perfcomp_colon ()
+{
+       __perfcomp "$1" "$2"
+       __ltrim_colon_completions $cur
+}
+
 __perf_main ()
 {
        local cmd
@@ -114,8 +120,7 @@ __perf_main ()
        # List possible events for -e option
        elif [[ $prev == "-e" && "${words[1]}" == @(record|stat|top) ]]; then
                evts=$($cmd list --raw-dump)
-               __perfcomp "$evts" "$cur"
-               __ltrim_colon_completions $cur
+               __perfcomp_colon "$evts" "$cur"
        # List long option names
        elif [[ $cur == --* ]];  then
                subcmd=${words[1]}