Skip to content

Instantly share code, notes, and snippets.

@sluchin
Created March 1, 2013 16:55
Show Gist options
  • Save sluchin/5066033 to your computer and use it in GitHub Desktop.
Save sluchin/5066033 to your computer and use it in GitHub Desktop.
;; 関数名表示をトグルする
(defun toggle-which-func-mode ()
(interactive)
(if which-function-mode
(which-function-mode -1)
(which-function-mode 1))
(if which-function-mode
(setq-default header-line-format
'(which-function-mode ("" which-func-format)))
(setq-default header-line-format nil)))
(define-key global-map (kbd "<f9>") 'toggle-which-func-mode)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment