linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Jin Yao <yao.jin@linux.intel.com>
To: acme@kernel.org, jolsa@kernel.org, peterz@infradead.org,
	mingo@redhat.com, alexander.shishkin@linux.intel.com
Cc: Linux-kernel@vger.kernel.org, ak@linux.intel.com,
	kan.liang@intel.com, yao.jin@intel.com,
	Jin Yao <yao.jin@linux.intel.com>
Subject: [PATCH] perf tool: Auto-complete for the event with ':'
Date: Sat, 23 Dec 2017 04:15:58 +0800	[thread overview]
Message-ID: <1513973758-19109-1-git-send-email-yao.jin@linux.intel.com> (raw)

It's a follow up patch for a previous patch "perf tool: Return all
events as auto-completions after comma".

Sorry about that, I should send these 2 patches in a patch-set.

With this patch, the auto-completion can work well for the event
with ':'. For example,

root@skl:/tmp# perf stat -e block:block_ <TAB>
block:block_bio_backmerge   block:block_rq_complete
block:block_bio_bounce      block:block_rq_insert
block:block_bio_complete    block:block_rq_issue
block:block_bio_frontmerge  block:block_rq_remap
block:block_bio_queue       block:block_rq_requeue
block:block_bio_remap       block:block_sleeprq
block:block_dirty_buffer    block:block_split
block:block_getrq           block:block_touch_buffer
block:block_plug            block:block_unplug

root@skl:/tmp# perf stat -e block:block_rq_ <TAB>
block:block_rq_complete  block:block_rq_issue     block:block_rq_requeue
block:block_rq_insert    block:block_rq_remap

root@skl:/tmp# perf stat -e block:block_rq_complete <TAB>
block:block_rq_complete

root@skl:/tmp# perf stat -e block:block_rq_complete

Signed-off-by: Jin Yao <yao.jin@linux.intel.com>
---
 tools/perf/perf-completion.sh | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/tools/perf/perf-completion.sh b/tools/perf/perf-completion.sh
index 9020641..fdf75d4 100644
--- a/tools/perf/perf-completion.sh
+++ b/tools/perf/perf-completion.sh
@@ -280,6 +280,11 @@ _perf()
 		export COMP_WORDBREAKS
 	fi
 
+	if [[ "$COMP_WORDBREAKS" == *:* ]]; then
+		COMP_WORDBREAKS="${COMP_WORDBREAKS/:/}"
+		export COMP_WORDBREAKS
+	fi
+
 	local cur words cword prev
 	if [ $preload_get_comp_words_by_ref = "true" ]; then
 		_get_comp_words_by_ref -n =:, cur words cword prev
-- 
2.7.4

             reply	other threads:[~2017-12-22 12:20 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-12-22 20:15 Jin Yao [this message]
2017-12-22 13:15 ` [PATCH] perf tool: Auto-complete for the event with ':' Arnaldo Carvalho de Melo
2017-12-28 15:36 ` [tip:perf/core] perf tools: Auto-complete for events " tip-bot for Jin Yao

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1513973758-19109-1-git-send-email-yao.jin@linux.intel.com \
    --to=yao.jin@linux.intel.com \
    --cc=Linux-kernel@vger.kernel.org \
    --cc=acme@kernel.org \
    --cc=ak@linux.intel.com \
    --cc=alexander.shishkin@linux.intel.com \
    --cc=jolsa@kernel.org \
    --cc=kan.liang@intel.com \
    --cc=mingo@redhat.com \
    --cc=peterz@infradead.org \
    --cc=yao.jin@intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).