From: Emanuel Berg <incal@dataswamp.org>
To: help-gnu-emacs@gnu.org
Subject: Re: Is there equivalent C-l for columns?
Date: Wed, 15 Jun 2022 13:29:10 +0200 [thread overview]
Message-ID: <875yl288s9.fsf@dataswamp.org> (raw)
In-Reply-To: 87k09ixls0.fsf@web.de
Michael Heerdegen wrote:
> There are scroll commands that scroll horizontally
Indeed, for example
;; scroll horizontally
(put 'scroll-left 'disabled nil)
(put 'scroll-right 'disabled nil)
(setq hscroll-margin 1)
(setq hscroll-step 1)
(defun scroll-left-1 ()
(interactive)
(scroll-right 1 0) ) ; yes, "the opposite" here
(defun scroll-right-1 ()
(interactive)
(scroll-left 1 0) ) ; ditto
A lot more on civilized scrolling,
https://dataswamp.org/~incal/emacs-init/scroll.el
--
underground experts united
https://dataswamp.org/~incal
prev parent reply other threads:[~2022-06-15 11:29 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-06-15 8:21 Is there equivalent C-l for columns? Jean Louis
2022-06-15 9:00 ` Emanuel Berg
2022-06-15 10:29 ` Michael Heerdegen
2022-06-15 11:08 ` Michael Heerdegen
2022-06-15 11:36 ` Emanuel Berg
2022-06-15 11:43 ` Robert Pluim
2022-06-15 11:22 ` Jean Louis
2022-06-15 11:33 ` Michael Heerdegen
2022-06-15 11:40 ` Emanuel Berg
2022-06-15 11:29 ` Emanuel Berg [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=875yl288s9.fsf@dataswamp.org \
--to=incal@dataswamp.org \
--cc=help-gnu-emacs@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.