From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Will Newsgroups: gmane.emacs.help Subject: Smooth scrolling vertical and horizontal Date: Mon, 13 Aug 2007 18:13:28 +0200 Message-ID: <5ibe99F3o3ggpU1@mid.individual.net> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1187023394 25143 80.91.229.12 (13 Aug 2007 16:43:14 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 13 Aug 2007 16:43:14 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Mon Aug 13 18:42:56 2007 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1IKcy2-0005bz-UZ for geh-help-gnu-emacs@m.gmane.org; Mon, 13 Aug 2007 18:40:35 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IKcy2-0002Yt-AU for geh-help-gnu-emacs@m.gmane.org; Mon, 13 Aug 2007 12:40:34 -0400 Original-Path: shelby.stanford.edu!headwall.stanford.edu!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 20 Original-X-Trace: individual.net 4kgC71+h0H6+x6dlUiREfAWRfgj1SW9PPy+wjMGYTCg4TZY6NS Cancel-Lock: sha1:IBOHN6AlcIun/uYxr0yBWpvHA2Q= User-Agent: Thunderbird 1.5.0.12 (Windows/20070509) Original-Xref: shelby.stanford.edu gnu.emacs.help:150948 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:46523 Archived-At: Hi, how can I make Emacs scroll smoothly if I move the cursor to the right edge of the buffer? I am working with a text file with truncated lines, but everytime I am moving the cursor to the right edge it jumps back to the center of the screen, which is irritating as I have to find the cursor again and scroll it to the right edge to see the rest of the line. I am already having smooth scrolling in a vertical direction due to this code: (setq-default scroll-step 1) (setq-default scroll-conservatively 1000) (setq-default scroll-margin 5) (setq-default scroll-preserve-screen-position 't) Thanks for helping in advance, Will