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.help Subject: Re: Help customising the behaviour of the new Tab Line mode Date: Thu, 20 Aug 2020 03:31:17 +0300 Organization: LINKOV.NET Message-ID: <87k0xuf6hm.fsf@mail.linkov.net> References: <005b781b-a6e0-e1b8-bf2e-090c67de16ac.ref@yahoo.de> <005b781b-a6e0-e1b8-bf2e-090c67de16ac@yahoo.de> <878seeys27.fsf@mail.linkov.net> <4368b11d-8e6f-509f-06a0-dea6ebd22fc7@yahoo.de> <87r1s3h19h.fsf@mail.linkov.net> <95b14511-4025-1c46-1e60-f86e6c8dba97@yahoo.de> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="10571"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (x86_64-pc-linux-gnu) Cc: Help Gnu Emacs mailing list To: "R. Diez" Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Thu Aug 20 05:33:10 2020 Return-path: Envelope-to: geh-help-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 1k8bKA-0002fk-5f for geh-help-gnu-emacs@m.gmane-mx.org; Thu, 20 Aug 2020 05:33:10 +0200 Original-Received: from localhost ([::1]:52182 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1k8bK8-00069I-V3 for geh-help-gnu-emacs@m.gmane-mx.org; Wed, 19 Aug 2020 23:33:08 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:54400) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1k8bJn-000691-3Y for help-gnu-emacs@gnu.org; Wed, 19 Aug 2020 23:32:47 -0400 Original-Received: from relay11.mail.gandi.net ([217.70.178.231]:33597) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1k8bJk-0004cO-RY for help-gnu-emacs@gnu.org; Wed, 19 Aug 2020 23:32:46 -0400 Original-Received: from mail.gandi.net (m91-129-102-47.cust.tele2.ee [91.129.102.47]) (Authenticated sender: juri@linkov.net) by relay11.mail.gandi.net (Postfix) with ESMTPSA id 1F812100002; Thu, 20 Aug 2020 03:32:39 +0000 (UTC) In-Reply-To: <95b14511-4025-1c46-1e60-f86e6c8dba97@yahoo.de> (R. Diez's message of "Wed, 19 Aug 2020 09:16:32 +0200") Received-SPF: pass client-ip=217.70.178.231; envelope-from=juri@linkov.net; helo=relay11.mail.gandi.net X-detected-operating-system: by eggs.gnu.org: First seen = 2020/08/19 23:32:41 X-ACL-Warn: Detected OS = Linux 3.11 and newer X-Spam_score_int: -19 X-Spam_score: -2.0 X-Spam_bar: -- X-Spam_report: (-2.0 / 5.0 requ) BAYES_00=-1.9, DATE_IN_PAST_03_06=1.592, RCVD_IN_DNSWL_LOW=-0.7, RCVD_IN_MSPIKE_H2=-1, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Original-Sender: "help-gnu-emacs" Xref: news.gmane.io gmane.emacs.help:123730 Archived-At: > There probably are other things not directly related to Lisp. For example, > how does the new routine learn that there is a new buffer and the tab bar > needs to repaint? This is the easiest part of the task - `tab-line-tabs-function' is called when a new buffer is created, and it will find the new buffer by comparing the cached list of previous buffers and the current list of all buffers (that also includes the new buffer). > By the way, I tried once package tabbar-ruler, which allows the user to > reorder the tabs on the old tabbar.el by dragging them with the > mouse. Unfortunately, I had to disable it because it had too many bugs. But > is supporting mouse users morally acceptable in Emacs? 8-D Everything that doesn't violate the GPL is morally acceptable. ;-) I invite you to create a new feature request on bug-gnu-emacs where all details could be discussed further.