all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: "Andreas Röhler" <andreas.roehler@easy-emacs.de>
To: help-gnu-emacs@gnu.org
Subject: Re: Tips for quick jumping back and forth
Date: Sat, 07 Jul 2012 08:45:36 +0200	[thread overview]
Message-ID: <4FF7DB10.2010909@easy-emacs.de> (raw)
In-Reply-To: <CAGdT1gr07RZG4GOa3JuK7tAosxF3XPRQNxfw+qvCMX1zyNgV8A@mail.gmail.com>

Am 07.07.2012 07:43, schrieb C K Kashyap:
> Dear Emacs friends,
>
> I need some tips for quick jumping around. As in, say I'm editing a line
> and need to go up a couple of paragraphs to edit something and then resume
> at my original position.
> The way I used to accomplish this in Vi was using mm to mark the current
> position into m register and then go somewhere and come back by pressing 'm
>
> Now, I know that in emacs I can do it using C-x-r-<SPC> to mark a position
> into a register and then jump back to it usng C-x-r-j ... is there a better
> way? Rather, what's a better way?
>
> Regards,
> Kashyap
>

use a couple of hard-coded register-commands which got keys

for example

(global-set-key [(control kp-1)] 'gehe-zu-register-x)

with (control u) (control kp-1) the point is registered

(control kp-1) will jump back to it

(defun gehe-zu-register-x (&optional arg)
   "With C-u remember buffer and point"
   (interactive "P")
   (if arg
       (progn
	(window-configuration-to-register ?x)
	(message "%s" "Jump back with \[C-kp-1] or \\C-x j x"))
     (jump-to-register ?x)
     (message "%s"   "With Arg: remember point and buffer")))


Cheers,

Andreas



  parent reply	other threads:[~2012-07-07  6:45 UTC|newest]

Thread overview: 29+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-07-07  5:43 Tips for quick jumping back and forth C K Kashyap
2012-07-07  6:19 ` Jambunathan K
2012-07-11  9:57   ` Philipp Haselwarter
2012-07-07  6:45 ` Andreas Röhler [this message]
2012-07-07 13:56 ` Francesco Mazzoli
     [not found] ` <mailman.4249.1341669396.855.help-gnu-emacs@gnu.org>
2012-07-07 14:44   ` notbob
2012-07-20 13:02     ` Kevin Rodgers
2012-07-20 13:15       ` Jambunathan K
2012-07-09  2:59 ` Le Wang
     [not found] <mailman.4232.1341639863.855.help-gnu-emacs@gnu.org>
2012-07-07  8:02 ` José A. Romero L.
2012-07-07 10:48 ` Xah Lee
2012-07-08  4:25 ` B. T. Raven
2012-07-12  0:04 ` Edward at Work
  -- strict thread matches above, loose matches on Subject: below --
2012-07-07 13:39 Dmitry Gutov
2012-07-07 15:27 Dmitry Gutov
2012-07-08  3:28 ` C K Kashyap
2012-07-08  3:31   ` suvayu ali
2012-07-08  3:35     ` C K Kashyap
2012-07-09  2:01     ` Ken Goldman
     [not found]   ` <mailman.4284.1341718295.855.help-gnu-emacs@gnu.org>
2012-07-08  3:47     ` rusi
     [not found] ` <mailman.4283.1341718129.855.help-gnu-emacs@gnu.org>
2012-07-08 17:28   ` Xah Lee
2012-07-11 13:36 Dmitry Gutov
2012-07-11 14:40 ` Eric Abrahamsen
2012-07-11 15:02 ` Drew Adams
2012-07-11 17:31   ` Dmitry Gutov
2012-07-11 18:33     ` Drew Adams
2012-07-11 21:03       ` Dmitry Gutov
2012-07-11 23:44         ` Drew Adams
2012-07-12 21:30           ` Dmitry Gutov

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=4FF7DB10.2010909@easy-emacs.de \
    --to=andreas.roehler@easy-emacs.de \
    --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.