81441
|
1 ;;; mb-depth.el --- Indicate minibuffer-depth in prompt
|
|
2 ;;
|
87665
|
3 ;; Copyright (C) 2006, 2007, 2008 Free Software Foundation, Inc.
|
81441
|
4 ;;
|
|
5 ;; Author: Miles Bader <miles@gnu.org>
|
|
6 ;; Keywords: convenience
|
|
7
|
|
8 ;; This file is part of GNU Emacs.
|
|
9
|
94678
|
10 ;; GNU Emacs is free software: you can redistribute it and/or modify
|
81441
|
11 ;; it under the terms of the GNU General Public License as published by
|
94678
|
12 ;; the Free Software Foundation, either version 3 of the License, or
|
|
13 ;; (at your option) any later version.
|
81441
|
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
|
94678
|
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
|
81441
|
22
|
|
23 ;;; Commentary:
|
|
24 ;;
|
97157
|
25 ;; Defines the minor mode `minibuffer-depth-indicate-mode'.
|
81441
|
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
|
97157
|
33 (defvar minibuffer-depth-indicator-function nil
|
85085
|
34 "If non-nil, function to set up the minibuffer depth indicator.
|
|
35 It is called with one argument, the minibuffer depth,
|
|
36 and must return a string.")
|
|
37
|
81441
|
38 ;; An overlay covering the prompt. This is a buffer-local variable in
|
|
39 ;; each affected minibuffer.
|
|
40 ;;
|
97157
|
41 (defvar minibuffer-depth-overlay)
|
|
42 (make-variable-buffer-local 'minibuffer-depth-overlay)
|
81441
|
43
|
|
44 ;; This function goes on minibuffer-setup-hook
|
97157
|
45 (defun minibuffer-depth-setup ()
|
|
46 "Set up a minibuffer for `minibuffer-depth-indicate-mode'.
|
81441
|
47 The prompt should already have been inserted."
|
|
48 (when (> (minibuffer-depth) 1)
|
97157
|
49 (setq minibuffer-depth-overlay (make-overlay (point-min) (1+ (point-min))))
|
|
50 (overlay-put minibuffer-depth-overlay 'before-string
|
|
51 (if minibuffer-depth-indicator-function
|
|
52 (funcall minibuffer-depth-indicator-function (minibuffer-depth))
|
85085
|
53 (propertize (format "[%d]" (minibuffer-depth)) 'face 'highlight)))
|
97157
|
54 (overlay-put minibuffer-depth-overlay 'evaporate t)))
|
81441
|
55
|
|
56 ;;;###autoload
|
97157
|
57 (define-minor-mode minibuffer-depth-indicate-mode
|
|
58 "Toggle Minibuffer Depth Indication mode.
|
81441
|
59 When active, any recursive use of the minibuffer will show
|
|
60 the recursion depth in the minibuffer prompt. This is only
|
|
61 useful if `enable-recursive-minibuffers' is non-nil.
|
|
62
|
|
63 With prefix argument ARG, turn on if positive, otherwise off.
|
|
64 Returns non-nil if the new state is enabled."
|
|
65 :global t
|
|
66 :group 'minibuffer
|
97157
|
67 (if minibuffer-depth-indicate-mode
|
81441
|
68 ;; Enable the mode
|
97157
|
69 (add-hook 'minibuffer-setup-hook 'minibuffer-depth-setup)
|
81441
|
70 ;; Disable the mode
|
97157
|
71 (remove-hook 'minibuffer-setup-hook 'minibuffer-depth-setup)))
|
81441
|
72
|
|
73 (provide 'mb-depth)
|
|
74
|
81452
|
75 ;; arch-tag: 50224089-5bf5-46f8-803d-18f018c5eacf
|
81441
|
76 ;;; mb-depth.el ends here
|