Switch to recommended form of GPLv3 permissions notice.
[bpt/emacs.git] / lisp / mb-depth.el
CommitLineData
67832de1
KS
1;;; mb-depth.el --- Indicate minibuffer-depth in prompt
2;;
dcb8ac09 3;; Copyright (C) 2006, 2007, 2008 Free Software Foundation, Inc.
67832de1
KS
4;;
5;; Author: Miles Bader <miles@gnu.org>
6;; Keywords: convenience
7
8;; This file is part of GNU Emacs.
9
eb3fa2cf 10;; GNU Emacs is free software: you can redistribute it and/or modify
67832de1 11;; it under the terms of the GNU General Public License as published by
eb3fa2cf
GM
12;; the Free Software Foundation, either version 3 of the License, or
13;; (at your option) any later version.
67832de1
KS
14
15;; GNU Emacs is distributed in the hope that it will be useful,
16;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18;; GNU General Public License for more details.
19
20;; You should have received a copy of the GNU General Public License
eb3fa2cf 21;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
67832de1
KS
22
23;;; Commentary:
24;;
25;; Defines the minor mode `minibuffer-indicate-depth-mode'.
26;;
27;; When active, any recursive use of the minibuffer will show
28;; the recursion depth in the minibuffer prompt. This is only
29;; useful if `enable-recursive-minibuffers' is non-nil.
30
31;;; Code:
32
3d0910ae
JB
33(defvar minibuf-depth-indicator-function nil
34 "If non-nil, function to set up the minibuffer depth indicator.
35It is called with one argument, the minibuffer depth,
36and must return a string.")
37
67832de1
KS
38;; An overlay covering the prompt. This is a buffer-local variable in
39;; each affected minibuffer.
40;;
41(defvar minibuf-depth-overlay)
42(make-variable-buffer-local 'minibuf-depth-overlay)
43
44;; This function goes on minibuffer-setup-hook
45(defun minibuf-depth-setup-minibuffer ()
46 "Set up a minibuffer for `minibuffer-indicate-depth-mode'.
47The prompt should already have been inserted."
48 (when (> (minibuffer-depth) 1)
49 (setq minibuf-depth-overlay (make-overlay (point-min) (1+ (point-min))))
50 (overlay-put minibuf-depth-overlay 'before-string
3d0910ae
JB
51 (if minibuf-depth-indicator-function
52 (funcall minibuf-depth-indicator-function (minibuffer-depth))
53 (propertize (format "[%d]" (minibuffer-depth)) 'face 'highlight)))
67832de1
KS
54 (overlay-put minibuf-depth-overlay 'evaporate t)))
55
56;;;###autoload
57(define-minor-mode minibuffer-indicate-depth-mode
58 "Toggle Minibuffer Indicate Depth mode.
59When active, any recursive use of the minibuffer will show
60the recursion depth in the minibuffer prompt. This is only
61useful if `enable-recursive-minibuffers' is non-nil.
62
63With prefix argument ARG, turn on if positive, otherwise off.
64Returns non-nil if the new state is enabled."
65 :global t
66 :group 'minibuffer
67 (if minibuffer-indicate-depth-mode
68 ;; Enable the mode
69 (add-hook 'minibuffer-setup-hook 'minibuf-depth-setup-minibuffer)
70 ;; Disable the mode
71 (remove-hook 'minibuffer-setup-hook 'minibuf-depth-setup-minibuffer)))
72
73(provide 'mb-depth)
74
c4837415 75;; arch-tag: 50224089-5bf5-46f8-803d-18f018c5eacf
67832de1 76;;; mb-depth.el ends here