記事一覧

isearch に入った後、C-d と押すと次の一文字を拾ってきます。

(defun isearch-yank-char ()
"Pull next character from buffer into search string."
(interactive)
(isearch-yank-string
(save-excursion
(and (not isearch-forward) isearch-other-end
(goto-char isearch-other-end))
(buffer-substring (point) (1+ (point))))))
(define-key isearch-mode-map "\C-d" 'isearch-yank-char)
白井さん作です。

x-face-1.3.6.20.tar.gz

x-face-1.3.6.20.tar.gz がリリースされています。

Mew summary の表示変更

開発版の Mew 3.0.54 から mew-scan-fields-alias が変更されました。
これに伴い Mew summary の表示変更 を修正しました。

xcite.el,v 1.43

xcite.el,v 1.43 がリリースされています。
私なりの修正の patch は無事当たります。

追加:Emacs21.1 に特有な設定

;; cursor の blink を止める
(blink-cursor-mode 0)
;; active でない window の空 cursor を出さない
(setq cursor-in-non-selected-windows nil)