*** empty log message ***
[bpt/emacs.git] / lisp / url / url-dired.el
CommitLineData
8c8b8430 1;;; url-dired.el --- URL Dired minor mode
00eef4de 2
71ddfde5 3;; Copyright (C) 1996, 1997, 1998, 1999, 2004,
12dc447f 4;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
00eef4de 5
8c8b8430
SM
6;; Keywords: comm, files
7
00eef4de
LH
8;; This file is part of GNU Emacs.
9
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
8c0ee52a 12;; the Free Software Foundation; either version 3, or (at your option)
00eef4de
LH
13;; any later version.
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
21;; along with GNU Emacs; see the file COPYING. If not, write to the
4fc5845f
LK
22;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
23;; Boston, MA 02110-1301, USA.
00eef4de
LH
24
25;;; Code:
8c8b8430 26
8c8b8430
SM
27(autoload 'dired-get-filename "dired")
28
29(defvar url-dired-minor-mode-map
30 (let ((map (make-sparse-keymap)))
31 (define-key map "\C-m" 'url-dired-find-file)
cc38a294 32 (define-key map [mouse-2] 'url-dired-find-file-mouse)
8c8b8430
SM
33 map)
34 "Keymap used when browsing directories.")
35
36(defvar url-dired-minor-mode nil
37 "Whether we are in url-dired-minor-mode")
38
39(make-variable-buffer-local 'url-dired-minor-mode)
40
41(defun url-dired-find-file ()
e0566192 42 "In dired, visit the file or directory named on this line."
8c8b8430
SM
43 (interactive)
44 (let ((filename (dired-get-filename)))
e0566192 45 (find-file filename)))
8c8b8430
SM
46
47(defun url-dired-find-file-mouse (event)
e0566192 48 "In dired, visit the file or directory name you click on."
8c8b8430
SM
49 (interactive "@e")
50 (mouse-set-point event)
51 (url-dired-find-file))
52
53(defun url-dired-minor-mode (&optional arg)
e0566192 54 "Minor mode for directory browsing."
8c8b8430
SM
55 (interactive "P")
56 (cond
57 ((null arg)
58 (setq url-dired-minor-mode (not url-dired-minor-mode)))
59 ((equal 0 arg)
60 (setq url-dired-minor-mode nil))
61 (t
62 (setq url-dired-minor-mode t))))
63
64(if (not (fboundp 'add-minor-mode))
65 (defun add-minor-mode (toggle name &optional keymap after toggle-fun)
66 "Add a minor mode to `minor-mode-alist' and `minor-mode-map-alist'.
67TOGGLE is a symbol which is used as the variable which toggle the minor mode,
68NAME is the name that should appear in the modeline (it should be a string
69beginning with a space), KEYMAP is a keymap to make active when the minor
70mode is active, and AFTER is the toggling symbol used for another minor
71mode. If AFTER is non-nil, then it is used to position the new mode in the
72minor-mode alists. TOGGLE-FUN specifies an interactive function that
73is called to toggle the mode on and off; this affects what appens when
74button2 is pressed on the mode, and when button3 is pressed somewhere
75in the list of modes. If TOGGLE-FUN is nil and TOGGLE names an
76interactive function, TOGGLE is used as the toggle function.
77
78Example: (add-minor-mode 'view-minor-mode \" View\" view-mode-map)"
79 (if (not (assq toggle minor-mode-alist))
80 (setq minor-mode-alist (cons (list toggle name) minor-mode-alist)))
81 (if (and keymap (not (assq toggle minor-mode-map-alist)))
82 (setq minor-mode-map-alist (cons (cons toggle keymap)
83 minor-mode-map-alist)))))
84
85(add-minor-mode 'url-dired-minor-mode " URL" url-dired-minor-mode-map)
86
87(defun url-find-file-dired (dir)
88 "\"Edit\" directory DIR, but with additional URL-friendly bindings."
89 (interactive "DURL Dired (directory): ")
90 (find-file dir)
91 (url-dired-minor-mode t))
92
93(provide 'url-dired)
e5566bd5
MB
94
95;;; arch-tag: 2694f21a-43e1-4391-b3cb-cf6e5349f15f
00eef4de 96;;; url-dired.el ends here