2012年12月12日

color-theme で 行表示して、 twittering-mode のメニュー、1行目が消え、ミニバッファが真っ黒に。


* 画像はクリックしたら大きくなります。

[正常]

[異常]

global-linum-mode をオンにしておいて、color-theme を設定し、
twittering-mode で、:replies を開くと、1行目が消え、ミニバッファが真っ
黒になる。。。。うわーん。対処法は不明

[init.el]
=====
;; バッファ中の行番号表示
(global-linum-mode t)

;; ------------------------------------------------------------------------
;; @ color-theme.el
;; ~/tmp $ wget http://download.savannah.gnu.org/releases/color-theme/color-theme-6.6.0.zip
;; ~/tmp $ unzip color-theme-6.6.0.zip
;; ~/tmp $ mv color-theme-6.6.0 ~/.emacs.d/

(add-hook 'window-setup-hook
(lambda ()
(modify-frame-parameters (selected-frame) initial-frame-alist)))

(add-to-list 'load-path
"~/.emacs.d/color-theme-6.6.0")
(require 'color-theme)
(color-theme-initialize)
(color-theme-gnome2)

;; @ twittering-mode
;; ~/.emacs.d $ git clone git://github.com/hayamiz/twittering-mode.git
;; C-x C-f ~/.emacs.d/twittering-mode/twitterpass.el
;; (setq twittering-password "pass")
;; C-x k
;; ~/.emacs.d $ cd twittering-mode/
;; ~/.emacs.d/twittering-mode $ chmod 600 twitterpass.el

(add-to-list 'load-path "~/.emacs.d/twittering-mode")
(require 'twittering-mode)
(setq twittering-icon-mode t)
(setq twittering-timer-interval 300) ; Update your timeline each 300 seconds (5 minutes)
;; (setq twittering-auth-method 'xauth) ; xauth だとダイレクトメッセージが読めないので注意
(setq twittering-auth-method 'oauth)
(setq twittering-username "clothoid")
(load-file "~/.emacs.d/twittering-mode/twitterpass.el")

(setq twittering-initial-timeline-spec-string
'(
":favorites"
":replies"
":direct_messages"
":home"
))

(add-hook 'twittering-mode-hook
(lambda ()
(mapc (lambda (pair)
(let ((key (car pair))
(func (cdr pair)))
(define-key twittering-mode-map
(read-kbd-macro key) func)))
'(("F" . twittering-friends-timeline)
("R" . twittering-replies-timeline)
("U" . twittering-user-timeline)
("W" . twittering-update-status-interactive)))))

0 件のコメント:

コメントを投稿