Skip to content

Instantly share code, notes, and snippets.

@fgabolde
Created March 11, 2014 09:41
Show Gist options
  • Save fgabolde/9482517 to your computer and use it in GitHub Desktop.
Save fgabolde/9482517 to your computer and use it in GitHub Desktop.
Example imenu configuration
;; keybinding to summon up imenu
(require 'imenu)
(global-set-key (kbd "C-c C-d") 'imenu)
;; display current defun in modeline
(which-function-mode 1)
(custom-set-variables
'(imenu-after-jump-hook (quote ((lambda nil (recenter 10)))))
'(imenu-auto-rescan t))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment