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
|
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
| ||||
|
feedback
|
|
The function
| |||
|
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:
| |||
|
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). | |||
|
feedback
|
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