-
-
Save priyadarshan/2637666 to your computer and use it in GitHub Desktop.
Push mark when using ido-imenu
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; Push mark when using ido-imenu | |
(defvar push-mark-before-goto-char nil) | |
(defadvice goto-char (before push-mark-first activate) | |
(when push-mark-before-goto-char | |
(push-mark))) | |
(defun ido-imenu-push-mark () | |
(interactive) | |
(let ((push-mark-before-goto-char t)) | |
(ido-imenu))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment