emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: isearch-yank-char


From: Juri Linkov
Subject: Re: isearch-yank-char
Date: Tue, 27 Apr 2004 12:11:05 +0300
User-agent: Gnus/5.110002 (No Gnus v0.2) Emacs/21.3.50 (gnu/linux)

> Here is an idea: to create a special mode, say, conservative-mode,

It could be implemented as a single function, but with one requirement
that it should be maintained by Emacs developers.

Example:

(defun conservative-mode (&optional version)
  (interactive)

  (when (or (not version) (equal version "21.4"))
    ;; Restore old key bindings
    (define-key isearch-mode-map "\C-f" 'isearch-other-control-char)
    (define-key isearch-mode-map "\C-b" 'isearch-other-control-char))

    ...)

This really looks like the `Antinews' node of the Emacs manual :-)

-- 
Juri Linkov
http://www.jurta.org/emacs/





reply via email to

[Prev in Thread] Current Thread [Next in Thread]