What lisp config command would bind this command, if it's not already bound?

Also, If I wanted to bind C-x h, C-M-\, and , to a single C-M-\, how would this be done?

Thanks in advance

link|improve this question

This isn't an answer to your question, but do you know about C-u C-SPC? It "pops" the mark and takes you to where the last mark was. I find it very useful, especially since I usually only set the mark once or twice per any particular location I'm editing, so it only takes a couple of pops to go back to much older edit locations. – Tikhon Jelvis Dec 12 '11 at 5:23
feedback

3 Answers

up vote 4 down vote accepted

The function session-jump-to-last-change is part of session.el which I typically bind to these two key sequences for convenience: C-xC-/ and C-A-/. I pick those keys because it is similar to undo which is bound by default to C-/.

(autoload 'session-jump-to-last-change "session")
(global-set-key (kbd "C-x C-/") 'session-jump-to-last-change)
(global-set-key (kbd "C-A-/") 'session-jump-to-last-change)
link|improve this answer
feedback

By default there is no command to move to the location of the last edit, but you can easily add it by using something like http://www.emacswiki.org/emacs/GotoLastChange - download the elisp file, put it in your load-path and bind it:

(autoload 'goto-last-change "goto-last-change"
   "Set point to the position of the last change." t)
;; bind to C-x C-\
(global-set-key (kbd "C-x C-\\") 'goto-last-change)
link|improve this answer
You get this basic functionality plus a lot more using session.el. – aculich Dec 12 '11 at 4:40
feedback

I do this all the time by typing C-/ (undo last edit), then C-f (or any other trivial movement command), then C-/ (redo last edit).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.