From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Jared Finder Newsgroups: gmane.emacs.devel Subject: Re: Why have you disable mouse on TTY builds? Date: Wed, 08 Jan 2025 20:52:19 -0800 Message-ID: <0d86c06f0409feb593245100b5282a19@finder.org> References: <5c8854f9-53ec-43c7-b82a-e040ba246ccf@libero.it> <868qrpaf7r.fsf@gnu.org> <6437ff4e-1594-426a-8502-f7a6bec82808@libero.it> <86msg58qik.fsf@gnu.org> <8d232192-85d3-49f9-b2fb-5ef140bfee67@libero.it> <86sepx6w2l.fsf@gnu.org> <638f749d6f400ab2159aad4558cd9b17@finder.org> <48e63454-931c-4a7c-9a6d-903586fabb70@libero.it> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="31544"; mail-complaints-to="usenet@ciao.gmane.io" Cc: Eli Zaretskii , emacs-devel@gnu.org To: Angelo Graziosi Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Thu Jan 09 05:53:19 2025 Return-path: Envelope-to: ged-emacs-devel@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 1tVkXm-00084V-Tv for ged-emacs-devel@m.gmane-mx.org; Thu, 09 Jan 2025 05:53:19 +0100 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1tVkWy-0003Wf-Us; Wed, 08 Jan 2025 23:52:28 -0500 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1tVkWy-0003WU-3v for emacs-devel@gnu.org; Wed, 08 Jan 2025 23:52:28 -0500 Original-Received: from greenhill.hpalace.com ([192.155.80.58]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1tVkWw-0008Qj-K2; Wed, 08 Jan 2025 23:52:27 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=finder.org; s=2018; t=1736398339; bh=I+i8DxbEObxXtf/XGslMtpCx+xQzGYEvyicoVET+I6w=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=Sjwh22JRmRCNZdLmPQv2H9tjOPVBv8OMHzDJfDdgivrU7GqgeTg4H9eSl7P0FrZ7A nS27A17GJbLZzkDw5Yk1t97PecIbON4DMqRge9tSA47Fy+u08cKxez4LRc/q7XewXe kFskwSROIO4On7miYGuP5glnjos5Ssv5JMSeJco7fHkIQsVTkexCFshrMgI6O4q93Q WRzm1I59mlm9WWI9RnNZ9zlDrPqgqXt022N1fv5sBf2odmPMyodJ+8cOV9LeAMF5hK sagjkjhGIQY0PYggxqMv3fT7znn7MCfqg6eyp7lMRhuGs2SWiOavDdl/pQNgCuiYEz +wvAh9rZQ6YnA== Original-Received: from mail.finder.org (unknown [192.155.80.58]) by greenhill.hpalace.com (Postfix) with ESMTPSA id 8166E239D; Thu, 9 Jan 2025 04:52:19 +0000 (UTC) In-Reply-To: <48e63454-931c-4a7c-9a6d-903586fabb70@libero.it> X-Sender: jared@finder.org Received-SPF: pass client-ip=192.155.80.58; envelope-from=jared@finder.org; helo=greenhill.hpalace.com X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_VALIDITY_RPBL_BLOCKED=0.001, RCVD_IN_VALIDITY_SAFE_BLOCKED=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Xref: news.gmane.io gmane.emacs.devel:327803 Archived-At: On 2025-01-08 08:15, Angelo Graziosi wrote: > Just for completeness, > > I tested also the last master on MinTTY which has > > $ echo $TERM > xterm > > but the mouse is not supported if I do not add these lines > > (require 'mouse) > (require 'mwheel) > (unless window-system > (xterm-mouse-mode t) > (mouse-wheel-mode t)) > > to the init.el file. > > Is this to be expected? Yes, this is expected. MinTTY is not know to support OSC52 (copy / paste interaction with the OS), so the mouse is not automatically enabled. Note that I would expect you > > Ciao, > Angelo.