unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
From: Xah <xahlee@gmail.com>
To: help-gnu-emacs@gnu.org
Subject: Re: how to move the contents of the buffer one line up/down?
Date: Mon, 14 Jul 2008 13:27:14 -0700 (PDT)	[thread overview]
Message-ID: <fde49411-ce34-4559-b244-4f309fb2c901@x35g2000hsb.googlegroups.com> (raw)
In-Reply-To: mailman.14699.1216039847.18990.help-gnu-emacs@gnu.org

Like Alan Mackenzie, i also defined a keystroke to scroll screen up or
down by just 1 line. Had this for like 10 years.

basically i just have this:

(global-set-key (kbd "C-<up>") (lambda () (interactive) (scroll-down
2)))
(global-set-key (kbd "C-<down>") (lambda () (interactive) (scroll-up
2)))

However, this week i actually took them off. :D
Relying on mouse scroll wheel instead, or recenter (default to C-l),
just for a fresh change. If mouse is not available, well possibly i
don't need to scroll screen in such way since as far as i looked, vast
majority of major editors (X-code, Visual Studio, Eclipse) don't have
it (i might be wrong since i haven't yet checked in detail). (so this
is to experiment)

Part of the other reason is that i can free up the modifier+arrow
keyspace for more consistent use for, say, sexp navigation or other,
havn't really decided what.

  Xah
∑ http://xahlee.org/

☄

On Jul 14, 6:16 am, Alan Mackenzie <a...@muc.de> wrote:
> Hi, Tamas!
>
> On Mon, Jul 14, 2008 at 11:17:29AM +0000, Tamas K Papp wrote:
> > Hi,
> > I know that I can "center" my cursor with C-l.  But sometimes it would be
> > really useful to do the following: have the contents of the buffer move
> > up or down a couple of lines, with the cursor staying in the same place.
> > What function would do that?  Then I could bind it to a key.
>
> There isn't really a decent existing Emacs function, but it's very easy
> to write them.  In fact, these commands were the first I ever wrote.
> Here they are: I've bound them to <shift>-<up> and <shift>-<down>, so
> they'll only work if you're in a GUI system (or you've already enhanced
> your terminal keyboard setup).
>
> Additionally, <ctrl>-<up> moves point 6 lines up, and
> <ctrl>-<shift>-<up> scrolls the screen 6 lines; just the same for
> ...<down>.  And quite a few other goodies, too.  Try them!
>
> Enjoy!
>
> #########################################################################
> (defun scrollup-n (&optional n)
>   "Scroll the text up n (default 1) lines."
>   (interactive "p")
>   (scroll-up (or n 1))
> )
> (global-set-key [S-down] 'scrollup-n)
>
> (defun scrolldown-n (&optional n)
>   "Scroll the text down n (default 1) lines."
>   (interactive "p")
>   (scroll-down (or n 1))
> )
> (global-set-key [S-up] 'scrolldown-n)
>
> ...



      parent reply	other threads:[~2008-07-14 20:27 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-07-14 11:17 how to move the contents of the buffer one line up/down? Tamas K Papp
2008-07-14 11:49 ` Peter Dyballa
2008-07-14 11:51 ` Pascal J. Bourguignon
2008-07-14 11:55   ` Tamas K Papp
2008-07-14 12:49     ` Pascal J. Bourguignon
2008-07-14 20:14       ` Xah
2008-07-14 12:11 ` B. T. Raven
2008-07-14 13:16 ` Alan Mackenzie
     [not found] ` <mailman.14699.1216039847.18990.help-gnu-emacs@gnu.org>
2008-07-14 20:27   ` Xah [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

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=fde49411-ce34-4559-b244-4f309fb2c901@x35g2000hsb.googlegroups.com \
    --to=xahlee@gmail.com \
    --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.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).