From 610778cbbc6eeb1ef3f8a1a65105eaea0c65982c Mon Sep 17 00:00:00 2001 From: Syohei YOSHIDA Date: Tue, 2 Feb 2016 21:48:03 +0900 Subject: [PATCH] Show tag in header Original header has no information. --- helm-gtags.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helm-gtags.el b/helm-gtags.el index ad57b50..43e28b6 100644 --- a/helm-gtags.el +++ b/helm-gtags.el @@ -1020,7 +1020,7 @@ Always update if value of this variable is nil." (setq helm-gtags--query tagname)) (let ((tagroot (helm-gtags--find-tag-simple))) (helm-attrset 'helm-gtags-base-directory dir src) - (helm-attrset 'name (concat "GNU Global at " (or dir tagroot)) src) + (helm-attrset 'name (format "%s in %s" tagname (or dir tagroot)) src) (helm :sources srcs :buffer helm-gtags--buffer :preselect preselect-regexp))))