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#43568: Horizontal mouse wheel scrolling Date: Tue, 03 Nov 2020 21:06:33 +0200 Organization: LINKOV.NET Message-ID: <87imam1cqu.fsf@mail.linkov.net> References: <87lfh1ac3y.fsf@mail.linkov.net> <87mu02m94k.fsf@mail.linkov.net> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="33296"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (x86_64-pc-linux-gnu) To: 43568@debbugs.gnu.org Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane-mx.org@gnu.org Tue Nov 03 20:11:19 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 1ka1iB-0008Z6-8V for geb-bug-gnu-emacs@m.gmane-mx.org; Tue, 03 Nov 2020 20:11:19 +0100 Original-Received: from localhost ([::1]:45610 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ka1i9-0006i0-Q7 for geb-bug-gnu-emacs@m.gmane-mx.org; Tue, 03 Nov 2020 14:11:17 -0500 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:53680) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1ka1hu-0006hP-Or for bug-gnu-emacs@gnu.org; Tue, 03 Nov 2020 14:11:02 -0500 Original-Received: from debbugs.gnu.org ([209.51.188.43]:34893) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1ka1hu-0004G2-CE for bug-gnu-emacs@gnu.org; Tue, 03 Nov 2020 14:11:02 -0500 Original-Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ka1hu-0000sY-7U for bug-gnu-emacs@gnu.org; Tue, 03 Nov 2020 14:11:02 -0500 X-Loop: help-debbugs@gnu.org Resent-From: Juri Linkov Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Tue, 03 Nov 2020 19:11:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 43568 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: fixed patch Original-Received: via spool by 43568-submit@debbugs.gnu.org id=B43568.16044306123303 (code B ref 43568); Tue, 03 Nov 2020 19:11:02 +0000 Original-Received: (at 43568) by debbugs.gnu.org; 3 Nov 2020 19:10:12 +0000 Original-Received: from localhost ([127.0.0.1]:46438 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ka1h5-0000rB-P7 for submit@debbugs.gnu.org; Tue, 03 Nov 2020 14:10:12 -0500 Original-Received: from relay1-d.mail.gandi.net ([217.70.183.193]:52111) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ka1h4-0000qf-3P for 43568@debbugs.gnu.org; Tue, 03 Nov 2020 14:10:10 -0500 X-Originating-IP: 91.129.102.160 Original-Received: from mail.gandi.net (m91-129-102-160.cust.tele2.ee [91.129.102.160]) (Authenticated sender: juri@linkov.net) by relay1-d.mail.gandi.net (Postfix) with ESMTPSA id 2B966240002 for <43568@debbugs.gnu.org>; Tue, 3 Nov 2020 19:10:02 +0000 (UTC) In-Reply-To: <87mu02m94k.fsf@mail.linkov.net> (Juri Linkov's message of "Sat, 31 Oct 2020 22:30:03 +0200") 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:192639 Archived-At: > Currently the mouse-wheel horizontal scrolling step is hard-coded to the > constant 1. It's very inconvenient to scroll large amount of text > horizontally by small increments. For example, the horizontal step is > hard-coded to 3 in Firefox, and to 5 in Chrome. > > But since Emacs is much more powerful than web browsers in regard to > customization, the following patch adds a new user option to define the > default step, and also allows the user to change the step dynamically by > using a numeric prefix arg before starting to scroll, e.g. typing 'M-8' > before scrolling will set the scroll step to 8. Pushed now.