Raveen Kumar

Mark ring and Jumplist with emacs and helm

Like vim, emacs has an alternative to jump list. It is called mark rings but its difficult to use. Fortunately there is a helm and counsel function to help us navigate the mark rings. Add this following command to emacs init file,

(global-set-key (kbd "C-c '") 'helm-all-mark-rings)

I use C-c ' to browse mark rings.

#Emacs #Programming #Config