From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: scroll-conservatively default Date: Thu, 06 Dec 2007 23:14:00 +0200 Message-ID: References: <200712020048.lB20mS9R002812@oogie-boogie.ics.uci.edu> <200712032120.lB3LKwJ1003309@oogie-boogie.ics.uci.edu> <85odd4qdsx.fsf@lola.goethe.zz> Reply-To: Eli Zaretskii NNTP-Posting-Host: lo.gmane.org X-Trace: ger.gmane.org 1196975668 20031 80.91.229.12 (6 Dec 2007 21:14:28 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 6 Dec 2007 21:14:28 +0000 (UTC) Cc: emacs-devel@gnu.org, sdl.web@gmail.com, miles@gnu.org To: David Kastrup Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Dec 06 22:14:36 2007 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1J0O3H-00070S-Ht for ged-emacs-devel@m.gmane.org; Thu, 06 Dec 2007 22:14:35 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1J0O30-0000TX-Gz for ged-emacs-devel@m.gmane.org; Thu, 06 Dec 2007 16:14:18 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1J0O2w-0000Rq-Or for emacs-devel@gnu.org; Thu, 06 Dec 2007 16:14:14 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1J0O2v-0000QB-LJ for emacs-devel@gnu.org; Thu, 06 Dec 2007 16:14:14 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1J0O2v-0000Q0-Hd for emacs-devel@gnu.org; Thu, 06 Dec 2007 16:14:13 -0500 Original-Received: from heller.inter.net.il ([213.8.233.23]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1J0O2m-00024A-7K; Thu, 06 Dec 2007 16:14:04 -0500 Original-Received: from HOME-C4E4A596F7 (IGLD-84-229-218-137.inter.net.il [84.229.218.137]) by heller.inter.net.il (MOS 3.7.3a-GA) with ESMTP id EHN29313 (AUTH halo1); Thu, 6 Dec 2007 23:13:53 +0200 (IST) In-reply-to: <85odd4qdsx.fsf@lola.goethe.zz> (message from David Kastrup on Thu, 06 Dec 2007 12:10:22 +0100) X-detected-kernel: by monty-python.gnu.org: FreeBSD 4.7-5.2 (or MacOS X 10.2-10.4) (2) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:84807 Archived-At: > From: David Kastrup > Date: Thu, 06 Dec 2007 12:10:22 +0100 > Cc: Leo , emacs-devel@gnu.org > > Emacs' keybindings in connection with the scrolling behavior don't help > (vi has extra keybindings C-e and C-y for scrolling without moving > point). I'm not sure I understand what you mean, but if I do, you can, of course, have this in Emacs. I have the following keybindings in my .emacs since about forever: (global-set-key "\C-z" (function (lambda () (interactive) (scroll-up 1)))) (global-set-key "\M-z" (function (lambda () (interactive) (scroll-down 1)))) (If you like to iconify Emacs, use C-x C-z instead of C-z that is taken by the above.)