@peccul is peccu

(love peccu '(emacs lisp cat outdoor bicycle mac linux coffee))

special-displayの設定

*Completions*とかを別のフレームに出してみたかって,special-display-*について - http://rubikitch.com/に移転しましたを参考にちまちま書いたのがこれ.もっといじろうと思ったまま放置されてた.

;; 専用のフレームにバッファを表示する
(setq special-display-buffer-names
      '("*Help*" "*Completions*" "*interpretation*" "*Occur*" "*svn-diff*"))
;; /Applications/Emacs.app/Contents/Resources/lisp/frame.el
(setq special-display-frame-alist '(
                                    (top . 292)
                                    (left . 992)
                                    (width . 35)
                                    (height . 30)
                                    (title . "emacs-special")
                                    (font . "-*-*-*-*-*-*-10-*-*-*-c-*-*-*")
                                    ))