Mercurial > emacs
annotate lisp/find-file.el @ 48478:a94c995f94de
*** empty log message ***
| author | Stefan Monnier <monnier@iro.umontreal.ca> |
|---|---|
| date | Wed, 20 Nov 2002 18:54:25 +0000 |
| parents | 8b3977d58df6 |
| children | 37645a051842 |
| rev | line source |
|---|---|
| 10491 | 1 ;;; find-file.el --- find a file corresponding to this one given a pattern |
| 2 | |
| 18127 | 3 ;; Author: Henry Guillaume <henri@tibco.com, henry@c032.aone.net.au> |
| 21057 | 4 ;; Maintainer: FSF |
| 10491 | 5 ;; Keywords: c, matching, tools |
| 6 | |
|
44880
e772dea9fb2e
Remove Ada-specific example code.
Gerd Moellmann <gerd@gnu.org>
parents:
42097
diff
changeset
|
7 ;; Copyright (C) 1994, 1995, 2002 Free Software Foundation, Inc. |
| 10491 | 8 |
| 14169 | 9 ;; This file is part of GNU Emacs. |
| 10491 | 10 |
| 14169 | 11 ;; GNU Emacs is free software; you can redistribute it and/or modify |
| 12 ;; it under the terms of the GNU General Public License as published by | |
| 13 ;; the Free Software Foundation; either version 2, or (at your option) | |
| 14 ;; any later version. | |
| 10491 | 15 |
| 14169 | 16 ;; GNU Emacs is distributed in the hope that it will be useful, |
| 17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 19 ;; GNU General Public License for more details. | |
| 10491 | 20 |
| 14169 | 21 ;; You should have received a copy of the GNU General Public License |
| 22 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
| 23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
| 24 ;; Boston, MA 02111-1307, USA. | |
| 10491 | 25 |
| 26 ;;; Commentary: | |
| 27 | |
| 28 ;; PURPOSE: | |
| 30816 | 29 ;; This package features a function called ff-find-other-file, which performs |
| 30 ;; the following function: | |
| 10491 | 31 ;; |
| 32 ;; When in a .c file, find the first corresponding .h file in a set | |
| 33 ;; of directories and display it, and vice-versa from the .h file. | |
| 34 ;; | |
| 35 ;; Many people maintain their include file in a directory separate to their | |
| 36 ;; src directory, and very often you may be editing a file and have a need to | |
| 37 ;; visit the "other file". This package searches through a set of directories | |
| 38 ;; to find that file. | |
| 39 ;; | |
| 40 ;; THE "OTHER FILE", or "corresponding file", generally has the same basename, | |
| 30816 | 41 ;; and just has a different extension as described by the ff-other-file-alist |
| 10491 | 42 ;; variable: |
| 43 ;; | |
| 44 ;; '(("\\.cc$" (".hh" ".h")) | |
| 45 ;; ("\\.hh$" (".cc" ".C" ".CC" ".cxx" ".cpp"))) | |
| 46 ;; | |
| 47 ;; If the current file has a .cc extension, ff-find-other-file will attempt | |
| 48 ;; to look for a .hh file, and then a .h file in some directory as described | |
| 49 ;; below. The mechanism here is to replace the matched part of the original | |
| 50 ;; filename with each of the corresponding extensions in turn. | |
| 51 ;; | |
| 52 ;; Alternatively, there are situations where the filename of the other file | |
| 53 ;; cannot be determined easily with regexps. For example, a .c file may | |
| 54 ;; have two corresponding .h files, for its public and private parts, or | |
| 55 ;; the filename for the .c file contains part of the pathname of the .h | |
| 56 ;; file, as between src/fooZap.cc and include/FOO/zap.hh. In that case, the | |
| 57 ;; format above can be changed to include a function to be called when the | |
| 58 ;; current file matches the regexp: | |
| 59 ;; | |
| 60 ;; '(("\\.cc$" cc-function) | |
| 61 ;; ("\\.hh$" hh-function)) | |
| 62 ;; | |
| 30816 | 63 ;; These functions must return a list consisting of the possible names of the |
| 64 ;; corresponding file, with or without path. There is no real need for more | |
| 10491 | 65 ;; than one function, and one could imagine the following value for cc-other- |
| 66 ;; file-alist: | |
| 67 ;; | |
| 68 ;; (setq cc-other-file-alist | |
| 69 ;; '(("\\.cc$" ff-cc-hh-converter) | |
| 70 ;; ("\\.hh$" ff-cc-hh-converter) | |
| 71 ;; ("\\.c$" (".h")) | |
| 72 ;; ("\\.h$" (".c" ".cc" ".C" ".CC" ".cxx" ".cpp")))) | |
| 73 ;; | |
| 74 ;; ff-cc-hh-converter is included at the end of this file as a reference. | |
| 75 ;; | |
| 76 ;; SEARCHING is carried out in a set of directories specified by the | |
| 77 ;; ff-search-directories variable: | |
| 78 ;; | |
| 79 ;; ("." "../../src" "../include/*" "/usr/local/*/src/*" "$PROJECT/src") | |
| 80 ;; | |
| 81 ;; This means that the corresponding file will be searched for first in | |
| 82 ;; the current directory, then in ../../src, then in one of the directories | |
| 83 ;; under ../include, and so on. The star is _not_ a general wildcard | |
| 84 ;; character: it just indicates that the subdirectories of this directory | |
| 85 ;; must each be searched in turn. Environment variables will be expanded in | |
| 86 ;; the ff-search-directories variable. | |
| 87 ;; | |
| 88 ;; If the point is on a #include line, the file to be #included is searched | |
| 89 ;; for in the same manner. This can be disabled with the ff-ignore-include | |
| 90 ;; variable, or by calling ff-get-other-file instead of ff-find-other-file. | |
| 91 ;; | |
| 92 ;; If the file was not found, ff-find-other-file will prompt you for where | |
| 93 ;; to create the new "corresponding file" (defaults to the current directory), | |
| 30816 | 94 ;; unless the variable ff-always-try-to-create is set to nil. |
| 10491 | 95 ;; |
| 30816 | 96 ;; GIVEN AN ARGUMENT (with the ^U prefix), ff-find-other-file will get the |
| 97 ;; other file in another (the other?) window (see find-file-other-window and | |
| 98 ;; switch-to-buffer-other-window). This can be set on a more permanent basis | |
| 99 ;; by setting ff-always-in-other-window to t in which case the ^U prefix will | |
| 10491 | 100 ;; do the opposite of what was described above. |
| 101 ;; | |
| 102 ;; THERE ARE FIVE AVAILABLE HOOKS, called in this order if non-nil: | |
| 103 ;; | |
|
47354
27533450eb3b
(ff-pre-find-hook, ff-pre-load-hook, ff-post-load-hook)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44880
diff
changeset
|
104 ;; - ff-pre-find-hook - called before the search for the other file starts |
|
27533450eb3b
(ff-pre-find-hook, ff-pre-load-hook, ff-post-load-hook)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44880
diff
changeset
|
105 ;; - ff-not-found-hook - called when the other file could not be found |
|
27533450eb3b
(ff-pre-find-hook, ff-pre-load-hook, ff-post-load-hook)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44880
diff
changeset
|
106 ;; - ff-pre-load-hook - called just before the other file is 'loaded' |
|
27533450eb3b
(ff-pre-find-hook, ff-pre-load-hook, ff-post-load-hook)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44880
diff
changeset
|
107 ;; - ff-file-created-hook - called when the other file is created |
|
27533450eb3b
(ff-pre-find-hook, ff-pre-load-hook, ff-post-load-hook)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44880
diff
changeset
|
108 ;; - ff-post-load-hook - called just after the other file is 'loaded' |
| 10491 | 109 ;; |
|
47354
27533450eb3b
(ff-pre-find-hook, ff-pre-load-hook, ff-post-load-hook)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44880
diff
changeset
|
110 ;; The *load-hook allow you to place point where you want it in the other |
| 30816 | 111 ;; file. |
| 10491 | 112 |
| 113 ;; CREDITS: | |
| 114 ;; Many thanks go to TUSC Computer Systems Pty Ltd for providing an environ- | |
| 115 ;; ment that made the development of this package possible. | |
| 116 ;; | |
| 117 ;; Many thanks also go to all those who provided valuable feedback throughout | |
| 118 ;; the development of this package: | |
| 119 ;; Rolf Ebert in particular, Fritz Knabe, Heddy Boubaker, Sebastian Kremer, | |
| 30816 | 120 ;; Vasco Lopes Paulo, Mark A. Plaksin, Robert Lang, Trevor West, Kevin |
|
16510
e619a826afdb
Enabled commentary for Finder.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
121 ;; Pereira, Benedict Lofstedt & Justin Vallon. |
| 10491 | 122 |
|
16510
e619a826afdb
Enabled commentary for Finder.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
123 ;;; Code: |
| 10491 | 124 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
| 125 ;; User definable variables: | |
| 126 | |
| 21087 | 127 (defgroup ff nil |
| 128 "Find a file corresponding to this one given a pattern." | |
| 129 :prefix "ff-" | |
| 30816 | 130 :link '(emacs-commentary-link "find-file") |
| 21087 | 131 :group 'find-file) |
| 10491 | 132 |
|
47354
27533450eb3b
(ff-pre-find-hook, ff-pre-load-hook, ff-post-load-hook)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44880
diff
changeset
|
133 (defcustom ff-pre-find-hook nil |
| 21087 | 134 "*List of functions to be called before the search for the file starts." |
| 135 :type 'hook | |
| 136 :group 'ff) | |
| 10491 | 137 |
|
47354
27533450eb3b
(ff-pre-find-hook, ff-pre-load-hook, ff-post-load-hook)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44880
diff
changeset
|
138 (defcustom ff-pre-load-hook nil |
| 21087 | 139 "*List of functions to be called before the other file is loaded." |
| 140 :type 'hook | |
| 141 :group 'ff) | |
| 10491 | 142 |
|
47354
27533450eb3b
(ff-pre-find-hook, ff-pre-load-hook, ff-post-load-hook)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44880
diff
changeset
|
143 (defcustom ff-post-load-hook nil |
| 21087 | 144 "*List of functions to be called after the other file is loaded." |
| 145 :type 'hook | |
| 146 :group 'ff) | |
| 10491 | 147 |
|
47354
27533450eb3b
(ff-pre-find-hook, ff-pre-load-hook, ff-post-load-hook)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44880
diff
changeset
|
148 (defcustom ff-not-found-hook nil |
| 21087 | 149 "*List of functions to be called if the other file could not be found." |
| 150 :type 'hook | |
| 151 :group 'ff) | |
| 10491 | 152 |
|
47354
27533450eb3b
(ff-pre-find-hook, ff-pre-load-hook, ff-post-load-hook)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44880
diff
changeset
|
153 (defcustom ff-file-created-hook nil |
| 21087 | 154 "*List of functions to be called if the other file needs to be created." |
| 155 :type 'hook | |
| 156 :group 'ff) | |
| 10491 | 157 |
| 21087 | 158 (defcustom ff-case-fold-search nil |
| 159 "*Non-nil means ignore cases in matches (see `case-fold-search'). | |
| 160 If you have extensions in different cases, you will want this to be nil." | |
| 161 :type 'boolean | |
| 162 :group 'ff) | |
| 10491 | 163 |
| 21087 | 164 (defcustom ff-always-in-other-window nil |
| 165 "*If non-nil, find the corresponding file in another window by default. | |
| 166 To override this, give an argument to `ff-find-other-file'." | |
| 167 :type 'boolean | |
| 168 :group 'ff) | |
| 10491 | 169 |
| 21087 | 170 (defcustom ff-ignore-include nil |
| 171 "*If non-nil, ignore `#include' lines." | |
| 172 :type 'boolean | |
| 173 :group 'ff) | |
| 10491 | 174 |
| 21087 | 175 (defcustom ff-always-try-to-create t |
| 176 "*If non-nil, always attempt to create the other file if it was not found." | |
| 177 :type 'boolean | |
| 178 :group 'ff) | |
| 179 | |
| 180 (defcustom ff-quiet-mode nil | |
| 181 "*If non-nil, trace which directories are being searched." | |
| 182 :type 'boolean | |
| 183 :group 'ff) | |
| 10491 | 184 |
| 30816 | 185 (defvar ff-special-constructs |
| 10491 | 186 '( |
| 187 ;; C/C++ include, for NeXTSTEP too | |
| 188 ("^\#\\s *\\(include\\|import\\)\\s +[<\"]\\(.*\\)[>\"]" . | |
| 189 (lambda () | |
| 190 (setq fname (buffer-substring (match-beginning 2) (match-end 2))))) | |
| 191 | |
| 192 ;; Ada import | |
| 193 ("^with[ \t]+\\([a-zA-Z0-9_\\.]+\\)" . | |
| 194 (lambda () | |
| 195 (setq fname (buffer-substring (match-beginning 1) (match-end 1))) | |
|
12949
f6e5a73b96e4
(ada-spec-suffix): Definition deleted.
Richard M. Stallman <rms@gnu.org>
parents:
12567
diff
changeset
|
196 (require 'ada-mode) |
| 10491 | 197 (setq fname (concat (ada-make-filename-from-adaname fname) |
|
12949
f6e5a73b96e4
(ada-spec-suffix): Definition deleted.
Richard M. Stallman <rms@gnu.org>
parents:
12567
diff
changeset
|
198 ada-spec-suffix)))) |
| 10491 | 199 ) |
| 30816 | 200 "*A list of regular expressions for `ff-find-file'. |
| 201 Specifies how to recognise special constructs such as include files | |
| 202 etc. and an associated method for extracting the filename from that | |
| 203 construct.") | |
| 10491 | 204 |
|
47860
621b10466c9a
(ff-related-file-alist): New alias.
Richard M. Stallman <rms@gnu.org>
parents:
47354
diff
changeset
|
205 (defvaralias 'ff-related-file-alist 'ff-other-file-alist) |
| 21087 | 206 (defcustom ff-other-file-alist 'cc-other-file-alist |
| 10491 | 207 "*Alist of extensions to find given the current file's extension. |
| 208 | |
| 209 This list should contain the most used extensions before the others, | |
| 210 since the search algorithm searches sequentially through each | |
| 11272 | 211 directory specified in `ff-search-directories'. If a file is not found, |
| 212 a new one is created with the first matching extension (`.cc' yields `.hh'). | |
| 21087 | 213 This alist should be set by the major mode." |
| 214 :type '(choice (repeat (list regexp (choice (repeat string) function))) | |
| 215 symbol) | |
| 216 :group 'ff) | |
| 10491 | 217 |
| 21087 | 218 (defcustom ff-search-directories 'cc-search-directories |
| 10491 | 219 "*List of directories to search for a specific file. |
| 220 | |
| 11272 | 221 Set by default to `cc-search-directories', expanded at run-time. |
| 10491 | 222 |
| 223 This list is searched through with each extension specified in | |
| 11272 | 224 `ff-other-file-alist' that matches this file's extension. So the |
| 10491 | 225 longer the list, the longer it'll take to realise that a file |
| 226 may not exist. | |
| 227 | |
| 30816 | 228 A typical format is |
| 10491 | 229 |
|
16510
e619a826afdb
Enabled commentary for Finder.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
230 '(\".\" \"/usr/include\" \"$PROJECT/*/include\") |
| 10491 | 231 |
| 11272 | 232 Environment variables can be inserted between slashes (`/'). |
| 10491 | 233 They will be replaced by their definition. If a variable does |
| 11272 | 234 not exist, it is replaced (silently) with an empty string. |
| 10491 | 235 |
| 11272 | 236 The stars are *not* wildcards: they are searched for together with |
| 237 the preceding slash. The star represents all the subdirectories except | |
| 21087 | 238 `..', and each of these subdirectories will be searched in turn." |
| 239 :type '(choice (repeat directory) symbol) | |
| 240 :group 'ff) | |
| 10491 | 241 |
| 21087 | 242 (defcustom cc-search-directories |
|
16510
e619a826afdb
Enabled commentary for Finder.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
243 '("." "/usr/include" "/usr/local/include/*") |
| 21087 | 244 "*See the description of the `ff-search-directories' variable." |
| 245 :type '(repeat directory) | |
| 246 :group 'ff) | |
| 10491 | 247 |
| 21087 | 248 (defcustom cc-other-file-alist |
| 10491 | 249 '( |
| 250 ("\\.cc$" (".hh" ".h")) | |
| 251 ("\\.hh$" (".cc" ".C")) | |
| 252 | |
| 253 ("\\.c$" (".h")) | |
| 254 ("\\.h$" (".c" ".cc" ".C" ".CC" ".cxx" ".cpp")) | |
| 255 | |
| 256 ("\\.C$" (".H" ".hh" ".h")) | |
| 257 ("\\.H$" (".C" ".CC")) | |
| 258 | |
| 259 ("\\.CC$" (".HH" ".H" ".hh" ".h")) | |
| 260 ("\\.HH$" (".CC")) | |
| 261 | |
| 262 ("\\.cxx$" (".hh" ".h")) | |
| 263 ("\\.cpp$" (".hh" ".h")) | |
| 264 ) | |
| 265 "*Alist of extensions to find given the current file's extension. | |
| 266 | |
| 267 This list should contain the most used extensions before the others, | |
| 268 since the search algorithm searches sequentially through each directory | |
| 11272 | 269 specified in `ff-search-directories'. If a file is not found, a new one |
| 21087 | 270 is created with the first matching extension (`.cc' yields `.hh')." |
| 271 :type '(repeat (list regexp (choice (repeat string) function))) | |
| 272 :group 'ff) | |
| 10491 | 273 |
| 21087 | 274 (defcustom modula2-other-file-alist |
| 10491 | 275 '( |
| 276 ("\\.mi$" (".md")) ;; Modula-2 module definition | |
| 277 ("\\.md$" (".mi")) ;; and implementation. | |
| 278 ) | |
| 21087 | 279 "*See the description for the `ff-search-directories' variable." |
| 280 :type '(repeat (list regexp (choice (repeat string) function))) | |
| 281 :group 'ff) | |
| 282 | |
| 10491 | 283 |
| 284 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| 285 ;; No user definable variables beyond this point! | |
| 286 ;; ============================================== | |
| 287 | |
|
47354
27533450eb3b
(ff-pre-find-hook, ff-pre-load-hook, ff-post-load-hook)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44880
diff
changeset
|
288 (make-variable-buffer-local 'ff-pre-find-hook) |
|
27533450eb3b
(ff-pre-find-hook, ff-pre-load-hook, ff-post-load-hook)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44880
diff
changeset
|
289 (make-variable-buffer-local 'ff-pre-load-hook) |
|
27533450eb3b
(ff-pre-find-hook, ff-pre-load-hook, ff-post-load-hook)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44880
diff
changeset
|
290 (make-variable-buffer-local 'ff-post-load-hook) |
|
27533450eb3b
(ff-pre-find-hook, ff-pre-load-hook, ff-post-load-hook)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44880
diff
changeset
|
291 (make-variable-buffer-local 'ff-not-found-hook) |
|
27533450eb3b
(ff-pre-find-hook, ff-pre-load-hook, ff-post-load-hook)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44880
diff
changeset
|
292 (make-variable-buffer-local 'ff-file-created-hook) |
| 10491 | 293 (make-variable-buffer-local 'ff-case-fold-search) |
| 294 (make-variable-buffer-local 'ff-always-in-other-window) | |
| 295 (make-variable-buffer-local 'ff-ignore-include) | |
| 296 (make-variable-buffer-local 'ff-quiet-mode) | |
| 297 (make-variable-buffer-local 'ff-other-file-alist) | |
| 298 (make-variable-buffer-local 'ff-search-directories) | |
| 299 | |
| 300 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| 301 ;; User entry points | |
| 302 | |
| 303 ;;;###autoload | |
| 304 (defun ff-get-other-file (&optional in-other-window) | |
| 11272 | 305 "Find the header or source file corresponding to this file. |
| 30816 | 306 See also the documentation for `ff-find-other-file'. |
| 10491 | 307 |
| 11272 | 308 If optional IN-OTHER-WINDOW is non-nil, find the file in another window." |
| 10491 | 309 (interactive "P") |
| 310 (let ((ignore ff-ignore-include)) | |
| 311 (setq ff-ignore-include t) | |
| 312 (ff-find-the-other-file in-other-window) | |
| 313 (setq ff-ignore-include ignore))) | |
| 314 | |
|
48009
8b3977d58df6
(ff-find-related-file): Fix autoload cookie.
Richard M. Stallman <rms@gnu.org>
parents:
47860
diff
changeset
|
315 ;;;###autoload |
|
47860
621b10466c9a
(ff-related-file-alist): New alias.
Richard M. Stallman <rms@gnu.org>
parents:
47354
diff
changeset
|
316 (defalias 'ff-find-related-file 'ff-find-other-file) |
|
621b10466c9a
(ff-related-file-alist): New alias.
Richard M. Stallman <rms@gnu.org>
parents:
47354
diff
changeset
|
317 |
| 10491 | 318 ;;;###autoload |
| 319 (defun ff-find-other-file (&optional in-other-window ignore-include) | |
| 11272 | 320 "Find the header or source file corresponding to this file. |
| 321 Being on a `#include' line pulls in that file. | |
| 10491 | 322 |
| 11272 | 323 If optional IN-OTHER-WINDOW is non-nil, find the file in the other window. |
| 324 If optional IGNORE-INCLUDE is non-nil, ignore being on `#include' lines. | |
| 10491 | 325 |
| 326 Variables of interest include: | |
| 327 | |
| 30816 | 328 - `ff-case-fold-search' |
| 329 Non-nil means ignore cases in matches (see `case-fold-search'). | |
| 10491 | 330 If you have extensions in different cases, you will want this to be nil. |
| 331 | |
| 30816 | 332 - `ff-always-in-other-window' |
| 10491 | 333 If non-nil, always open the other file in another window, unless an |
| 30816 | 334 argument is given to `ff-find-other-file'. |
| 10491 | 335 |
| 30816 | 336 - `ff-ignore-include' |
| 10491 | 337 If non-nil, ignores #include lines. |
| 338 | |
| 30816 | 339 - `ff-always-try-to-create' |
| 10491 | 340 If non-nil, always attempt to create the other file if it was not found. |
| 341 | |
| 30816 | 342 - `ff-quiet-mode' |
| 10491 | 343 If non-nil, traces which directories are being searched. |
| 344 | |
| 30816 | 345 - `ff-special-constructs' |
| 346 A list of regular expressions specifying how to recognise special | |
| 347 constructs such as include files etc, and an associated method for | |
| 10491 | 348 extracting the filename from that construct. |
| 349 | |
| 30816 | 350 - `ff-other-file-alist' |
| 10491 | 351 Alist of extensions to find given the current file's extension. |
| 352 | |
| 30816 | 353 - `ff-search-directories' |
| 10491 | 354 List of directories searched through with each extension specified in |
| 30816 | 355 `ff-other-file-alist' that matches this file's extension. |
| 10491 | 356 |
|
47354
27533450eb3b
(ff-pre-find-hook, ff-pre-load-hook, ff-post-load-hook)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44880
diff
changeset
|
357 - `ff-pre-find-hook' |
| 10491 | 358 List of functions to be called before the search for the file starts. |
| 359 | |
|
47354
27533450eb3b
(ff-pre-find-hook, ff-pre-load-hook, ff-post-load-hook)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44880
diff
changeset
|
360 - `ff-pre-load-hook' |
| 10491 | 361 List of functions to be called before the other file is loaded. |
| 362 | |
|
47354
27533450eb3b
(ff-pre-find-hook, ff-pre-load-hook, ff-post-load-hook)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44880
diff
changeset
|
363 - `ff-post-load-hook' |
| 10491 | 364 List of functions to be called after the other file is loaded. |
| 365 | |
|
47354
27533450eb3b
(ff-pre-find-hook, ff-pre-load-hook, ff-post-load-hook)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44880
diff
changeset
|
366 - `ff-not-found-hook' |
| 10491 | 367 List of functions to be called if the other file could not be found. |
| 368 | |
|
47354
27533450eb3b
(ff-pre-find-hook, ff-pre-load-hook, ff-post-load-hook)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44880
diff
changeset
|
369 - `ff-file-created-hook' |
| 10491 | 370 List of functions to be called if the other file has been created." |
| 371 (interactive "P") | |
| 372 (let ((ignore ff-ignore-include)) | |
| 373 (setq ff-ignore-include ignore-include) | |
| 374 (ff-find-the-other-file in-other-window) | |
| 375 (setq ff-ignore-include ignore))) | |
| 376 | |
| 377 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| 378 ;; Support functions | |
| 379 | |
| 380 (defun ff-find-the-other-file (&optional in-other-window) | |
| 11272 | 381 "Find the header or source file corresponding to the current file. |
| 382 Being on a `#include' line pulls in that file, but see the help on | |
| 383 the `ff-ignore-include' variable. | |
| 10491 | 384 |
| 11272 | 385 If optional IN-OTHER-WINDOW is non-nil, find the file in another window." |
| 10491 | 386 |
| 387 (let (match ;; matching regexp for this file | |
| 388 suffixes ;; set of replacing regexps for the matching regexp | |
| 389 action ;; function to generate the names of the other files | |
| 390 fname ;; basename of this file | |
| 391 pos ;; where we start matching filenames | |
| 392 stub ;; name of the file without extension | |
| 393 alist ;; working copy of the list of file extensions | |
| 394 pathname ;; the pathname of the file or the #include line | |
| 395 default-name ;; file we should create if none found | |
| 30816 | 396 format ;; what we have to match |
| 397 found ;; name of the file or buffer found - nil if none | |
| 10491 | 398 dirs ;; local value of ff-search-directories |
| 399 no-match) ;; whether we know about this kind of file | |
| 400 | |
|
47354
27533450eb3b
(ff-pre-find-hook, ff-pre-load-hook, ff-post-load-hook)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44880
diff
changeset
|
401 (run-hooks 'ff-pre-find-hook 'ff-pre-find-hooks) |
| 10491 | 402 |
| 403 (message "Working...") | |
| 404 | |
| 405 (setq dirs | |
| 406 (if (symbolp ff-search-directories) | |
| 407 (ff-list-replace-env-vars (symbol-value ff-search-directories)) | |
| 408 (ff-list-replace-env-vars ff-search-directories))) | |
| 409 | |
| 410 (save-excursion | |
| 411 (beginning-of-line 1) | |
| 412 (setq fname (ff-treat-as-special))) | |
| 413 | |
| 414 (cond | |
| 415 ((and (not ff-ignore-include) fname) | |
| 416 (setq default-name fname) | |
| 417 (setq found (ff-get-file dirs fname nil in-other-window))) | |
| 418 | |
| 419 ;; let's just get the corresponding file | |
| 420 (t | |
| 421 (setq alist (if (symbolp ff-other-file-alist) | |
| 422 (symbol-value ff-other-file-alist) | |
| 423 ff-other-file-alist) | |
| 424 pathname (if (buffer-file-name) | |
| 425 (buffer-file-name) | |
| 426 "/none.none")) | |
| 427 | |
|
38273
910cd30b1586
(ff-find-the-other-file): Use file-name-nondirectory
Eli Zaretskii <eliz@gnu.org>
parents:
30816
diff
changeset
|
428 (setq fname (file-name-nondirectory pathname) |
| 10491 | 429 no-match nil |
| 430 match (car alist)) | |
| 431 | |
| 432 ;; find the table entry corresponding to this file | |
| 433 (setq pos (ff-string-match (car match) fname)) | |
| 434 (while (and match (if (and pos (>= pos 0)) nil (not pos))) | |
| 435 (setq alist (cdr alist)) | |
| 436 (setq match (car alist)) | |
| 437 (setq pos (ff-string-match (car match) fname))) | |
| 438 | |
| 439 ;; no point going on if we haven't found anything | |
| 440 (if (not match) | |
| 441 (setq no-match t) | |
| 442 | |
| 443 ;; otherwise, suffixes contains what we need | |
| 444 (setq suffixes (car (cdr match)) | |
| 445 action (car (cdr match)) | |
| 446 found nil) | |
| 447 | |
| 30816 | 448 ;; if we have a function to generate new names, |
| 10491 | 449 ;; invoke it with the name of the current file |
| 450 (if (and (atom action) (fboundp action)) | |
| 451 (progn | |
| 452 (setq suffixes (funcall action (buffer-file-name)) | |
| 453 match (cons (car match) (list suffixes)) | |
| 454 stub nil | |
| 455 default-name (car suffixes))) | |
| 456 | |
| 457 ;; otherwise build our filename stub | |
| 30816 | 458 (cond |
| 10491 | 459 |
| 460 ;; get around the problem that 0 and nil both mean false! | |
| 461 ((= pos 0) | |
| 462 (setq format "") | |
| 463 (setq stub "") | |
| 464 ) | |
| 465 | |
| 466 (t | |
| 467 (setq format (concat "\\(.+\\)" (car match))) | |
| 468 (string-match format fname) | |
| 469 (setq stub (substring fname (match-beginning 1) (match-end 1))) | |
| 470 )) | |
| 471 | |
| 472 ;; if we find nothing, we should try to get a file like this one | |
| 473 (setq default-name | |
| 474 (concat stub (car (car (cdr match)))))) | |
| 475 | |
| 476 ;; do the real work - find the file | |
| 30816 | 477 (setq found |
| 10491 | 478 (ff-get-file dirs |
| 479 stub | |
| 30816 | 480 suffixes |
| 10491 | 481 in-other-window))))) |
| 482 | |
| 483 (cond | |
| 484 (no-match ;; could not even determine the other file | |
| 485 (message "")) | |
| 486 | |
| 30816 | 487 (t |
| 10491 | 488 (cond |
| 489 | |
| 490 ((not found) ;; could not find the other file | |
| 491 | |
|
47354
27533450eb3b
(ff-pre-find-hook, ff-pre-load-hook, ff-post-load-hook)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44880
diff
changeset
|
492 (run-hooks 'ff-not-found-hook 'ff-not-found-hooks) |
| 10491 | 493 |
| 30816 | 494 (cond |
| 10491 | 495 (ff-always-try-to-create ;; try to create the file |
| 496 (let (name pathname) | |
| 497 | |
| 498 (setq name | |
| 499 (expand-file-name | |
| 500 (read-file-name | |
| 501 (format "Find or create %s in: " default-name) | |
| 502 default-directory default-name nil))) | |
| 503 | |
| 504 (setq pathname | |
| 505 (if (file-directory-p name) | |
| 506 (concat (file-name-as-directory name) default-name) | |
| 507 (setq found name))) | |
| 508 | |
| 509 (ff-find-file pathname in-other-window t))) | |
| 510 | |
| 511 (t ;; don't create the file, just whinge | |
| 17548 | 512 (message "No file found for %s" fname)))) |
| 10491 | 513 |
| 514 (t ;; matching file found | |
| 515 nil)))) | |
| 516 | |
| 517 found)) ;; return buffer-name or filename | |
| 518 | |
|
42097
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
519 (defun ff-other-file-name () |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
520 "Return name of the header or source file corresponding to the current file. |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
521 Being on a `#include' line pulls in that file, but see the help on |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
522 the `ff-ignore-include' variable." |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
523 |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
524 (let (match ;; matching regexp for this file |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
525 suffixes ;; set of replacing regexps for the matching regexp |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
526 action ;; function to generate the names of the other files |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
527 fname ;; basename of this file |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
528 pos ;; where we start matching filenames |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
529 stub ;; name of the file without extension |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
530 alist ;; working copy of the list of file extensions |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
531 pathname ;; the pathname of the file or the #include line |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
532 default-name ;; file we should create if none found |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
533 format ;; what we have to match |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
534 found ;; name of the file or buffer found - nil if none |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
535 dirs ;; local value of ff-search-directories |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
536 no-match) ;; whether we know about this kind of file |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
537 |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
538 (message "Working...") |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
539 |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
540 (setq dirs |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
541 (if (symbolp ff-search-directories) |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
542 (ff-list-replace-env-vars (symbol-value ff-search-directories)) |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
543 (ff-list-replace-env-vars ff-search-directories))) |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
544 |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
545 (save-excursion |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
546 (beginning-of-line 1) |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
547 (setq fname (ff-treat-as-special))) |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
548 |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
549 (cond |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
550 ((and (not ff-ignore-include) fname) |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
551 (setq default-name fname) |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
552 (setq found (ff-get-file-name dirs fname nil))) |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
553 |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
554 ;; let's just get the corresponding file |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
555 (t |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
556 (setq alist (if (symbolp ff-other-file-alist) |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
557 (symbol-value ff-other-file-alist) |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
558 ff-other-file-alist) |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
559 pathname (if (buffer-file-name) |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
560 (buffer-file-name) |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
561 "/none.none")) |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
562 |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
563 (setq fname (file-name-nondirectory pathname) |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
564 no-match nil |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
565 match (car alist)) |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
566 |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
567 ;; find the table entry corresponding to this file |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
568 (setq pos (ff-string-match (car match) fname)) |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
569 (while (and match (if (and pos (>= pos 0)) nil (not pos))) |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
570 (setq alist (cdr alist)) |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
571 (setq match (car alist)) |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
572 (setq pos (ff-string-match (car match) fname))) |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
573 |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
574 ;; no point going on if we haven't found anything |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
575 (if (not match) |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
576 (setq no-match t) |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
577 |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
578 ;; otherwise, suffixes contains what we need |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
579 (setq suffixes (car (cdr match)) |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
580 action (car (cdr match)) |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
581 found nil) |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
582 |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
583 ;; if we have a function to generate new names, |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
584 ;; invoke it with the name of the current file |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
585 (if (and (atom action) (fboundp action)) |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
586 (progn |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
587 (setq suffixes (funcall action (buffer-file-name)) |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
588 match (cons (car match) (list suffixes)) |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
589 stub nil |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
590 default-name (car suffixes))) |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
591 |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
592 ;; otherwise build our filename stub |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
593 (cond |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
594 |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
595 ;; get around the problem that 0 and nil both mean false! |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
596 ((= pos 0) |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
597 (setq format "") |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
598 (setq stub "") |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
599 ) |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
600 |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
601 (t |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
602 (setq format (concat "\\(.+\\)" (car match))) |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
603 (string-match format fname) |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
604 (setq stub (substring fname (match-beginning 1) (match-end 1))) |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
605 )) |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
606 |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
607 ;; if we find nothing, we should try to get a file like this one |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
608 (setq default-name |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
609 (concat stub (car (car (cdr match)))))) |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
610 |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
611 ;; do the real work - find the file |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
612 (setq found |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
613 (ff-get-file-name dirs stub suffixes))))) |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
614 found)) ;; return buffer-name or filename |
|
e12d545c9a48
(ff-other-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
38273
diff
changeset
|
615 |
| 30816 | 616 (defun ff-get-file (search-dirs filename &optional suffix-list other-window) |
| 617 "Find a file in the SEARCH-DIRS with the given FILENAME (or filename stub). | |
| 618 If (optional) SUFFIX-LIST is nil, search for fname, otherwise search | |
| 619 for fname with each of the given suffixes. Get the file or the buffer | |
| 620 corresponding to the name of the first file found, or nil." | |
| 621 (let ((filename (ff-get-file-name search-dirs filename suffix-list))) | |
| 10491 | 622 |
| 30816 | 623 (cond |
| 10491 | 624 ((not filename) |
| 625 nil) | |
| 626 | |
| 13896 | 627 ((bufferp (get-file-buffer filename)) |
| 628 (ff-switch-to-buffer (get-file-buffer filename) other-window) | |
| 10491 | 629 filename) |
| 630 | |
| 631 ((file-exists-p filename) | |
| 632 (ff-find-file filename other-window nil) | |
| 633 filename) | |
| 634 | |
| 635 (t | |
| 636 nil)))) | |
| 637 | |
| 638 (defun ff-get-file-name (search-dirs fname-stub &optional suffix-list) | |
| 30816 | 639 "Find a file in SEARCH-DIRS with the given name (or stub) FNAME-STUB. |
| 640 If (optional) SUFFIX-LIST is nil, search for FNAME-STUB, otherwise | |
| 641 search for FNAME-STUB with each of the given suffixes. Return the | |
| 642 name of the first file found." | |
| 10491 | 643 (let* (dirs ;; working copy of dirs to search |
| 644 dir ;; the current dir considered | |
| 645 file ;; filename being looked for | |
| 646 rest ;; pathname after first /* | |
| 647 this-suffix ;; the suffix we are currently considering | |
| 648 suffixes ;; working copy of suffix-list | |
| 649 filename ;; built filename | |
| 650 blist ;; list of live buffers | |
| 651 buf ;; current buffer in blist | |
| 652 found) ;; whether we have found anything | |
| 653 | |
| 654 (setq suffixes suffix-list) | |
| 655 | |
| 656 ;; suffixes is nil => fname-stub is the file we are looking for | |
| 657 ;; otherwise fname-stub is a stub, and we append a suffix | |
| 658 (if suffixes | |
| 659 (setq this-suffix (car suffixes)) | |
| 660 (setq this-suffix "") | |
| 661 (setq suffixes (list ""))) | |
| 662 | |
| 663 ;; find whether the file is in a buffer first | |
| 664 (while (and suffixes (not found)) | |
| 665 (setq filename (concat fname-stub this-suffix)) | |
| 666 | |
| 667 (if (not ff-quiet-mode) | |
| 17548 | 668 (message "Finding buffer %s..." filename)) |
| 10491 | 669 |
| 17548 | 670 (if (bufferp (get-file-buffer filename)) |
| 671 (setq found (buffer-file-name (get-file-buffer filename)))) | |
| 10491 | 672 |
| 673 (setq blist (buffer-list)) | |
| 674 (setq buf (buffer-name (car blist))) | |
| 675 (while (and blist (not found)) | |
| 676 | |
| 677 (if (string-match (concat filename "<[0-9]+>") buf) | |
|
16510
e619a826afdb
Enabled commentary for Finder.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
678 (setq found (buffer-file-name (car blist)))) |
| 10491 | 679 |
| 680 (setq blist (cdr blist)) | |
| 681 (setq buf (buffer-name (car blist)))) | |
| 682 | |
| 683 (setq suffixes (cdr suffixes)) | |
| 684 (setq this-suffix (car suffixes))) | |
| 685 | |
| 686 ;; now look for the real file | |
| 687 (setq dirs search-dirs) | |
| 688 (setq dir (car dirs)) | |
| 689 (while (and (not found) dirs) | |
| 690 | |
| 691 (setq suffixes suffix-list) | |
| 692 | |
| 693 ;; if dir does not contain '/*', look for the file | |
| 694 (if (and dir (not (string-match "\\([^*]*\\)/\\\*\\(/.*\\)*" dir))) | |
| 30816 | 695 (progn |
| 10491 | 696 |
| 697 ;; suffixes is nil => fname-stub is the file we are looking for | |
| 698 ;; otherwise fname-stub is a stub, and we append a suffix | |
| 699 (if suffixes | |
| 700 (setq this-suffix (car suffixes)) | |
| 701 (setq this-suffix "") | |
| 702 (setq suffixes (list ""))) | |
| 703 | |
| 704 (while (and suffixes (not found)) | |
| 705 | |
| 706 (setq filename (concat fname-stub this-suffix)) | |
| 707 (setq file (concat dir "/" filename)) | |
| 708 | |
| 709 (if (not ff-quiet-mode) | |
| 17548 | 710 (message "Finding %s..." file)) |
| 10491 | 711 |
| 712 (if (file-exists-p file) | |
| 713 (setq found file)) | |
| 714 | |
| 715 (setq suffixes (cdr suffixes)) | |
| 716 (setq this-suffix (car suffixes)))) | |
| 717 | |
| 718 ;; otherwise dir matches the '/*', so search each dir separately | |
| 719 (progn | |
| 720 (if (match-beginning 2) | |
| 721 (setq rest (substring dir (match-beginning 2) (match-end 2))) | |
| 722 (setq rest "") | |
| 723 ) | |
| 724 (setq dir (substring dir (match-beginning 1) (match-end 1))) | |
| 725 | |
| 726 (let ((dirlist (ff-all-dirs-under dir '(".."))) | |
| 727 this-dir compl-dirs) | |
| 728 | |
| 729 (setq this-dir (car dirlist)) | |
| 730 (while dirlist | |
| 731 (setq compl-dirs | |
| 732 (append | |
| 733 compl-dirs | |
| 734 (list (concat this-dir rest)) | |
| 735 )) | |
| 736 (setq dirlist (cdr dirlist)) | |
| 737 (setq this-dir (car dirlist))) | |
| 738 | |
| 739 (if compl-dirs | |
| 740 (setq found (ff-get-file-name compl-dirs | |
| 741 fname-stub | |
| 742 suffix-list)))))) | |
| 743 (setq dirs (cdr dirs)) | |
| 744 (setq dir (car dirs))) | |
| 745 | |
| 746 (if found | |
| 747 (message "%s found" found)) | |
| 748 | |
| 749 found)) | |
| 750 | |
| 751 (defun ff-string-match (regexp string &optional start) | |
| 13896 | 752 "Like `string-match', but set `case-fold-search' temporarily. |
| 11272 | 753 The value used comes from `ff-case-fold-search'." |
| 754 (let ((case-fold-search ff-case-fold-search)) | |
| 10491 | 755 (if regexp |
| 11272 | 756 (string-match regexp string start)))) |
| 10491 | 757 |
| 758 (defun ff-list-replace-env-vars (search-list) | |
| 759 "Replace environment variables (of the form $VARIABLE) in SEARCH-LIST." | |
| 760 (let (list | |
| 761 (var (car search-list))) | |
| 762 (while search-list | |
| 763 (if (string-match "\\(.*\\)\\$[({]*\\([a-zA-Z0-9_]+\\)[)}]*\\(.*\\)" var) | |
| 764 (setq var | |
| 765 (concat | |
| 766 (substring var (match-beginning 1) (match-end 1)) | |
| 767 (getenv (substring var (match-beginning 2) (match-end 2))) | |
| 768 (substring var (match-beginning 3) (match-end 3))))) | |
| 769 (setq search-list (cdr search-list)) | |
| 770 (setq list (cons var list)) | |
| 771 (setq var (car search-list))) | |
| 772 (setq search-list (reverse list)))) | |
| 773 | |
| 774 (defun ff-treat-as-special () | |
| 30816 | 775 "Return the file to look for if the construct was special, else nil. |
| 13896 | 776 The construct is defined in the variable `ff-special-constructs'." |
| 10491 | 777 (let* (fname |
| 778 (list ff-special-constructs) | |
| 779 (elem (car list)) | |
| 780 (regexp (car elem)) | |
| 781 (match (cdr elem))) | |
| 782 (while (and list (not fname)) | |
| 783 (if (and (looking-at regexp) match) | |
| 784 (setq fname (funcall match))) | |
| 785 (setq list (cdr list)) | |
| 786 (setq elem (car list)) | |
| 787 (setq regexp (car elem)) | |
| 788 (setq match (cdr elem))) | |
| 789 fname)) | |
| 790 | |
| 791 (defun ff-basename (string) | |
| 30816 | 792 "Return the basename of pathname STRING." |
| 10491 | 793 (setq string (concat "/" string)) |
| 794 (string-match ".*/\\([^/]+\\)$" string) | |
| 795 (setq string (substring string (match-beginning 1) (match-end 1)))) | |
| 796 | |
| 797 (defun ff-all-dirs-under (here &optional exclude) | |
| 11272 | 798 "Get all the directory files under directory HERE. |
| 10491 | 799 Exclude all files in the optional EXCLUDE list." |
| 800 (if (file-directory-p here) | |
| 801 (condition-case nil | |
| 802 (progn | |
| 803 (let ((files (directory-files here t)) | |
| 804 (dirlist (list)) | |
| 805 file) | |
| 806 (while files | |
| 807 (setq file (car files)) | |
| 808 (if (and | |
| 809 (file-directory-p file) | |
| 810 (not (member (ff-basename file) exclude))) | |
| 811 (setq dirlist (cons file dirlist))) | |
| 812 (setq files (cdr files))) | |
| 813 (setq dirlist (reverse dirlist)))) | |
| 814 (error nil)) | |
| 815 nil)) | |
| 816 | |
| 817 (defun ff-switch-file (f1 f2 file &optional in-other-window new-file) | |
| 11272 | 818 "Call F1 or F2 on FILE, according to IN-OTHER-WINDOW. |
| 819 In addition, this runs various hooks. | |
| 10491 | 820 |
| 11272 | 821 Either F1 or F2 receives FILE as the sole argument. |
| 822 The decision of which one to call is based on IN-OTHER-WINDOW | |
| 823 and on the global variable `ff-always-in-other-window'. | |
| 10491 | 824 |
| 11272 | 825 F1 and F2 are typically `find-file' / `find-file-other-window' |
| 826 or `switch-to-buffer' / `switch-to-buffer-other-window' function pairs. | |
| 827 | |
|
47354
27533450eb3b
(ff-pre-find-hook, ff-pre-load-hook, ff-post-load-hook)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44880
diff
changeset
|
828 If optional NEW-FILE is t, then a special hook (`ff-file-created-hook') is |
|
27533450eb3b
(ff-pre-find-hook, ff-pre-load-hook, ff-post-load-hook)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44880
diff
changeset
|
829 called before `ff-post-load-hook'." |
|
27533450eb3b
(ff-pre-find-hook, ff-pre-load-hook, ff-post-load-hook)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44880
diff
changeset
|
830 (run-hooks 'ff-pre-load-hook 'ff-pre-load-hooks) |
| 10491 | 831 (if (or |
| 832 (and in-other-window (not ff-always-in-other-window)) | |
| 833 (and (not in-other-window) ff-always-in-other-window)) | |
| 834 (funcall f2 file) | |
| 835 (funcall f1 file)) | |
| 836 (if new-file | |
|
47354
27533450eb3b
(ff-pre-find-hook, ff-pre-load-hook, ff-post-load-hook)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44880
diff
changeset
|
837 (run-hooks 'ff-file-created-hook 'ff-file-created-hooks)) |
|
27533450eb3b
(ff-pre-find-hook, ff-pre-load-hook, ff-post-load-hook)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44880
diff
changeset
|
838 (run-hooks 'ff-post-load-hook 'ff-post-load-hooks)) |
| 10491 | 839 |
| 840 (defun ff-find-file (file &optional in-other-window new-file) | |
| 13896 | 841 "Like `find-file', but may show the file in another window." |
| 30816 | 842 (ff-switch-file 'find-file |
| 843 'find-file-other-window | |
| 10491 | 844 file in-other-window new-file)) |
| 845 | |
| 13896 | 846 (defun ff-switch-to-buffer (buffer-or-name &optional in-other-window) |
| 847 "Like `switch-to-buffer', but may show the buffer in another window." | |
| 10491 | 848 |
| 30816 | 849 (ff-switch-file 'switch-to-buffer |
| 850 'switch-to-buffer-other-window | |
| 13896 | 851 buffer-or-name in-other-window nil)) |
| 10491 | 852 |
|
22192
bf83c23f3300
(ff-emacs-19, ff-xemacs): Functions deleted.
Richard M. Stallman <rms@gnu.org>
parents:
21087
diff
changeset
|
853 ;;;###autoload |
|
bf83c23f3300
(ff-emacs-19, ff-xemacs): Functions deleted.
Richard M. Stallman <rms@gnu.org>
parents:
21087
diff
changeset
|
854 (defun ff-mouse-find-other-file (event) |
|
bf83c23f3300
(ff-emacs-19, ff-xemacs): Functions deleted.
Richard M. Stallman <rms@gnu.org>
parents:
21087
diff
changeset
|
855 "Visit the file you click on." |
|
bf83c23f3300
(ff-emacs-19, ff-xemacs): Functions deleted.
Richard M. Stallman <rms@gnu.org>
parents:
21087
diff
changeset
|
856 (interactive "e") |
|
bf83c23f3300
(ff-emacs-19, ff-xemacs): Functions deleted.
Richard M. Stallman <rms@gnu.org>
parents:
21087
diff
changeset
|
857 (save-excursion |
| 30816 | 858 (mouse-set-point event) |
|
22192
bf83c23f3300
(ff-emacs-19, ff-xemacs): Functions deleted.
Richard M. Stallman <rms@gnu.org>
parents:
21087
diff
changeset
|
859 (ff-find-other-file nil))) |
| 10491 | 860 |
|
22192
bf83c23f3300
(ff-emacs-19, ff-xemacs): Functions deleted.
Richard M. Stallman <rms@gnu.org>
parents:
21087
diff
changeset
|
861 ;;;###autoload |
|
bf83c23f3300
(ff-emacs-19, ff-xemacs): Functions deleted.
Richard M. Stallman <rms@gnu.org>
parents:
21087
diff
changeset
|
862 (defun ff-mouse-find-other-file-other-window (event) |
| 30816 | 863 "Visit the file you click on in another window." |
|
22192
bf83c23f3300
(ff-emacs-19, ff-xemacs): Functions deleted.
Richard M. Stallman <rms@gnu.org>
parents:
21087
diff
changeset
|
864 (interactive "e") |
|
bf83c23f3300
(ff-emacs-19, ff-xemacs): Functions deleted.
Richard M. Stallman <rms@gnu.org>
parents:
21087
diff
changeset
|
865 (save-excursion |
| 30816 | 866 (mouse-set-point event) |
|
22192
bf83c23f3300
(ff-emacs-19, ff-xemacs): Functions deleted.
Richard M. Stallman <rms@gnu.org>
parents:
21087
diff
changeset
|
867 (ff-find-other-file t))) |
| 10491 | 868 |
| 869 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| 870 ;; This section offers an example of user defined function to select files | |
| 871 | |
| 11272 | 872 (defun ff-upcase-p (string &optional start end) |
| 30816 | 873 "Return t if STRING is all uppercase. |
| 11272 | 874 Given START and/or END, checks between these characters." |
| 10491 | 875 (let (match str) |
| 876 (if (not start) | |
| 877 (setq start 0)) | |
| 878 (if (not end) | |
| 879 (setq end (length string))) | |
| 880 (if (= start end) | |
| 881 (setq end (1+ end))) | |
| 882 (setq str (substring string start end)) | |
| 30816 | 883 (if (and |
| 10491 | 884 (ff-string-match "[A-Z]+" str) |
| 885 (setq match (match-data)) | |
| 886 (= (car match) 0) | |
| 887 (= (car (cdr match)) (length str))) | |
| 888 t | |
| 889 nil))) | |
| 890 | |
| 891 (defun ff-cc-hh-converter (arg) | |
| 11272 | 892 "Discriminate file extensions. |
| 893 Build up a new file list based possibly on part of the directory name | |
| 894 and the name of the file passed in." | |
| 10491 | 895 (ff-string-match "\\(.*\\)/\\([^/]+\\)/\\([^.]+\\).\\([^/]+\\)$" arg) |
| 30816 | 896 (let ((path (if (match-beginning 1) |
| 10491 | 897 (substring arg (match-beginning 1) (match-end 1)) nil)) |
| 30816 | 898 (dire (if (match-beginning 2) |
| 10491 | 899 (substring arg (match-beginning 2) (match-end 2)) nil)) |
| 30816 | 900 (file (if (match-beginning 3) |
| 10491 | 901 (substring arg (match-beginning 3) (match-end 3)) nil)) |
| 30816 | 902 (extn (if (match-beginning 4) |
| 10491 | 903 (substring arg (match-beginning 4) (match-end 4)) nil)) |
| 904 return-list) | |
| 905 (cond | |
| 906 ;; fooZapJunk.cc => ZapJunk.{hh,h} or fooZapJunk.{hh,h} | |
| 30816 | 907 ((and (string= extn "cc") |
| 10491 | 908 (ff-string-match "^\\([a-z]+\\)\\([A-Z].+\\)$" file)) |
| 909 (let ((stub (substring file (match-beginning 2) (match-end 2)))) | |
| 910 (setq dire (upcase (substring file (match-beginning 1) (match-end 1)))) | |
| 911 (setq return-list (list (concat stub ".hh") | |
| 912 (concat stub ".h") | |
| 913 (concat file ".hh") | |
| 914 (concat file ".h"))) | |
| 915 )) | |
| 916 ;; FOO/ZapJunk.hh => fooZapJunk.{cc,C} or ZapJunk.{cc,C} | |
| 11272 | 917 ((and (string= extn "hh") (ff-upcase-p dire) file) |
| 10491 | 918 (let ((stub (concat (downcase dire) file))) |
| 30816 | 919 (setq return-list (list (concat stub ".cc") |
| 10491 | 920 (concat stub ".C") |
| 921 (concat file ".cc") | |
| 922 (concat file ".C"))) | |
| 923 )) | |
| 924 ;; zap.cc => zap.hh or zap.h | |
| 925 ((string= extn "cc") | |
| 926 (let ((stub file)) | |
| 927 (setq return-list (list (concat stub ".hh") | |
| 928 (concat stub ".h"))) | |
| 929 )) | |
| 930 ;; zap.hh => zap.cc or zap.C | |
| 931 ((string= extn "hh") | |
| 932 (let ((stub file)) | |
| 933 (setq return-list (list (concat stub ".cc") | |
| 934 (concat stub ".C"))) | |
| 935 )) | |
| 30816 | 936 (t |
| 10491 | 937 nil)) |
| 938 | |
| 939 return-list)) | |
| 940 | |
| 941 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| 942 ;; This section offers an example of user defined function to place point. | |
| 943 ;; The regexps are Ada specific. | |
| 944 | |
| 945 (defvar ff-function-name nil "Name of the function we are in.") | |
| 946 | |
|
44880
e772dea9fb2e
Remove Ada-specific example code.
Gerd Moellmann <gerd@gnu.org>
parents:
42097
diff
changeset
|
947 ;(eval-when-compile (require 'ada-mode)) |
| 10491 | 948 |
|
47354
27533450eb3b
(ff-pre-find-hook, ff-pre-load-hook, ff-post-load-hook)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44880
diff
changeset
|
949 ;; bind with (setq ff-pre-load-hook 'ff-which-function-are-we-in) |
| 10491 | 950 ;; |
| 951 (defun ff-which-function-are-we-in () | |
| 11272 | 952 "Return the name of the function whose definition/declaration point is in. |
| 953 Also remember that name in `ff-function-name'." | |
| 10491 | 954 |
| 955 (setq ff-function-name nil) | |
| 956 | |
| 957 (save-excursion | |
| 958 (if (re-search-backward ada-procedure-start-regexp nil t) | |
| 959 (setq ff-function-name (buffer-substring (match-beginning 0) | |
| 960 (match-end 0))) | |
| 961 ; we didn't find a procedure start, perhaps there is a package | |
| 962 (if (re-search-backward ada-package-start-regexp nil t) | |
| 963 (setq ff-function-name (buffer-substring (match-beginning 0) | |
| 964 (match-end 0))) | |
| 965 )))) | |
| 966 | |
|
47354
27533450eb3b
(ff-pre-find-hook, ff-pre-load-hook, ff-post-load-hook)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44880
diff
changeset
|
967 ;; bind with (setq ff-post-load-hook 'ff-set-point-accordingly) |
| 10491 | 968 ;; |
| 969 (defun ff-set-point-accordingly () | |
| 11272 | 970 "Find the function specified in `ff-function-name'. |
|
12567
7318536fb256
(ff-set-point-accordingly): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
11272
diff
changeset
|
971 That name was previously determined by `ff-which-function-are-we-in'." |
| 10491 | 972 (if ff-function-name |
| 973 (progn | |
| 974 (goto-char (point-min)) | |
| 975 (search-forward ff-function-name nil t)))) | |
| 976 | |
| 30816 | 977 (provide 'find-file) |
| 10491 | 978 |
| 30816 | 979 ;;; find-file.el ends here |
