6.6 KiB
6.6 KiB
title | author | date | url | wordtwit_post_info | categories | ||
---|---|---|---|---|---|---|---|
カレント行をハイライト表示 | kazu634 | 2008-12-08 | /2008/12/08/_1169/ |
|
|
Highlight the Current Lineにまとめられていました。私はこんな感じでグレーになるように設定してみました。
highlight-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")
HL-LINE
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
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")