unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
From: Hong Xu <hong@topbug.net>
To: 37611@debbugs.gnu.org
Subject: bug#37611: [PATCH] Default FILE to the current buffer for list-tags
Date: Thu, 3 Oct 2019 19:05:08 -0700	[thread overview]
Message-ID: <ca0a915f-62ef-6d84-a637-af9a99b9348d@topbug.net> (raw)

* lisp/progmodes/etags.el (list-tags)
(tags--get-current-buffer-name-in-tags-file): Default FILE to the
current buffer for list-tags.
---
  lisp/progmodes/etags.el | 18 +++++++++++++++---
  1 file changed, 15 insertions(+), 3 deletions(-)

diff --git a/lisp/progmodes/etags.el b/lisp/progmodes/etags.el
index a03516100087..23acffcac299 100644
--- a/lisp/progmodes/etags.el
+++ b/lisp/progmodes/etags.el
@@ -1852,15 +1852,27 @@ tags-complete-tags-table-file
  	(all-completions string (tags-table-files) predicate)
        (try-completion string (tags-table-files) predicate))))
  
+(defun tags--get-current-buffer-name-in-tags-file ()
+  "Get the file name that the current buffer corresponds in the tags file."
+  (let ((tag-dir
+         (save-excursion
+           (visit-tags-table-buffer)
+           (file-name-directory (buffer-file-name)))))
+    (when (string-prefix-p tag-dir (buffer-file-name))
+      (substring (buffer-file-name) (length tag-dir) nil))))
+
  ;;;###autoload
  (defun list-tags (file &optional _next-match)
    "Display list of tags in file FILE.
  This searches only the first table in the list, and no included tables.
  FILE should be as it appeared in the `etags' command, usually without a
  directory specification."
-  (interactive (list (completing-read "List tags in file: "
-				      'tags-complete-tags-table-file
-				      nil t nil)))
+  (interactive (list (completing-read
+                      "List tags in file: "
+                      'tags-complete-tags-table-file
+                      nil t
+                      ;; Default FILE to the current buffer.
+                      (tags--get-current-buffer-name-in-tags-file))))
    (with-output-to-temp-buffer "*Tags List*"
      (princ (substitute-command-keys "Tags in file `"))
      (tags-with-face 'highlight (princ file))
-- 
2.18.1






             reply	other threads:[~2019-10-04  2:05 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-10-04  2:05 Hong Xu [this message]
2019-10-04  7:59 ` bug#37611: [PATCH] Default FILE to the current buffer for list-tags Eli Zaretskii
2019-10-04 19:20   ` Hong Xu
2019-10-04 19:41     ` Eli Zaretskii
2019-10-05  0:38       ` Hong Xu
2019-10-07  4:03         ` Lars Ingebrigtsen

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

  List information: https://www.gnu.org/software/emacs/

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

  git send-email \
    --in-reply-to=ca0a915f-62ef-6d84-a637-af9a99b9348d@topbug.net \
    --to=hong@topbug.net \
    --cc=37611@debbugs.gnu.org \
    /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.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

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 read-only IMAP folder(s) and NNTP newsgroup(s).