From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Juri Linkov Newsgroups: gmane.emacs.bugs Subject: bug#51337: Subject: 27.2; mouse-buffer-menu-mode-groups Date: Sat, 23 Oct 2021 20:58:09 +0300 Organization: LINKOV.NET Message-ID: <87sfwrd7ty.fsf@mail.linkov.net> References: Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="29056"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/29.0.50 (x86_64-pc-linux-gnu) Cc: 51337@debbugs.gnu.org To: Peter Scott Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane-mx.org@gnu.org Sat Oct 23 20:51:01 2021 Return-path: Envelope-to: geb-bug-gnu-emacs@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1meM6f-0007Qd-QE for geb-bug-gnu-emacs@m.gmane-mx.org; Sat, 23 Oct 2021 20:51:01 +0200 Original-Received: from localhost ([::1]:55716 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1meM6e-0000Bh-R7 for geb-bug-gnu-emacs@m.gmane-mx.org; Sat, 23 Oct 2021 14:51:00 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:57668) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1meLtA-0004HG-1j for bug-gnu-emacs@gnu.org; Sat, 23 Oct 2021 14:37:05 -0400 Original-Received: from debbugs.gnu.org ([209.51.188.43]:53949) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1meLt8-0000od-HL for bug-gnu-emacs@gnu.org; Sat, 23 Oct 2021 14:37:03 -0400 Original-Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1meLt8-0008Ti-Ez for bug-gnu-emacs@gnu.org; Sat, 23 Oct 2021 14:37:02 -0400 X-Loop: help-debbugs@gnu.org Resent-From: Juri Linkov Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Sat, 23 Oct 2021 18:37:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 51337 X-GNU-PR-Package: emacs Original-Received: via spool by 51337-submit@debbugs.gnu.org id=B51337.163501420332491 (code B ref 51337); Sat, 23 Oct 2021 18:37:02 +0000 Original-Received: (at 51337) by debbugs.gnu.org; 23 Oct 2021 18:36:43 +0000 Original-Received: from localhost ([127.0.0.1]:37249 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1meLso-0008Rz-RP for submit@debbugs.gnu.org; Sat, 23 Oct 2021 14:36:42 -0400 Original-Received: from relay6-d.mail.gandi.net ([217.70.183.198]:39259) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1meLsm-0008Re-71 for 51337@debbugs.gnu.org; Sat, 23 Oct 2021 14:36:41 -0400 Original-Received: (Authenticated sender: juri@linkov.net) by relay6-d.mail.gandi.net (Postfix) with ESMTPSA id 6B2BDC0004; Sat, 23 Oct 2021 18:36:31 +0000 (UTC) In-Reply-To: (Peter Scott via's message of "Fri, 22 Oct 2021 17:27:56 +0000") X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list X-BeenThere: bug-gnu-emacs@gnu.org List-Id: "Bug reports for GNU Emacs, the Swiss army knife of text editors" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane-mx.org@gnu.org Original-Sender: "bug-gnu-emacs" Xref: news.gmane.io gmane.emacs.bugs:218029 Archived-At: > the verilog files are grouped as "Version Control”. Clearly this is not > correct. If i switch to a verilog file and do C-h major-mode Ret the > major mode is listed as verilog. > > I've tried to update the mouse-buffer-menu-mode-groups to this > Value: > ("log\\|diff\\|vc\\|cvs\\|Git\\|Annotate" . "Version Control") Oh, it's unfortunate that "log\\|diff..." also matches "verilog". This regexp should be tightened to match only VC buffers, but not buffers from other modes. Maybe something like ("vc.*log\\|diff\\|vc\\|cvs\\|Git\\|Annotate" . "Version Control")