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=20Bouat?= Newsgroups: gmane.emacs.bugs Subject: [feature request] smooth scrolling Date: Mon, 3 Feb 2003 23:15:58 +0100 Sender: bug-gnu-emacs-bounces+gnu-bug-gnu-emacs=m.gmane.org@gnu.org Message-ID: <200302032315.58594.jerome.bouat@wanadoo.fr> 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 1044311229 17035 80.91.224.249 (3 Feb 2003 22:27:09 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 3 Feb 2003 22:27:09 +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 18fp3R-0004Q8-00 for ; Mon, 03 Feb 2003 23:27:05 +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 18fp3q-00014S-04 for gnu-bug-gnu-emacs@m.gmane.org; Mon, 03 Feb 2003 17:27:30 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10.13) id 18fp2f-0000QA-00 for bug-gnu-emacs@gnu.org; Mon, 03 Feb 2003 17:26:17 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10.13) id 18fp1c-0008O2-00 for bug-gnu-emacs@gnu.org; Mon, 03 Feb 2003 17:25:13 -0500 Original-Received: from smtp-out-6.wanadoo.fr ([193.252.19.25] helo=mel-rto6.wanadoo.fr) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 18fotd-0005jp-00 for bug-gnu-emacs@gnu.org; Mon, 03 Feb 2003 17:16:57 -0500 Original-Received: from mel-rta8.wanadoo.fr (193.252.19.79) by mel-rto6.wanadoo.fr (6.7.015) id 3E0C343F017E6F43 for bug-gnu-emacs@gnu.org; Mon, 3 Feb 2003 23:16:56 +0100 Original-Received: from penguin (193.251.23.106) by mel-rta8.wanadoo.fr (6.7.015) id 3E26DA7000A7AC36 for bug-gnu-emacs@gnu.org; Mon, 3 Feb 2003 23:16:56 +0100 Original-To: bug-gnu-emacs@gnu.org User-Agent: KMail/1.4.3 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:4381 X-Report-Spam: http://spam.gmane.org/gmane.emacs.bugs:4381 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