elisp - Is there emacs capability for visiting last edits? -


in jetbrains products, there's handy key binding lets visit spots made edit. hit key once go last edit (file , location), , keep hitting key go earlier edits. it's typically when editing want editing same places on , on again, , if 1 has many buffers open, many of not edited, more useful.

emacs has mark ring, that's not quite same thing.

on related note, there functionality in magit, emacs git add-on, jump edits?

there gotolastchange allows travel along chain of undo locations. can assign key:

(global-set-key "\c-x\c-\\" 'goto-last-change)


Comments

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -