Emacs Lisp TIPS なんでこれ今まで使ってなかったんだろう…。 考えてみたらいちいちコマンドラインから「ruby hoge.rb」とかって実行するのって面倒だよなぁ。 「smart-compile」を使うと、ファイルを編集中に自分の好きなバインドでコンパイルを実行できて 結果を分割されたウィンドウで確認することができる。 以下僕の導入手順。 詳しい説明はリンク先を参照のこと。 smart-compile.elをダウンロードしてロードパスの通った場所に置く 以下の内容を .emacs に追加する ;;; smart-compile (require 'smart-compile) (global-set-key "\C-x\C-x" 'smart-compile) (setq compilation-window-height 15) ;; デフォルトは画面の下半分 elisp