help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Is there a way to move to next line in wrapped text?


From: Marco Parrone (marc0)
Subject: Re: Is there a way to move to next line in wrapped text?
Date: Tue, 06 Jan 2004 20:37:19 +0100
User-agent: Gnus/5.1003 (Gnus v5.10.3) Emacs/21.3.50 (gnu/linux)

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Jeff on Tue, 06 Jan 2004 18:52:40 GMT writes:

> I've been using emacs for programming for quite years. Works great.
> Recently I've been trying to use it for html and other straight text
> editing and keep running into one annoying feature: when I do Ctrl-p or
> Ctrl-n to move up or down a line, it goes to the next line in terms of
> linefeeds, not in terms of wrapped text. Are there keybindings I don't
> know about that will move up and down to the next 'literal' line in the
> window? (regardless of where linefeeds are?). If not, is there some other
> way to do this?

You can use `C-u 79 C-f' and `C-u 79 C-b' for example if you are
working in an 80 columns terminal.

Or you can define 2 new functions and 2 new keybindings in your
~/.emacs to do it.

The functions will look like

(defun forward-79-chars ()
  (interactive)
  (forward-char 79))

(defun backward-79-chars ()
  (interactive)
  (backward-char 79))

- -- 
Marco Parrone (marc0) - marc0@autistici.org
F7D4 527B DE97 4090 657B  6E4E 8B63 1167 (4507 0AD6)
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.3 (GNU/Linux)

iD8DBQE/+w5Ei2MRZ0UHCtYRAtkYAJ4ucwNZuGaKzwrc3aN20tNzxzXfQACfYi5l
vCTRG66BGJEWMoxjEpCvzBE=
=r5VV
-----END PGP SIGNATURE-----


reply via email to

[Prev in Thread] Current Thread [Next in Thread]