Mercurial > emacs
annotate lisp/delsel.el @ 17988:2e732d9d5b79
(dired-find-file): Likewise.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Wed, 28 May 1997 03:35:42 +0000 |
parents | 852464ce5d6a |
children | ff3876f9e299 |
rev | line source |
---|---|
2903
fa41174db2fa
Renamed from pending-del.el.
Richard M. Stallman <rms@gnu.org>
parents:
2233
diff
changeset
|
1 ;;; delsel.el --- delete selection if you insert |
2233
fb0ed5a1d0f3
Add standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2074
diff
changeset
|
2 |
14169 | 3 ;; Copyright (C) 1992 Free Software Foundation, Inc. |
2233
fb0ed5a1d0f3
Add standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2074
diff
changeset
|
4 |
fb0ed5a1d0f3
Add standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2074
diff
changeset
|
5 ;; Author: Matthieu Devin <devin@lucid.com> |
17976 | 6 ;; Maintainer: FSF |
2233
fb0ed5a1d0f3
Add standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2074
diff
changeset
|
7 ;; Created: 14 Jul 92 |
fb0ed5a1d0f3
Add standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2074
diff
changeset
|
8 ;; Last change 18-Feb-93, devin. |
2073 | 9 |
14169 | 10 ;; This file is part of GNU Emacs. |
2073 | 11 |
14169 | 12 ;; GNU Emacs is free software; you can redistribute it and/or modify |
13 ;; it under the terms of the GNU General Public License as published by | |
14 ;; the Free Software Foundation; either version 2, or (at your option) | |
15 ;; any later version. | |
2073 | 16 |
14169 | 17 ;; GNU Emacs is distributed in the hope that it will be useful, |
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
20 ;; GNU General Public License for more details. | |
2073 | 21 |
14169 | 22 ;; You should have received a copy of the GNU General Public License |
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
25 ;; Boston, MA 02111-1307, USA. | |
2073 | 26 |
2233
fb0ed5a1d0f3
Add standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2074
diff
changeset
|
27 ;;; Commentary: |
2073 | 28 |
14169 | 29 ;; This file makes the active region be pending delete, meaning that |
30 ;; text inserted while the region is active will replace the region contents. | |
31 ;; This is a popular behavior of personal computers text editors. | |
2073 | 32 |
2233
fb0ed5a1d0f3
Add standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2074
diff
changeset
|
33 ;;; Code: |
fb0ed5a1d0f3
Add standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2074
diff
changeset
|
34 |
2903
fa41174db2fa
Renamed from pending-del.el.
Richard M. Stallman <rms@gnu.org>
parents:
2233
diff
changeset
|
35 (defvar delete-selection-mode t |
fa41174db2fa
Renamed from pending-del.el.
Richard M. Stallman <rms@gnu.org>
parents:
2233
diff
changeset
|
36 "*Non-nil means Delete Selection mode is enabled. |
fa41174db2fa
Renamed from pending-del.el.
Richard M. Stallman <rms@gnu.org>
parents:
2233
diff
changeset
|
37 In Delete Selection mode, when a region is highlighted, |
2074 | 38 insertion commands first delete the region and then insert.") |
39 | |
2073 | 40 (defun delete-active-region (&optional killp) |
2074 | 41 (if killp |
42 (kill-region (point) (mark)) | |
43 (delete-region (point) (mark))) | |
44 (setq mark-active nil) | |
45 (run-hooks 'deactivate-mark-hook) | |
46 t) | |
2073 | 47 |
2903
fa41174db2fa
Renamed from pending-del.el.
Richard M. Stallman <rms@gnu.org>
parents:
2233
diff
changeset
|
48 (defun delete-selection-pre-hook () |
fa41174db2fa
Renamed from pending-del.el.
Richard M. Stallman <rms@gnu.org>
parents:
2233
diff
changeset
|
49 (if (and delete-selection-mode |
2074 | 50 (not buffer-read-only) |
51 transient-mark-mode mark-active) | |
52 (let ((type (and (symbolp this-command) | |
2903
fa41174db2fa
Renamed from pending-del.el.
Richard M. Stallman <rms@gnu.org>
parents:
2233
diff
changeset
|
53 (get this-command 'delete-selection)))) |
2074 | 54 (cond ((eq type 'kill) |
55 (delete-active-region t)) | |
12790
afe7f3c735a3
(delete-selection-pre-hook): New type value `yank'.
Richard M. Stallman <rms@gnu.org>
parents:
11589
diff
changeset
|
56 ((eq type 'yank) |
afe7f3c735a3
(delete-selection-pre-hook): New type value `yank'.
Richard M. Stallman <rms@gnu.org>
parents:
11589
diff
changeset
|
57 ;; Before a yank command, |
afe7f3c735a3
(delete-selection-pre-hook): New type value `yank'.
Richard M. Stallman <rms@gnu.org>
parents:
11589
diff
changeset
|
58 ;; make sure we don't yank the same region |
afe7f3c735a3
(delete-selection-pre-hook): New type value `yank'.
Richard M. Stallman <rms@gnu.org>
parents:
11589
diff
changeset
|
59 ;; that we are going to delete. |
afe7f3c735a3
(delete-selection-pre-hook): New type value `yank'.
Richard M. Stallman <rms@gnu.org>
parents:
11589
diff
changeset
|
60 ;; That would make yank a no-op. |
afe7f3c735a3
(delete-selection-pre-hook): New type value `yank'.
Richard M. Stallman <rms@gnu.org>
parents:
11589
diff
changeset
|
61 (if (string= (buffer-substring (point) (mark)) |
afe7f3c735a3
(delete-selection-pre-hook): New type value `yank'.
Richard M. Stallman <rms@gnu.org>
parents:
11589
diff
changeset
|
62 (car kill-ring)) |
afe7f3c735a3
(delete-selection-pre-hook): New type value `yank'.
Richard M. Stallman <rms@gnu.org>
parents:
11589
diff
changeset
|
63 (current-kill 1)) |
afe7f3c735a3
(delete-selection-pre-hook): New type value `yank'.
Richard M. Stallman <rms@gnu.org>
parents:
11589
diff
changeset
|
64 (delete-active-region nil)) |
2074 | 65 ((eq type 'supersede) |
2925 | 66 (if (delete-active-region nil) |
2074 | 67 (setq this-command '(lambda () (interactive))))) |
68 (type | |
2925 | 69 (delete-active-region nil)))))) |
2074 | 70 |
2903
fa41174db2fa
Renamed from pending-del.el.
Richard M. Stallman <rms@gnu.org>
parents:
2233
diff
changeset
|
71 (add-hook 'pre-command-hook 'delete-selection-pre-hook) |
2073 | 72 |
2903
fa41174db2fa
Renamed from pending-del.el.
Richard M. Stallman <rms@gnu.org>
parents:
2233
diff
changeset
|
73 (put 'self-insert-command 'delete-selection t) |
9533
b589ba0d8960
(self-insert-iso): Add delete-selection property.
Richard M. Stallman <rms@gnu.org>
parents:
2925
diff
changeset
|
74 (put 'self-insert-iso 'delete-selection t) |
2073 | 75 |
12790
afe7f3c735a3
(delete-selection-pre-hook): New type value `yank'.
Richard M. Stallman <rms@gnu.org>
parents:
11589
diff
changeset
|
76 (put 'yank 'delete-selection 'yank) |
13077
65092cab3f43
(clipboard-yank): Add delete-selection property.
Richard M. Stallman <rms@gnu.org>
parents:
12790
diff
changeset
|
77 (put 'clipboard-yank 'delete-selection 'yank) |
2925 | 78 (put 'insert-register 'delete-selection t) |
2073 | 79 |
2903
fa41174db2fa
Renamed from pending-del.el.
Richard M. Stallman <rms@gnu.org>
parents:
2233
diff
changeset
|
80 (put 'delete-backward-char 'delete-selection 'supersede) |
fa41174db2fa
Renamed from pending-del.el.
Richard M. Stallman <rms@gnu.org>
parents:
2233
diff
changeset
|
81 (put 'backward-delete-char-untabify 'delete-selection 'supersede) |
fa41174db2fa
Renamed from pending-del.el.
Richard M. Stallman <rms@gnu.org>
parents:
2233
diff
changeset
|
82 (put 'delete-char 'delete-selection 'supersede) |
2073 | 83 |
2903
fa41174db2fa
Renamed from pending-del.el.
Richard M. Stallman <rms@gnu.org>
parents:
2233
diff
changeset
|
84 (put 'newline-and-indent 'delete-selection 't) |
fa41174db2fa
Renamed from pending-del.el.
Richard M. Stallman <rms@gnu.org>
parents:
2233
diff
changeset
|
85 (put 'newline 'delete-selection t) |
fa41174db2fa
Renamed from pending-del.el.
Richard M. Stallman <rms@gnu.org>
parents:
2233
diff
changeset
|
86 (put 'open-line 'delete-selection t) |
2073 | 87 |
2925 | 88 ;;;###autoload |
2903
fa41174db2fa
Renamed from pending-del.el.
Richard M. Stallman <rms@gnu.org>
parents:
2233
diff
changeset
|
89 (defalias 'pending-delete-mode 'delete-selection-mode) |
2925 | 90 ;;;###autoload |
2903
fa41174db2fa
Renamed from pending-del.el.
Richard M. Stallman <rms@gnu.org>
parents:
2233
diff
changeset
|
91 (defun delete-selection-mode (arg) |
fa41174db2fa
Renamed from pending-del.el.
Richard M. Stallman <rms@gnu.org>
parents:
2233
diff
changeset
|
92 "Toggle Delete Selection mode. |
2073 | 93 When ON, typed text replaces the selection if the selection is active. |
94 When OFF, typed text is just inserted at point." | |
2074 | 95 (interactive "P") |
2903
fa41174db2fa
Renamed from pending-del.el.
Richard M. Stallman <rms@gnu.org>
parents:
2233
diff
changeset
|
96 (setq delete-selection-mode |
fa41174db2fa
Renamed from pending-del.el.
Richard M. Stallman <rms@gnu.org>
parents:
2233
diff
changeset
|
97 (if (null arg) (not delete-selection-mode) |
2074 | 98 (> (prefix-numeric-value arg) 0))) |
11589
ba22258c5916
(delete-selection-mode): Use force-mode-line-update.
Karl Heuer <kwzh@gnu.org>
parents:
9533
diff
changeset
|
99 (force-mode-line-update)) |
2073 | 100 |
101 ;; This is very useful for cancelling a selection in the minibuffer without | |
102 ;; aborting the minibuffer. | |
103 (defun minibuffer-keyboard-quit () | |
104 "Abort recursive edit. | |
2925 | 105 In Delete Selection mode mode, if the mark is active, just deactivate it; |
106 then it takes a second C-g to abort the minibuffer." | |
2073 | 107 (interactive) |
2925 | 108 (if (and delete-selection-mode transient-mark-mode mark-active) |
109 (setq deactivate-mark t) | |
2073 | 110 (abort-recursive-edit))) |
111 | |
112 (define-key minibuffer-local-map "\C-g" 'minibuffer-keyboard-quit) | |
2903
fa41174db2fa
Renamed from pending-del.el.
Richard M. Stallman <rms@gnu.org>
parents:
2233
diff
changeset
|
113 (define-key minibuffer-local-ns-map "\C-g" 'minibuffer-keyboard-quit) |
fa41174db2fa
Renamed from pending-del.el.
Richard M. Stallman <rms@gnu.org>
parents:
2233
diff
changeset
|
114 (define-key minibuffer-local-completion-map "\C-g" 'minibuffer-keyboard-quit) |
fa41174db2fa
Renamed from pending-del.el.
Richard M. Stallman <rms@gnu.org>
parents:
2233
diff
changeset
|
115 (define-key minibuffer-local-must-match-map "\C-g" 'minibuffer-keyboard-quit) |
fa41174db2fa
Renamed from pending-del.el.
Richard M. Stallman <rms@gnu.org>
parents:
2233
diff
changeset
|
116 (define-key minibuffer-local-isearch-map "\C-g" 'minibuffer-keyboard-quit) |
2073 | 117 |
2925 | 118 (provide 'delsel) |
2073 | 119 |
2925 | 120 ;;; delsel.el ends here |