--- title: カレント行をハイライト表示 author: kazu634 date: 2008-12-08 url: /2008/12/08/_1169/ wordtwit_post_info: - '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:4429;}s:9:"hash_tags";a:0:{}s:8:"accounts";a:1:{i:0;s:7:"kazu634";}}' categories: - Emacs ---
Highlight the Current Lineにまとめられていました。私はこんな感じでグレーになるように設定してみました。
highlight-current-line.elをパスの通ったところにおいて、.emacsに次のように書きませう。
(require 'highlight-current-line) (highlight-current-line-on t) ;; To customize the background color (set-face-background 'highlight-current-line-face "light yellow")
GNU Emacs21はビルトイン関数が用意されていたよ。グローバルにその関数をオンにするには次のようにするよ。
(global-hl-line-mode 1) ;; To customize the background color (set-face-background 'hl-line "#330") ;; Emacs 22 Only ;(set-face-background 'highlight "#330") ;; Emacs 21 Only
(Emacs21とEmacs22の時の違いに注意してね)
highline.elはhl-line, highlight-current-line, そしてlinemenuから発想を得て作られたよ。XEmacs向けならこれが一番いい選択肢だよ。使うときは次のようにしてね。
(require 'highline) (highline-mode 1) ;; To customize the background color (set-face-background 'highline-face "#222")