From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Jean Louis Newsgroups: gmane.emacs.bugs Subject: bug#44413: 28.0.50; Provide function to close the tab Date: Tue, 3 Nov 2020 18:12:24 +0300 Message-ID: References: <87d00uv5uw.fsf@gnus.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="32173"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Mutt/+ (1036f0e) (2020-10-18) Cc: 44413@debbugs.gnu.org To: Lars Ingebrigtsen Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane-mx.org@gnu.org Tue Nov 03 16:36:11 2020 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 1kZyLy-0008Dy-7B for geb-bug-gnu-emacs@m.gmane-mx.org; Tue, 03 Nov 2020 16:36:10 +0100 Original-Received: from localhost ([::1]:52248 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1kZyLw-0004c5-Nc for geb-bug-gnu-emacs@m.gmane-mx.org; Tue, 03 Nov 2020 10:36:08 -0500 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:43366) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kZxza-0008Tx-Il for bug-gnu-emacs@gnu.org; Tue, 03 Nov 2020 10:13:03 -0500 Original-Received: from debbugs.gnu.org ([209.51.188.43]:34502) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1kZxza-0002HZ-5j for bug-gnu-emacs@gnu.org; Tue, 03 Nov 2020 10:13:02 -0500 Original-Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1kZxzZ-0007Ow-Vz for bug-gnu-emacs@gnu.org; Tue, 03 Nov 2020 10:13:02 -0500 X-Loop: help-debbugs@gnu.org Resent-From: Jean Louis Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Tue, 03 Nov 2020 15:13:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 44413 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: notabug Original-Received: via spool by 44413-submit@debbugs.gnu.org id=B44413.160441635328413 (code B ref 44413); Tue, 03 Nov 2020 15:13:01 +0000 Original-Received: (at 44413) by debbugs.gnu.org; 3 Nov 2020 15:12:33 +0000 Original-Received: from localhost ([127.0.0.1]:46048 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kZxz6-0007OC-VV for submit@debbugs.gnu.org; Tue, 03 Nov 2020 10:12:33 -0500 Original-Received: from static.rcdrun.com ([95.85.24.50]:43989) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kZxz5-0007O4-5H for 44413@debbugs.gnu.org; Tue, 03 Nov 2020 10:12:32 -0500 Original-Received: from localhost ([::ffff:41.210.145.80]) (AUTH: PLAIN admin, TLS: TLS1.2,256bits,ECDHE_RSA_AES_256_GCM_SHA384) by static.rcdrun.com with ESMTPSA id 00000000002A0B3E.000000005FA1735D.0000094A; Tue, 03 Nov 2020 15:12:29 +0000 Content-Disposition: inline In-Reply-To: <87d00uv5uw.fsf@gnus.org> 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:192614 Archived-At: * Lars Ingebrigtsen [2020-11-03 18:05]: > Jean Louis writes: > > > Instead of lambda anonymous function it would be more useful to > > provide named function to close the tab. This way keybinding can be > > customized easily. There exists function to open the tab, while > > anonymous one is handling closing of the tab. > > > > runs the command (lambda nil (interactive) > > (tab-bar-close-tab 6)) (found in global-map), which is an interactive > > Lisp function. > > These are dynamically created actions to close specific tabs. The only > potentially confusing thing here is that `C-h k' gives you an output at > all, but I guess there's not much we can do about that. > > If you want to close the current tab, use `C-x t 0', for instance, or > rebind `tab-close' to any key you want. > > So I don't think there's anything to fix here, and I'm closing this bug > report. Oh, you are right. I was inspecting how to close the bug and found that function. My expectation was that I will find to which key is tab closing bound. Thank you.