blog/content/post/2009/10/17/2009-10-17-00001242.md

2.3 KiB

title author date wordtwit_post_info categories
モード単位で anything のソースを指定する kazu634 2009-10-17
O:8:"stdClass":13:{s:6:"manual";b:0;s:11:"tweet_times";i:1;s:5:"delay";i:0;s:7:"enabled";i:1;s:10:"separation";s:2:"60";s:7:"version";s:3:"3.7";s:14:"tweet_template";b:0;s:6:"status";i:2;s:6:"result";a:0:{}s:13:"tweet_counter";i:2;s:13:"tweet_log_ids";a:1:{i:0;i:4843;}s:9:"hash_tags";a:0:{}s:8:"accounts";a:1:{i:0;s:7:"kazu634";}}
Emacs

モードが起動したら実行される「 nnn-mode-hook 」というのがあるから、それに無名関数を入れるといいらしい。そのバッファーだけ、 anything-sources を個別に指定する。こんな感じ:

;; はてなモード用の設定
(add-hook 'hatena-mode-hook
(lambda ()
(when (require 'anything nil t)
(make-variable-buffer-local 'anything-sources)
(setq anything-sources
;; ここで source をリストアップする
(list anything-c-source-yasnippet
anything-c-source-flickr
anything-c-source-files-in-current-dir)))))