From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: =?ISO-8859-1?Q?J=E9r=F4me?= Bouat Newsgroups: gmane.emacs.bugs Subject: [feature request] smooth scrolling Date: Mon, 03 Feb 2003 23:24:18 +0100 Organization: Wanadoo, l'internet avec France Telecom Sender: bug-gnu-emacs-bounces+gnu-bug-gnu-emacs=m.gmane.org@gnu.org Message-ID: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Trace: main.gmane.org 1044311115 16547 80.91.224.249 (3 Feb 2003 22:25:15 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 3 Feb 2003 22:25:15 +0000 (UTC) Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 18fp1b-0004IO-00 for ; Mon, 03 Feb 2003 23:25:11 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 18fp2C-0008Sc-08 for gnu-bug-gnu-emacs@m.gmane.org; Mon, 03 Feb 2003 17:25:48 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10.13) id 18fp1t-0008RZ-00 for bug-gnu-emacs@prep.ai.mit.edu; Mon, 03 Feb 2003 17:25:29 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10.13) id 18fp1s-0008RM-00 for bug-gnu-emacs@prep.ai.mit.edu; Mon, 03 Feb 2003 17:25:29 -0500 Original-Received: from horus.isnic.is ([193.4.58.12]) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 18fp1s-0008RB-00 for bug-gnu-emacs@prep.ai.mit.edu; Mon, 03 Feb 2003 17:25:28 -0500 Original-Received: from mel-rti17.wanadoo.fr (mel-rti17.wanadoo.fr [193.252.19.228]) by horus.isnic.is (8.12.3/8.12.3/isnic) with ESMTP id h13MPQtJ020649 for ; Mon, 3 Feb 2003 22:25:26 GMT (envelope-from news@wanadoo.fr) Original-Received: from adm-rt1 (193.252.21.63) by mel-rti17.wanadoo.fr (6.7.015) id 3E26CDC20212C48F for gnu-emacs-bug@moderators.isc.org; Mon, 3 Feb 2003 23:25:20 +0100 Original-Received: from news-reader12.wanadoo.fr (news-reader12.wanadoo.fr [193.252.19.51]) by adm-rt1 (Postfix) with ESMTP id 6A73F1FF1E for ; Mon, 3 Feb 2003 23:25:20 +0100 (MET) Original-Received: (from news@localhost) by news-reader12.wanadoo.fr (8.11.6+Sun/8.9.3) id h13MPKP01657 for gnu-emacs-bug@moderators.isc.org; Mon, 3 Feb 2003 23:25:20 +0100 (MET) Original-To: gnu-emacs-bug@moderators.isc.org Original-Path: not-for-mail Original-Newsgroups: gnu.emacs.bug Original-Lines: 29 Original-NNTP-Posting-Host: agrenoble-101-1-1-106.abo.wanadoo.fr Original-X-Trace: news-reader12.wanadoo.fr 1044311120 1545 193.251.23.106 (3 Feb 2003 22:25:20 GMT) Original-X-Complaints-To: abuse@wanadoo.fr Original-NNTP-Posting-Date: 3 Feb 2003 22:25:20 GMT User-Agent: KNode/0.7.1 X-MIME-Autoconverted: from 8bit to quoted-printable by horus.isnic.is id h13MPQtJ020649 X-BeenThere: bug-gnu-emacs@gnu.org X-Mailman-Version: 2.1b5 Precedence: list List-Id: Bug reports for GNU Emacs, the Swiss army knife of text editors List-Help: List-Post: List-Subscribe: , List-Archive: List-Unsubscribe: , Errors-To: bug-gnu-emacs-bounces+gnu-bug-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.bugs:4380 X-Report-Spam: http://spam.gmane.org/gmane.emacs.bugs:4380 Hello I posted a question on news:gnu.emacs.help but the answers didn't give me the way to resolve my problem. I would like a progressive scrolling in emacs. I like this feature because it is easier to read a text when it doesn't jump (even for a jump of one line). I don't speek about: (setq scroll-conservatively '1023) but I want the progressive scrolling of each line as does: (dotimes (i 20) (set-window-vscroll nil (* i 0.05)) (sit-for 0.05)). I would like an emacs option such as 'line-scrolling-duration'. If setted to 0: as fast as possible (i.e. not smooth). If setted to non 0 value: the value would represent the duration of the whole line scrolling. In the last case, the number of steps would be computed so that each step would last 1/25 second. J=E9r=F4me