1 ;;; rfn-eshadow.el --- Highlight `shadowed' part of read-file-name input text
3 ;; Copyright (C) 2000, 2001, 2002 Free Software Foundation, Inc.
5 ;; Author: Miles Bader <miles@gnu.org>
6 ;; Keywords: convenience minibuffer
8 ;; This file is part of GNU Emacs.
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
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.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
27 ;; Defines the mode `file-name-shadow-mode'.
29 ;; The `read-file-name' function passes its result through
30 ;; `substitute-in-file-name', so any part of the string preceding
31 ;; multiple slashes (or a drive indicator on MS-DOS/MS-Windows) is
34 ;; If `file-name-shadow-mode' is active, any part of the
35 ;; minibuffer text that would be ignored because of this is given the
36 ;; properties in `file-name-shadow-properties', which may
37 ;; be used to make the ignored text invisible, dim, etc.
45 (defconst file-name-shadow-properties-custom-type
48 (const :tag
"Invisible"
49 :doc
"Make shadowed part of filename invisible"
52 (invisible t intangible t
))
56 :doc
"Display shadowed part of filename using a different face"
57 (const :format
"" face
)
58 (face :value file-name-shadow
))
62 ;; Note the 4 leading spaces in the doc string;
63 ;; this is hack to get around the fact that the
64 ;; newline after the second string widget comes
65 ;; from the string widget, and doesn't indent
66 ;; correctly. We could use a :size attribute to
67 ;; make the second string widget not have a
68 ;; terminating newline, but this makes it impossible
69 ;; to enter trailing whitespace, and it's desirable
70 ;; that it be possible.
71 :doc
" Surround shadowed part of filename with brackets"
72 (const :format
"" before-string
)
73 (string :format
"%v" :size
4 :value
"{")
74 (const :format
"" after-string
)
75 ;; see above about why the 2nd string doesn't use :size
76 (string :format
" and: %v" :value
"} "))
80 :doc
"Display a string instead of the shadowed part of filename"
81 (const :format
"" display
)
82 (string :format
"%v" :size
15 :value
"<...ignored...>"))
84 :doc
"Try to keep cursor out of shadowed part of filename"
89 :tag
"Other Properties"
92 (symbol :tag
"Property")
93 (sexp :tag
"Value")))))
96 (defcustom file-name-shadow-properties
97 '(face file-name-shadow field shadow
)
98 "Properties given to the `shadowed' part of a filename in the minibuffer.
99 Only used when `file-name-shadow-mode' is active.
100 If emacs is not running under a window system,
101 `file-name-shadow-tty-properties' is used instead."
102 :type file-name-shadow-properties-custom-type
106 (defcustom file-name-shadow-tty-properties
107 '(before-string "{" after-string
"} " field shadow
)
108 "Properties given to the `shadowed' part of a filename in the minibuffer.
109 Only used when `file-name-shadow-mode' is active and emacs
110 is not running under a window-system; if emacs is running under a window
111 system, `file-name-shadow-properties' is used instead."
112 :type file-name-shadow-properties-custom-type
115 (defface file-name-shadow
116 '((((background dark
))
117 :foreground
"grey50")
119 :foreground
"grey70"))
120 "Face used by `file-name-shadow-mode' for the shadow."
124 ;;; Internal variables
126 ;; Regexp to locate dividing point between shadow and real pathname
127 (defconst rfn-eshadow-regexp
128 (cond ((memq system-type
'(ms-dos windows-nt
))
129 ;; This horrible regexp considers the following patterns as
130 ;; starting an absolute pathname, when following a `/' or an `\':
131 ;; L: / // ~ $ \\ \\\\
132 "\\(.*[^/]+/+?\\|/*?\\|\\)\\(~\\|$[^$]\\|$\\'\\|[][\\^a-z]:\\|//?\\([^][\\^a-z/$~]\\|[^/$~][^:]\\|[^/$~]?\\'\\)\\)")
134 ;; default is for unix-style filenames
135 "\\(.*/\\)\\([/~]\\|$[^$]\\|$\\'\\)"))
136 "Regular expression used to match shadowed filenames.
137 There should be at least one regexp group; the end of the first one
138 is used as the end of the shadowed portion of the filename.")
140 ;; A list of minibuffers to which we've added a post-command-hook.
141 (defvar rfn-eshadow-frobbed-minibufs nil
)
143 ;; An overlay covering the shadowed part of the filename (local to the
145 (defvar rfn-eshadow-overlay
)
146 (make-variable-buffer-local 'rfn-eshadow-overlay
)
151 ;; This function goes on minibuffer-setup-hook
152 (defun rfn-eshadow-setup-minibuffer ()
153 "Set up a minibuffer for `file-name-shadow-mode'.
154 The prompt and initial input should already have been inserted."
155 (when minibuffer-completing-file-name
156 (setq rfn-eshadow-overlay
157 (make-overlay (minibuffer-prompt-end) (minibuffer-prompt-end)))
158 ;; Give rfn-eshadow-overlay the user's props.
161 file-name-shadow-properties
162 file-name-shadow-tty-properties
)))
164 (overlay-put rfn-eshadow-overlay
(pop props
) (pop props
))))
165 ;; Turn on overlay evaporation so that we don't have to worry about
166 ;; odd effects when the overlay sits empty at the beginning of the
168 (overlay-put rfn-eshadow-overlay
'evaporate t
)
169 ;; Add our post-command hook, and make sure can remove it later.
170 (add-to-list 'rfn-eshadow-frobbed-minibufs
(current-buffer))
171 (add-hook 'post-command-hook
#'rfn-eshadow-update-overlay nil t
)))
173 ;; post-command-hook to update overlay
174 (defun rfn-eshadow-update-overlay ()
175 "Update `rfn-eshadow-overlay' to cover shadowed part of minibuffer input.
176 This is intended to be used as a minibuffer post-command-hook for
177 `file-name-shadow-mode'; the minibuffer should have already
178 been set up by `rfn-eshadow-setup-minibuffer'."
179 ;; This is not really a correct implementation; it won't always do the
180 ;; right thing in the presence of environment variables that
181 ;; substitute-in-file-name would expand; currently it just assumes any
182 ;; environment variable contains an absolute filename.
184 (let ((inhibit-point-motion-hooks t
))
185 (goto-char (minibuffer-prompt-end))
186 ;; Update the overlay (which will evaporate if it's empty).
187 (move-overlay rfn-eshadow-overlay
189 (if (looking-at rfn-eshadow-regexp
)
194 ;;; Note this definition must be at the end of the file, because
195 ;;; `define-minor-mode' actually calls the mode-function if the
196 ;;; associated variable is non-nil, which requires that all needed
197 ;;; functions be already defined. [This is arguably a bug in d-m-m]
199 (define-minor-mode file-name-shadow-mode
200 "Toggle File-Name Shadow mode.
201 When active, any part of a filename being read in the minibuffer
202 that would be ignored (because the result is passed through
203 `substitute-in-file-name') is given the properties in
204 `file-name-shadow-properties', which can be used to make
205 that portion dim, invisible, or otherwise less visually noticeable.
207 With prefix argument ARG, turn on if positive, otherwise off.
208 Returns non-nil if the new state is enabled."
211 (if file-name-shadow-mode
213 (add-hook 'minibuffer-setup-hook
'rfn-eshadow-setup-minibuffer
)
215 (remove-hook 'minibuffer-setup-hook
'rfn-eshadow-setup-minibuffer
)
216 ;; Remove our entry from any post-command-hook variable's it's still in
217 (dolist (minibuf rfn-eshadow-frobbed-minibufs
)
218 (with-current-buffer minibuf
219 (remove-hook 'post-command-hook
#'rfn-eshadow-update-overlay t
)))
220 (setq rfn-eshadow-frobbed-minibufs nil
)))
223 (provide 'rfn-eshadow
)
225 ;;; rfn-eshadow.el ends here