Mercurial > emacs
annotate lisp/url/url-dired.el @ 103113:9e5db9760121
*** empty log message ***
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Thu, 30 Apr 2009 04:53:57 +0000 |
parents | a9dc0e7c3f2b |
children | 1d1d5d9bd884 |
rev | line source |
---|---|
54695 | 1 ;;; url-dired.el --- URL Dired minor mode |
57612 | 2 |
64748
875dcc490074
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64084
diff
changeset
|
3 ;; Copyright (C) 1996, 1997, 1998, 1999, 2004, |
100908 | 4 ;; 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. |
57612 | 5 |
54695 | 6 ;; Keywords: comm, files |
7 | |
57612 | 8 ;; This file is part of GNU Emacs. |
9 | |
94668
8259d0d8e107
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
10 ;; GNU Emacs is free software: you can redistribute it and/or modify |
57612 | 11 ;; it under the terms of the GNU General Public License as published by |
94668
8259d0d8e107
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
12 ;; the Free Software Foundation, either version 3 of the License, or |
8259d0d8e107
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
13 ;; (at your option) any later version. |
57612 | 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 | |
94668
8259d0d8e107
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
57612 | 22 |
23 ;;; Code: | |
54695 | 24 |
25 (autoload 'dired-get-filename "dired") | |
26 | |
27 (defvar url-dired-minor-mode-map | |
28 (let ((map (make-sparse-keymap))) | |
29 (define-key map "\C-m" 'url-dired-find-file) | |
66225 | 30 (define-key map [mouse-2] 'url-dired-find-file-mouse) |
54695 | 31 map) |
32 "Keymap used when browsing directories.") | |
33 | |
34 (defvar url-dired-minor-mode nil | |
96486
7369ded3b436
Typo and docstring fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
94668
diff
changeset
|
35 "Whether we are in url-dired-minor-mode.") |
54695 | 36 |
37 (make-variable-buffer-local 'url-dired-minor-mode) | |
38 | |
39 (defun url-dired-find-file () | |
79499
0f9cdf179b3f
Diane Murray <disumu at x3y2z1.net>
Glenn Morris <rgm@gnu.org>
parents:
78222
diff
changeset
|
40 "In dired, visit the file or directory named on this line." |
54695 | 41 (interactive) |
42 (let ((filename (dired-get-filename))) | |
79499
0f9cdf179b3f
Diane Murray <disumu at x3y2z1.net>
Glenn Morris <rgm@gnu.org>
parents:
78222
diff
changeset
|
43 (find-file filename))) |
54695 | 44 |
45 (defun url-dired-find-file-mouse (event) | |
79499
0f9cdf179b3f
Diane Murray <disumu at x3y2z1.net>
Glenn Morris <rgm@gnu.org>
parents:
78222
diff
changeset
|
46 "In dired, visit the file or directory name you click on." |
54695 | 47 (interactive "@e") |
48 (mouse-set-point event) | |
49 (url-dired-find-file)) | |
50 | |
51 (defun url-dired-minor-mode (&optional arg) | |
79499
0f9cdf179b3f
Diane Murray <disumu at x3y2z1.net>
Glenn Morris <rgm@gnu.org>
parents:
78222
diff
changeset
|
52 "Minor mode for directory browsing." |
54695 | 53 (interactive "P") |
54 (cond | |
55 ((null arg) | |
56 (setq url-dired-minor-mode (not url-dired-minor-mode))) | |
57 ((equal 0 arg) | |
58 (setq url-dired-minor-mode nil)) | |
59 (t | |
60 (setq url-dired-minor-mode t)))) | |
61 | |
62 (if (not (fboundp 'add-minor-mode)) | |
63 (defun add-minor-mode (toggle name &optional keymap after toggle-fun) | |
64 "Add a minor mode to `minor-mode-alist' and `minor-mode-map-alist'. | |
65 TOGGLE is a symbol which is used as the variable which toggle the minor mode, | |
66 NAME is the name that should appear in the modeline (it should be a string | |
67 beginning with a space), KEYMAP is a keymap to make active when the minor | |
68 mode is active, and AFTER is the toggling symbol used for another minor | |
69 mode. If AFTER is non-nil, then it is used to position the new mode in the | |
70 minor-mode alists. TOGGLE-FUN specifies an interactive function that | |
71 is called to toggle the mode on and off; this affects what appens when | |
72 button2 is pressed on the mode, and when button3 is pressed somewhere | |
73 in the list of modes. If TOGGLE-FUN is nil and TOGGLE names an | |
74 interactive function, TOGGLE is used as the toggle function. | |
75 | |
76 Example: (add-minor-mode 'view-minor-mode \" View\" view-mode-map)" | |
77 (if (not (assq toggle minor-mode-alist)) | |
78 (setq minor-mode-alist (cons (list toggle name) minor-mode-alist))) | |
79 (if (and keymap (not (assq toggle minor-mode-map-alist))) | |
80 (setq minor-mode-map-alist (cons (cons toggle keymap) | |
81 minor-mode-map-alist))))) | |
82 | |
83 (add-minor-mode 'url-dired-minor-mode " URL" url-dired-minor-mode-map) | |
84 | |
85 (defun url-find-file-dired (dir) | |
86 "\"Edit\" directory DIR, but with additional URL-friendly bindings." | |
87 (interactive "DURL Dired (directory): ") | |
88 (find-file dir) | |
89 (url-dired-minor-mode t)) | |
90 | |
91 (provide 'url-dired) | |
54699 | 92 |
93975
1e3a407766b9
Fix up comment convention on the arch-tag lines.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
79720
diff
changeset
|
93 ;; arch-tag: 2694f21a-43e1-4391-b3cb-cf6e5349f15f |
57612 | 94 ;;; url-dired.el ends here |