Mercurial > emacs
annotate lisp/emulation/pc-mode.el @ 80741:1f63840526a9
(mac_handle_text_input_event):
Check if display is up to date before accessing current matrix.
author | YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> |
---|---|
date | Wed, 20 Aug 2008 09:05:31 +0000 |
parents | d6d821e3ae21 |
children | 606f2d163a64 1e3a407766b9 |
rev | line source |
---|---|
38414
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
18383
diff
changeset
|
1 ;;; pc-mode.el --- emulate certain key bindings used on PCs |
14169 | 2 |
74466 | 3 ;; Copyright (C) 1995, 2001, 2002, 2003, 2004, 2005, |
79705 | 4 ;; 2006, 2007, 2008 Free Software Foundation, Inc. |
12372
91dc931a32c8
(pc-bindings-mode): Add autoload.
Richard M. Stallman <rms@gnu.org>
parents:
11748
diff
changeset
|
5 |
38695 | 6 ;; Maintainer: FSF |
12372
91dc931a32c8
(pc-bindings-mode): Add autoload.
Richard M. Stallman <rms@gnu.org>
parents:
11748
diff
changeset
|
7 ;; Keywords: emulations |
91dc931a32c8
(pc-bindings-mode): Add autoload.
Richard M. Stallman <rms@gnu.org>
parents:
11748
diff
changeset
|
8 |
91dc931a32c8
(pc-bindings-mode): Add autoload.
Richard M. Stallman <rms@gnu.org>
parents:
11748
diff
changeset
|
9 ;; This file is part of GNU Emacs. |
91dc931a32c8
(pc-bindings-mode): Add autoload.
Richard M. Stallman <rms@gnu.org>
parents:
11748
diff
changeset
|
10 |
91dc931a32c8
(pc-bindings-mode): Add autoload.
Richard M. Stallman <rms@gnu.org>
parents:
11748
diff
changeset
|
11 ;; GNU Emacs is free software; you can redistribute it and/or modify |
91dc931a32c8
(pc-bindings-mode): Add autoload.
Richard M. Stallman <rms@gnu.org>
parents:
11748
diff
changeset
|
12 ;; it under the terms of the GNU General Public License as published by |
78218
ac0efac52065
Switch license to GPLv3 or later.
Glenn Morris <rgm@gnu.org>
parents:
75346
diff
changeset
|
13 ;; the Free Software Foundation; either version 3, or (at your option) |
12372
91dc931a32c8
(pc-bindings-mode): Add autoload.
Richard M. Stallman <rms@gnu.org>
parents:
11748
diff
changeset
|
14 ;; any later version. |
14169 | 15 |
12372
91dc931a32c8
(pc-bindings-mode): Add autoload.
Richard M. Stallman <rms@gnu.org>
parents:
11748
diff
changeset
|
16 ;; GNU Emacs is distributed in the hope that it will be useful, |
91dc931a32c8
(pc-bindings-mode): Add autoload.
Richard M. Stallman <rms@gnu.org>
parents:
11748
diff
changeset
|
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
91dc931a32c8
(pc-bindings-mode): Add autoload.
Richard M. Stallman <rms@gnu.org>
parents:
11748
diff
changeset
|
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
91dc931a32c8
(pc-bindings-mode): Add autoload.
Richard M. Stallman <rms@gnu.org>
parents:
11748
diff
changeset
|
19 ;; GNU General Public License for more details. |
14169 | 20 |
12372
91dc931a32c8
(pc-bindings-mode): Add autoload.
Richard M. Stallman <rms@gnu.org>
parents:
11748
diff
changeset
|
21 ;; You should have received a copy of the GNU General Public License |
14169 | 22 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
64085 | 23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
24 ;; Boston, MA 02110-1301, USA. | |
12372
91dc931a32c8
(pc-bindings-mode): Add autoload.
Richard M. Stallman <rms@gnu.org>
parents:
11748
diff
changeset
|
25 |
38414
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
18383
diff
changeset
|
26 ;;; Commentary: |
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
18383
diff
changeset
|
27 |
14169 | 28 ;;; Code: |
12372
91dc931a32c8
(pc-bindings-mode): Add autoload.
Richard M. Stallman <rms@gnu.org>
parents:
11748
diff
changeset
|
29 |
91dc931a32c8
(pc-bindings-mode): Add autoload.
Richard M. Stallman <rms@gnu.org>
parents:
11748
diff
changeset
|
30 ;;;###autoload |
11344 | 31 (defun pc-bindings-mode () |
32 "Set up certain key bindings for PC compatibility. | |
33 The keys affected are: | |
11748 | 34 Delete (and its variants) delete forward instead of backward. |
35 C-Backspace kills backward a word (as C-Delete normally would). | |
36 M-Backspace does undo. | |
37 Home and End move to beginning and end of line | |
38 C-Home and C-End move to beginning and end of buffer. | |
39 C-Escape does list-buffers." | |
11344 | 40 |
41 (interactive) | |
42 (define-key function-key-map [delete] "\C-d") | |
11747 | 43 (define-key function-key-map [M-delete] [?\M-d]) |
44 (define-key function-key-map [C-delete] [?\M-d]) | |
11344 | 45 (global-set-key [C-M-delete] 'kill-sexp) |
11747 | 46 (global-set-key [C-backspace] 'backward-kill-word) |
47 (global-set-key [M-backspace] 'undo) | |
11344 | 48 |
11748 | 49 (global-set-key [C-escape] 'list-buffers) |
50 | |
11344 | 51 (global-set-key [home] 'beginning-of-line) |
52 (global-set-key [end] 'end-of-line) | |
53 (global-set-key [C-home] 'beginning-of-buffer) | |
54 (global-set-key [C-end] 'end-of-buffer)) | |
55 | |
18383 | 56 (provide 'pc-mode) |
57 | |
52401 | 58 ;;; arch-tag: df007c05-f885-4cd0-8c1e-487d0f8dd9c9 |
38414
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
18383
diff
changeset
|
59 ;;; pc-mode.el ends here |