blog/content/post/2008/12/08/2008-12-08-00001089.md

6.5 KiB
Raw Blame History

title author date wordtwit_post_info categories
カレント行をハイライト表示 kazu634 2008-12-08
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";}}
Emacs

Highlight the Current Lineにまとめられていました。私はこんな感じでグレーになるように設定してみました。

f:id:sirocco634:20081208230254p:image

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")

他にもたくさんあるよ