I am using Emacs v24.3 on Windows 7. I am trying to learn how to reassign key bindings.
I created a .emacs file in my home directory and contains one line:
(global-set-key (kbd "Cf") 'isearch-forward)
I am running Emacs using runemacs.exe. I find a nonexistent file, type a few words (click at the beginning of the text) and type CF to find. An I-search: prompt will appear, and I can step by step search for the text. So far so.
The problem is that the behavior should be the same as the default isearch-forward keystroke Cs , it is not. When I type CF second time to search for the next row event, the only thing that happens is the I-search prompt that appears in the minibuffer.
I cannot search for the next line of the line. In addition, the Del key should repeat the search in the opposite direction. This does not happen to me when I perform a search using CF (although this happens when searching using Cs .).
So this one key match seems to break two things. Am I misconfigured? Or are these errors? If I am mistaken, how do I match CF with the isearch-forward command?
source share