Mercurial > emacs
view lisp/emulation/pc-mode.el @ 11550:11a7257fc6fa
(tpu-search-internal): Case-sensitive search if search
string contains upper-case.
tpu-check-search-case): New function.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 25 Apr 1995 03:24:37 +0000 |
parents | 6f5c3bb789a5 |
children | afc9c0b4fbb5 |
line wrap: on
line source
(defun pc-bindings-mode () "Set up certain key bindings for PC compatibility. The keys affected are: DELETE (and its variants) delete forward instead of backward. HOME and END move to beginning and end of line C-HOME and C-END move to beginning and end of buffer." (interactive) (define-key function-key-map [delete] "\C-d") (define-key function-key-map [M-delete] [?\M-\C-d]) (global-set-key [C-M-delete] 'kill-sexp) (global-set-key [home] 'beginning-of-line) (global-set-key [end] 'end-of-line) (global-set-key [C-home] 'beginning-of-buffer) (global-set-key [C-end] 'end-of-buffer))