1993-05-19 19:08:12 +00:00
|
|
|
;;; delsel.el --- delete selection if you insert
|
1993-03-17 17:17:05 +00:00
|
|
|
|
1993-03-09 05:27:35 +00:00
|
|
|
;;; Copyright (C) 1992 Free Software Foundation, Inc.
|
1993-03-17 17:17:05 +00:00
|
|
|
|
|
|
|
;; Author: Matthieu Devin <devin@lucid.com>
|
|
|
|
;; Created: 14 Jul 92
|
|
|
|
;; Last change 18-Feb-93, devin.
|
1993-03-09 05:27:35 +00:00
|
|
|
|
|
|
|
;;; This file is part of GNU Emacs.
|
|
|
|
|
|
|
|
;;; GNU Emacs is free software; you can redistribute it and/or modify
|
|
|
|
;;; it under the terms of the GNU General Public License as published by
|
|
|
|
;;; the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
;;; any later version.
|
|
|
|
|
|
|
|
;;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
;;; along with GNU Emacs; see the file COPYING. If not, write to
|
|
|
|
;;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
1993-03-17 17:17:05 +00:00
|
|
|
;;; Commentary:
|
1993-03-09 05:27:35 +00:00
|
|
|
|
1993-03-17 17:17:05 +00:00
|
|
|
;;; This file makes the active region be pending delete, meaning that
|
1993-03-09 05:27:35 +00:00
|
|
|
;;; text inserted while the region is active will replace the region contents.
|
|
|
|
;;; This is a popular behavior of personal computers text editors.
|
|
|
|
|
1993-03-17 17:17:05 +00:00
|
|
|
;;; Code:
|
|
|
|
|
1993-05-19 19:08:12 +00:00
|
|
|
(defvar delete-selection-mode t
|
|
|
|
"*Non-nil means Delete Selection mode is enabled.
|
|
|
|
In Delete Selection mode, when a region is highlighted,
|
1993-03-09 05:37:50 +00:00
|
|
|
insertion commands first delete the region and then insert.")
|
|
|
|
|
1993-03-09 05:27:35 +00:00
|
|
|
(defun delete-active-region (&optional killp)
|
1993-03-09 05:37:50 +00:00
|
|
|
(if killp
|
|
|
|
(kill-region (point) (mark))
|
|
|
|
(delete-region (point) (mark)))
|
|
|
|
(setq mark-active nil)
|
|
|
|
(run-hooks 'deactivate-mark-hook)
|
|
|
|
t)
|
1993-03-09 05:27:35 +00:00
|
|
|
|
1993-05-19 19:08:12 +00:00
|
|
|
(defun delete-selection-pre-hook ()
|
|
|
|
(if (and delete-selection-mode
|
1993-03-09 05:37:50 +00:00
|
|
|
(not buffer-read-only)
|
|
|
|
transient-mark-mode mark-active)
|
|
|
|
(let ((type (and (symbolp this-command)
|
1993-05-19 19:08:12 +00:00
|
|
|
(get this-command 'delete-selection))))
|
1993-03-09 05:37:50 +00:00
|
|
|
(cond ((eq type 'kill)
|
|
|
|
(delete-active-region t))
|
|
|
|
((eq type 'supersede)
|
1993-05-20 14:02:07 +00:00
|
|
|
(if (delete-active-region nil)
|
1993-03-09 05:37:50 +00:00
|
|
|
(setq this-command '(lambda () (interactive)))))
|
|
|
|
(type
|
1993-05-20 14:02:07 +00:00
|
|
|
(delete-active-region nil))))))
|
1993-03-09 05:37:50 +00:00
|
|
|
|
1993-05-19 19:08:12 +00:00
|
|
|
(add-hook 'pre-command-hook 'delete-selection-pre-hook)
|
1993-03-09 05:27:35 +00:00
|
|
|
|
1993-05-19 19:08:12 +00:00
|
|
|
(put 'self-insert-command 'delete-selection t)
|
1993-03-09 05:27:35 +00:00
|
|
|
|
1993-05-19 19:08:12 +00:00
|
|
|
(put 'yank 'delete-selection t)
|
1993-05-20 14:02:07 +00:00
|
|
|
(put 'insert-register 'delete-selection t)
|
1993-03-09 05:27:35 +00:00
|
|
|
|
1993-05-19 19:08:12 +00:00
|
|
|
(put 'delete-backward-char 'delete-selection 'supersede)
|
|
|
|
(put 'backward-delete-char-untabify 'delete-selection 'supersede)
|
|
|
|
(put 'delete-char 'delete-selection 'supersede)
|
1993-03-09 05:27:35 +00:00
|
|
|
|
1993-05-19 19:08:12 +00:00
|
|
|
(put 'newline-and-indent 'delete-selection 't)
|
|
|
|
(put 'newline 'delete-selection t)
|
|
|
|
(put 'open-line 'delete-selection t)
|
1993-03-09 05:27:35 +00:00
|
|
|
|
1993-05-20 14:02:07 +00:00
|
|
|
;;;###autoload
|
1993-05-19 19:08:12 +00:00
|
|
|
(defalias 'pending-delete-mode 'delete-selection-mode)
|
1993-05-20 14:02:07 +00:00
|
|
|
;;;###autoload
|
1993-05-19 19:08:12 +00:00
|
|
|
(defun delete-selection-mode (arg)
|
|
|
|
"Toggle Delete Selection mode.
|
1993-03-09 05:27:35 +00:00
|
|
|
When ON, typed text replaces the selection if the selection is active.
|
|
|
|
When OFF, typed text is just inserted at point."
|
1993-03-09 05:37:50 +00:00
|
|
|
(interactive "P")
|
1993-05-19 19:08:12 +00:00
|
|
|
(setq delete-selection-mode
|
|
|
|
(if (null arg) (not delete-selection-mode)
|
1993-03-09 05:37:50 +00:00
|
|
|
(> (prefix-numeric-value arg) 0)))
|
|
|
|
(set-buffer-modified-p (buffer-modified-p))) ;No-op, but updates mode line.
|
1993-03-09 05:27:35 +00:00
|
|
|
|
|
|
|
;; This is very useful for cancelling a selection in the minibuffer without
|
|
|
|
;; aborting the minibuffer.
|
|
|
|
(defun minibuffer-keyboard-quit ()
|
|
|
|
"Abort recursive edit.
|
1993-05-20 14:02:07 +00:00
|
|
|
In Delete Selection mode mode, if the mark is active, just deactivate it;
|
|
|
|
then it takes a second C-g to abort the minibuffer."
|
1993-03-09 05:27:35 +00:00
|
|
|
(interactive)
|
1993-05-20 14:02:07 +00:00
|
|
|
(if (and delete-selection-mode transient-mark-mode mark-active)
|
|
|
|
(setq deactivate-mark t)
|
1993-03-09 05:27:35 +00:00
|
|
|
(abort-recursive-edit)))
|
|
|
|
|
|
|
|
(define-key minibuffer-local-map "\C-g" 'minibuffer-keyboard-quit)
|
1993-05-19 19:08:12 +00:00
|
|
|
(define-key minibuffer-local-ns-map "\C-g" 'minibuffer-keyboard-quit)
|
|
|
|
(define-key minibuffer-local-completion-map "\C-g" 'minibuffer-keyboard-quit)
|
|
|
|
(define-key minibuffer-local-must-match-map "\C-g" 'minibuffer-keyboard-quit)
|
|
|
|
(define-key minibuffer-local-isearch-map "\C-g" 'minibuffer-keyboard-quit)
|
1993-03-09 05:27:35 +00:00
|
|
|
|
1993-05-20 14:02:07 +00:00
|
|
|
(provide 'delsel)
|
1993-03-09 05:27:35 +00:00
|
|
|
|
1993-05-20 14:02:07 +00:00
|
|
|
;;; delsel.el ends here
|