Created
December 18, 2012 11:02
-
-
Save shishi/4327137 to your computer and use it in GitHub Desktop.
Emacs 実践入門の anything-for-document が便利だったので helm 用に作りなおした!
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
;; helm-for-document | |
(require 'helm-elisp) | |
(setq helm-for-document-sources-info | |
(list | |
helm-c-source-info-emacs | |
helm-c-source-info-elisp | |
helm-c-source-info-gnus | |
helm-c-source-info-pages | |
helm-c-source-info-org | |
helm-c-source-info-cl)) | |
(setq helm-for-document-sources | |
(nconc | |
(mapcar (lambda (func) | |
(funcall func)) | |
'(helm-c-source-emacs-commands | |
helm-c-source-emacs-functions | |
helm-c-source-emacs-variables | |
helm-c-source-emacs-faces | |
helm-c-source-helm-attributes)) | |
helm-for-document-sources-info)) | |
(defun helm-for-document () | |
"Preconfigured `helm' for helm-for-document." | |
(interactive) | |
(helm | |
:sources helm-for-document-sources | |
:input (thing-at-point 'symbol) | |
:resume nil | |
:preselect nil | |
:buffer "*helm for document*" | |
:candidate-number-limit 20)) | |
(define-key global-map (kbd "M-s-d") 'helm-for-document) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment