From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tassilo Horn Subject: Re: [OT-emacs] Scrolling horizontally Date: Tue, 01 Feb 2011 12:15:05 +0100 Message-ID: <87aaigvwee.fsf@member.fsf.org> References: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from [140.186.70.92] (port=47604 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PkECl-00005t-Rx for emacs-orgmode@gnu.org; Tue, 01 Feb 2011 06:15:28 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PkECk-0000xf-8K for emacs-orgmode@gnu.org; Tue, 01 Feb 2011 06:15:27 -0500 Received: from lo.gmane.org ([80.91.229.12]:53451) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PkECj-0000xX-Tm for emacs-orgmode@gnu.org; Tue, 01 Feb 2011 06:15:26 -0500 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1PkECe-0006q8-QD for emacs-orgmode@gnu.org; Tue, 01 Feb 2011 12:15:20 +0100 Received: from tsdh.uni-koblenz.de ([141.26.67.142]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 01 Feb 2011 12:15:20 +0100 Received: from tassilo by tsdh.uni-koblenz.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 01 Feb 2011 12:15:20 +0100 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Marcelo de Moraes Serpa writes: Hi Marcelo, > The only way I've found was to actually go to the long line and press > C-e, which is totally not what I would like :) ,----[ C-h f scroll-left RET ] | scroll-left is an interactive built-in function in `C source code'. | | It is bound to , C-x <. | | (scroll-left &optional ARG SET-MINIMUM) | | Scroll selected window display ARG columns left. | Default for ARG is window width minus 2. | Value is the total amount of leftward horizontal scrolling in | effect after the change. | If SET-MINIMUM is non-nil, the new scroll amount becomes the | lower bound for automatic scrolling, i.e. automatic scrolling | will not scroll a window to a column less than the value returned | by this function. This happens in an interactive call. `---- ,----[ C-h f scroll-right RET ] | scroll-right is an interactive built-in function in `C source code'. | | It is bound to , C-x >. | | (scroll-right &optional ARG SET-MINIMUM) | | Scroll selected window display ARG columns right. | Default for ARG is window width minus 2. | Value is the total amount of leftward horizontal scrolling in | effect after the change. | If SET-MINIMUM is non-nil, the new scroll amount becomes the | lower bound for automatic scrolling, i.e. automatic scrolling | will not scroll a window to a column less than the value returned | by this function. This happens in an interactive call. `---- As you can read, those scroll about one window width by default. If you want to have a more "smooth" horizontal scroll experience, you could wrap two custum commands around that call the default functions with a sufficiently small ARG. Bye, Tassilo