17617
|
1 ;;; iswitchb.el --- switch between buffers using substrings
|
17616
|
2
|
|
3 ;; Copyright (C) 1996, 1997 Free Software Foundation, Inc.
|
|
4
|
23785
|
5 ;; Author: Stephen Eglen <stephen@anc.ed.ac.uk>
|
|
6 ;; Maintainer: Stephen Eglen <stephen@anc.ed.ac.uk>
|
22250
|
7 ;; Keywords: extensions convenience
|
23785
|
8 ;; location: http://www.anc.ed.ac.uk/~stephen/emacs/
|
17616
|
9
|
17617
|
10 ;; This file is part of GNU Emacs.
|
|
11
|
|
12 ;; GNU Emacs is free software; you can redistribute it and/or modify
|
17616
|
13 ;; it under the terms of the GNU General Public License as published by
|
|
14 ;; the Free Software Foundation; either version 2, or (at your option)
|
|
15 ;; any later version.
|
|
16
|
17617
|
17 ;; GNU Emacs is distributed in the hope that it will be useful,
|
17616
|
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
20 ;; GNU General Public License for more details.
|
|
21
|
|
22 ;; You should have received a copy of the GNU General Public License
|
|
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the
|
|
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
25 ;; Boston, MA 02111-1307, USA.
|
|
26
|
21058
|
27 ;;; Commentary:
|
17616
|
28
|
21058
|
29 ;; Installation:
|
17616
|
30 ;; To get the functions in this package bound to keys, do
|
|
31 ;; (iswitchb-default-keybindings)
|
25855
|
32 ;;
|
|
33 ;; If you want to use the features of iswitchb, but without rebinding
|
|
34 ;; the keys as above, then you need to add the following hook:
|
|
35 ;; (add-hook 'minibuffer-setup-hook 'iswitchb-minibuffer-setup)
|
17616
|
36
|
|
37 ;; As you type in a substring, the list of buffers currently matching
|
|
38 ;; the substring are displayed as you type. The list is ordered so
|
|
39 ;; that the most recent buffers visited come at the start of the list.
|
|
40 ;; The buffer at the start of the list will be the one visited when
|
|
41 ;; you press return. By typing more of the substring, the list is
|
|
42 ;; narrowed down so that gradually the buffer you want will be at the
|
|
43 ;; top of the list. Alternatively, you can use C-s an C-r to rotate
|
|
44 ;; buffer names in the list until the one you want is at the top of
|
|
45 ;; the list. Completion is also available so that you can see what is
|
|
46 ;; common to all of the matching buffers as you type.
|
|
47
|
|
48 ;; This code is similar to a couple of other packages. Michael R Cook
|
28619
|
49 ;; <cook@sightpath.com> wrote a similar buffer switching package, but
|
17616
|
50 ;; does exact matching rather than substring matching on buffer names.
|
|
51 ;; I also modified a couple of functions from icomplete.el to provide
|
|
52 ;; the completion feedback in the minibuffer.
|
|
53
|
|
54 ;;; Example
|
|
55
|
|
56 ;;If I have two buffers called "123456" and "123", with "123456" the
|
|
57 ;;most recent, when I use iswitchb, I first of all get presented with
|
18776
|
58 ;;the list of all the buffers
|
17616
|
59 ;;
|
18776
|
60 ;; iswitch {123456,123}
|
17616
|
61 ;;
|
|
62 ;; If I then press 2:
|
|
63 ;; iswitch 2[3]{123456,123}
|
|
64 ;;
|
|
65 ;; The list in {} are the matching buffers, most recent first (buffers
|
|
66 ;; visible in the current frame are put at the end of the list by
|
|
67 ;; default). At any time I can select the item at the head of the
|
|
68 ;; list by pressing RET. I can also bring the put the first element
|
|
69 ;; at the end of the list by pressing C-s, or put the last element at
|
|
70 ;; the head of the list by pressing C-r. The item in [] indicates
|
|
71 ;; what can be added to my input by pressing TAB. In this case, I
|
|
72 ;; will get "3" added to my input. So, press TAB:
|
|
73 ;; iswitch 23{123456,123}
|
|
74 ;;
|
|
75 ;; At this point, I still have two matching buffers.
|
|
76 ;; If I want the first buffer in the list, I simply press RET. If I
|
|
77 ;; wanted the second in the list, I could press C-s to move it to the
|
|
78 ;; top of the list and then RET to select it.
|
|
79 ;;
|
|
80 ;;However, If I type 4, I only have one match left:
|
|
81 ;; iswitch 234[123456] [Matched]
|
|
82 ;;
|
|
83 ;;Since there is only one matching buffer left, it is given in [] and we
|
|
84 ;;see the text [Matched] afterwards. I can now press TAB or RET to go
|
|
85 ;;to that buffer.
|
|
86 ;;
|
|
87 ;; If however, I now type "a":
|
|
88 ;; iswitch 234a [No match]
|
|
89 ;; There are no matching buffers. If I press RET or TAB, I can be
|
|
90 ;; prompted to create a new buffer called "234a".
|
|
91 ;;
|
|
92 ;; Of course, where this function comes in really useful is when you
|
|
93 ;; can specify the buffer using only a few keystrokes. In the above
|
|
94 ;; example, the quickest way to get to the "123456" buffer would be
|
20470
|
95 ;; just to type 4 and then RET (assuming there isn't any newer buffer
|
17616
|
96 ;; with 4 in its name).
|
|
97
|
|
98 ;; To see a full list of all matching buffers in a separate buffer,
|
|
99 ;; hit ? or press TAB when there are no further completions to the
|
20470
|
100 ;; substring. Repeated TAB presses will scroll you through this
|
|
101 ;; separate buffer.
|
17616
|
102
|
18776
|
103 ;; The buffer at the head of the list can be killed by pressing C-k.
|
|
104 ;; If the buffer needs saving, you will be queried before the buffer
|
|
105 ;; is killed.
|
|
106
|
|
107 ;; If you find that the file you are after is not in a buffer, you can
|
|
108 ;; press C-x C-f to immediately drop into find-file.
|
|
109
|
17616
|
110 ;;
|
|
111 ;; See the doc string of iswitchb for full keybindings and features.
|
|
112 ;; (describe-function 'iswitchb)
|
|
113
|
28619
|
114 ;; Case matching: The case of strings when matching can be ignored or
|
|
115 ;; used depending on the value of iswitchb-case (default is the same
|
|
116 ;; as case-fold-search, normally t). Imagine you have the following
|
|
117 ;; buffers:
|
|
118 ;;
|
|
119 ;; INBOX *info* *scratch*
|
|
120 ;;
|
|
121 ;; Then these will be the matching buffers, depending on how you type
|
|
122 ;; the two letters `in' and the value of iswitchb-case:
|
|
123 ;;
|
|
124 ;; iswitchb-case user input | matching buffers
|
|
125 ;; ----------------------------------------------
|
|
126 ;; nil in | *info*
|
|
127 ;; t in | INBOX, *info*
|
|
128 ;; t IN | INBOX
|
|
129 ;; t In | [No match]
|
|
130
|
17616
|
131 ;;; Customisation
|
|
132
|
|
133 ;; See the User Variables section below for easy ways to change the
|
18776
|
134 ;; functionality of the program. These are accessible using the
|
|
135 ;; custom package.
|
17616
|
136 ;; To modify the keybindings, use the hook provided. For example:
|
|
137 ;;(add-hook 'iswitchb-define-mode-map-hook
|
|
138 ;; 'iswitchb-my-keys)
|
|
139 ;;
|
|
140 ;;(defun iswitchb-my-keys ()
|
20470
|
141 ;; "Add my keybindings for iswitchb."
|
17616
|
142 ;; (define-key iswitchb-mode-map " " 'iswitchb-next-match)
|
|
143 ;; )
|
|
144 ;;
|
21326
|
145 ;; Seeing all the matching buffers
|
18776
|
146 ;;
|
17616
|
147 ;; If you have many matching buffers, they may not all fit onto one
|
|
148 ;; line of the minibuffer. In this case, you should use rsz-mini
|
|
149 ;; (resize-minibuffer-mode). You can also limit iswitchb so that it
|
|
150 ;; only shows a certain number of lines -- see the documentation for
|
|
151 ;; `iswitchb-minibuffer-setup-hook'.
|
|
152
|
21326
|
153 ;; Changing the list of buffers
|
17616
|
154
|
|
155 ;; By default, the list of current buffers is most recent first,
|
|
156 ;; oldest last, with the exception that the buffers visible in the
|
|
157 ;; current frame are put at the end of the list. A hook exists to
|
|
158 ;; allow other functions to order the list. For example, if you add:
|
|
159 ;;
|
|
160 ;; (add-hook 'iswitchb-make-buflist-hook 'iswitchb-summaries-to-end)
|
|
161 ;;
|
|
162 ;; then all buffers matching "Summary" are moved to the end of the
|
|
163 ;; list. (I find this handy for keeping the INBOX Summary and so on
|
|
164 ;; out of the way.) It also moves buffers matching "output\*$" to the
|
|
165 ;; end of the list (these are created by AUC TeX when compiling.)
|
|
166 ;; Other functions could be made available which alter the list of
|
|
167 ;; matching buffers (either deleting or rearranging elements.)
|
|
168
|
|
169 ;; Font-Lock
|
|
170
|
|
171 ;; If you have font-lock loaded, the first matching buffer is
|
|
172 ;; highlighted. To switch this off, set (setq iswitchb-use-fonts nil)
|
|
173 ;; I don't use font-lock that much, so I've hardcoded the faces. If
|
|
174 ;; this is too harsh, let me know. Colouring of the matching buffer
|
|
175 ;; name was suggested by Carsten Dominik (dominik@strw.leidenuniv.nl)
|
|
176
|
21326
|
177 ;; Replacement for read-buffer
|
17616
|
178
|
20470
|
179 ;; iswitchb-read-buffer has been written to be a drop in replacement
|
|
180 ;; for the normal buffer selection routine `read-buffer'. To use
|
21058
|
181 ;; iswitch for all buffer selections in Emacs, add:
|
20470
|
182 ;; (setq read-buffer-function 'iswitchb-read-buffer)
|
21058
|
183 ;; (This variable should be present in Emacs 20.3+)
|
|
184 ;; XEmacs users can get the same behaviour by doing:
|
|
185 ;; (defalias 'read-buffer 'iswitchb-read-buffer)
|
|
186 ;; since `read-buffer' is defined in lisp.
|
17616
|
187
|
21326
|
188 ;; Regexp matching
|
|
189
|
|
190 ;; There is limited provision for regexp matching within iswitchb,
|
|
191 ;; enabled through `iswitchb-regexp'. This allows you to type `c$'
|
|
192 ;; for example and see all buffer names ending in `c'. This facility
|
|
193 ;; is quite limited though in two respects. First, you can't
|
|
194 ;; currently type in expressions like `[0-9]' directly -- you have to
|
|
195 ;; type them in when iswitchb-regexp is nil and then toggle on the
|
|
196 ;; regexp functionality. Likewise, don't enter an expression
|
|
197 ;; containing `\' in regexp mode. If you try, iswitchb gets confused,
|
|
198 ;; so just hit C-g and try again. Secondly, no completion mechanism
|
|
199 ;; is currently offered when regexp searching.
|
|
200
|
18776
|
201 ;;; TODO
|
|
202
|
17616
|
203 ;;; Acknowledgements
|
|
204
|
|
205 ;; Thanks to Jari Aalto <jari.aalto@poboxes.com> for help with the
|
|
206 ;; first version of this package, iswitch-buffer. Thanks also to many
|
|
207 ;; others for testing earlier versions.
|
|
208
|
|
209 ;;; Code:
|
|
210
|
21058
|
211 ;; CL needed for cadr and last
|
21706
a0c3ee34362d
Only require cl if cadr and last are not defined (thanks to Dave Love.)
Stephen Eglen <stephen@gnu.org>
diff
changeset
|
212 (if (not (and (fboundp 'cadr)
|
a0c3ee34362d
Only require cl if cadr and last are not defined (thanks to Dave Love.)
Stephen Eglen <stephen@gnu.org>
diff
changeset
|
213 (fboundp 'last)))
|
a0c3ee34362d
Only require cl if cadr and last are not defined (thanks to Dave Love.)
Stephen Eglen <stephen@gnu.org>
diff
changeset
|
214 (require 'cl))
|
21058
|
215
|
18776
|
216 ;; Set up the custom library.
|
|
217 ;; taken from http://www.dina.kvl.dk/~abraham/custom/
|
|
218 (eval-and-compile
|
|
219 (condition-case ()
|
|
220 (require 'custom)
|
|
221 (error nil))
|
|
222 (if (and (featurep 'custom) (fboundp 'custom-declare-variable))
|
|
223 nil ;; We've got what we needed
|
|
224 ;; We have the old custom-library, hack around it!
|
|
225 (defmacro defgroup (&rest args)
|
|
226 nil)
|
|
227 (defmacro defcustom (var value doc &rest args)
|
26455
|
228 `(defvar ,var ,value ,doc))))
|
18776
|
229
|
17616
|
230 ;;; User Variables
|
|
231 ;;
|
|
232 ;; These are some things you might want to change.
|
|
233
|
18776
|
234 (defgroup iswitchb nil
|
21058
|
235 "Switch between buffers using substrings."
|
18776
|
236 :group 'extensions
|
22250
|
237 :group 'convenience
|
18776
|
238 ;; These links are to be added in later versions of custom and
|
|
239 ;; so are currently commented out.
|
|
240 :link '(emacs-commentary-link :tag "Commentary" "iswitchb.el")
|
21706
a0c3ee34362d
Only require cl if cadr and last are not defined (thanks to Dave Love.)
Stephen Eglen <stephen@gnu.org>
diff
changeset
|
241 :link '(emacs-library-link :tag "Lisp File" "iswitchb.el"))
|
18776
|
242
|
|
243 (defcustom iswitchb-case case-fold-search
|
28619
|
244 "*Non-nil if searching of buffer names should ignore case.
|
|
245 If this is non-nil but the user input has any upper case letters, matching
|
|
246 is temporarily case sensitive."
|
18776
|
247 :type 'boolean
|
|
248 :group 'iswitchb)
|
|
249
|
|
250 (defcustom iswitchb-buffer-ignore
|
17616
|
251 '("^ ")
|
17617
|
252 "*List of regexps or functions matching buffer names to ignore.
|
|
253 For example, traditional behavior is not to list buffers whose names begin
|
|
254 with a space, for which the regexp is `^ '. See the source file for
|
18776
|
255 example functions that filter buffernames."
|
|
256 :type '(repeat regexp)
|
|
257 :group 'iswitchb)
|
|
258
|
17616
|
259 ;;; Examples for setting the value of iswitchb-buffer-ignore
|
21326
|
260 ;(defun iswitchb-ignore-c-mode (name)
|
17616
|
261 ; "Ignore all c mode buffers -- example function for iswitchb."
|
|
262 ; (save-excursion
|
|
263 ; (set-buffer name)
|
|
264 ; (string-match "^C$" mode-name)))
|
|
265
|
21326
|
266 ;(setq iswitchb-buffer-ignore '("^ " iswitchb-ignore-c-mode))
|
17616
|
267 ;(setq iswitchb-buffer-ignore '("^ " "\\.c$" "\\.h$"))
|
|
268
|
18776
|
269 (defcustom iswitchb-default-method 'always-frame
|
17617
|
270 "*How to switch to new buffer when using `iswitchb-buffer'.
|
17616
|
271 Possible values:
|
|
272 `samewindow' Show new buffer in same window
|
|
273 `otherwindow' Show new buffer in another window (same frame)
|
17618
|
274 `display' Display buffer in another window without switching to it
|
17616
|
275 `otherframe' Show new buffer in another frame
|
|
276 `maybe-frame' If a buffer is visible in another frame, prompt to ask if you
|
|
277 you want to see the buffer in the same window of the current
|
|
278 frame or in the other frame.
|
21058
|
279 `always-frame' If a buffer is visible in another frame, raise that
|
18776
|
280 frame. Otherwise, visit the buffer in the same window."
|
21058
|
281 :type '(choice (const samewindow)
|
|
282 (const otherwindow)
|
|
283 (const display)
|
|
284 (const otherframe)
|
|
285 (const maybe-frame)
|
|
286 (const always-frame))
|
18776
|
287 :group 'iswitchb)
|
17616
|
288
|
18776
|
289 (defcustom iswitchb-regexp nil
|
17617
|
290 "*Non-nil means that `iswitchb' will do regexp matching.
|
21326
|
291 Value can be toggled within `iswitchb' using `iswitchb-toggle-regexp'."
|
18776
|
292 :type 'boolean
|
|
293 :group 'iswitchb)
|
17616
|
294
|
18776
|
295 (defcustom iswitchb-newbuffer t
|
17616
|
296 "*Non-nil means create new buffer if no buffer matches substring.
|
18776
|
297 See also `iswitchb-prompt-newbuffer'."
|
|
298 :type 'boolean
|
|
299 :group 'iswitchb)
|
17616
|
300
|
18776
|
301 (defcustom iswitchb-prompt-newbuffer t
|
|
302 "*Non-nil means prompt user to confirm before creating new buffer.
|
|
303 See also `iswitchb-newbuffer'."
|
|
304 :type 'boolean
|
|
305 :group 'iswitchb)
|
|
306
|
|
307 (defcustom iswitchb-define-mode-map-hook nil
|
|
308 "*Hook to define keys in `iswitchb-mode-map' for extra keybindings."
|
|
309 :type 'hook
|
|
310 :group 'iswitchb)
|
|
311
|
|
312 (defcustom iswitchb-use-fonts t
|
21326
|
313 "*Non-nil means use font-lock fonts for showing first match."
|
18776
|
314 :type 'boolean
|
|
315 :group 'iswitchb)
|
|
316
|
27497
|
317 (defcustom iswitchb-use-frame-buffer-list nil
|
|
318 "*Non-nil means use the currently selected frame's buffer list."
|
|
319 :type 'boolean
|
|
320 :group 'iswitchb)
|
|
321
|
18776
|
322 (defcustom iswitchb-make-buflist-hook nil
|
|
323 "*Hook to run when list of matching buffers is created."
|
|
324 :type 'hook
|
|
325 :group 'iswitchb)
|
|
326
|
17616
|
327 (defvar iswitchb-all-frames 'visible
|
|
328 "*Argument to pass to `walk-windows' when finding visible buffers.
|
|
329 See documentation of `walk-windows' for useful values.")
|
|
330
|
21326
|
331 (defcustom iswitchb-minibuffer-setup-hook nil
|
|
332 "*Iswitchb-specific customization of minibuffer setup.
|
17616
|
333
|
17617
|
334 This hook is run during minibuffer setup iff `iswitchb' will be active.
|
17616
|
335 It is intended for use in customizing iswitchb for interoperation
|
|
336 with other packages. For instance:
|
|
337
|
|
338 \(add-hook 'iswitchb-minibuffer-setup-hook
|
|
339 \(function
|
|
340 \(lambda ()
|
|
341 \(make-local-variable 'resize-minibuffer-window-max-height)
|
|
342 \(setq resize-minibuffer-window-max-height 3))))
|
|
343
|
|
344 will constrain rsz-mini to a maximum minibuffer height of 3 lines when
|
21326
|
345 iswitchb is running. Copied from `icomplete-minibuffer-setup-hook'."
|
|
346 :type 'hook
|
|
347 :group 'iswitchb)
|
|
348
|
|
349 ;; Do we need the variable iswitchb-use-mycompletion?
|
|
350
|
|
351 ;;; Internal Variables
|
|
352
|
|
353 (defvar iswitchb-method nil
|
|
354 "Stores the method for viewing the selected buffer.
|
|
355 Its value is one of `samewindow', `otherwindow', `display', `otherframe',
|
|
356 `maybe-frame' or `always-frame'. See `iswitchb-default-method' for
|
|
357 details of values.")
|
17616
|
358
|
|
359 (defvar iswitchb-eoinput 1
|
|
360 "Point where minibuffer input ends and completion info begins.
|
17617
|
361 Copied from `icomplete-eoinput'.")
|
17616
|
362 (make-variable-buffer-local 'iswitchb-eoinput)
|
|
363
|
|
364 (defvar iswitchb-buflist nil
|
|
365 "Stores the current list of buffers that will be searched through.
|
|
366 The list is ordered, so that the most recent buffers come first,
|
|
367 although by default, the buffers visible in the current frame are put
|
|
368 at the end of the list. Created by `iswitchb-make-buflist'.")
|
|
369
|
|
370 ;; todo -- is this necessary?
|
|
371
|
|
372 (defvar iswitchb-use-mycompletion nil
|
17617
|
373 "Non-nil means use `iswitchb-buffer' completion feedback.
|
|
374 Should only be set to t by iswitchb functions, so that it doesn't
|
|
375 interfere with other minibuffer usage.")
|
17616
|
376
|
|
377 (defvar iswitchb-change-word-sub nil
|
|
378 "Private variable used by `iswitchb-word-matching-substring'.")
|
|
379
|
|
380 (defvar iswitchb-common-match-string nil
|
|
381 "Stores the string that is common to all matching buffers.")
|
|
382
|
|
383 (defvar iswitchb-rescan nil
|
|
384 "Non-nil means we need to regenerate the list of matching buffers.")
|
|
385
|
|
386 (defvar iswitchb-text nil
|
|
387 "Stores the users string as it is typed in.")
|
|
388
|
|
389 (defvar iswitchb-matches nil
|
20470
|
390 "List of buffers currently matching `iswitchb-text'.")
|
17616
|
391
|
|
392 (defvar iswitchb-mode-map nil
|
17617
|
393 "Keymap for `iswitchb-buffer'.")
|
17616
|
394
|
|
395 (defvar iswitchb-history nil
|
17617
|
396 "History of buffers selected using `iswitchb-buffer'.")
|
17616
|
397
|
|
398 (defvar iswitchb-exit nil
|
17617
|
399 "Flag to monitor how `iswitchb-buffer' exits.
|
|
400 If equal to `takeprompt', we use the prompt as the buffer name to be
|
|
401 selected.")
|
17616
|
402
|
|
403 (defvar iswitchb-buffer-ignore-orig nil
|
|
404 "Stores original value of `iswitchb-buffer-ignore'.")
|
|
405
|
|
406 (defvar iswitchb-xemacs (string-match "XEmacs" (emacs-version))
|
|
407 "Non-nil if we are running XEmacs. Otherwise, assume we are running Emacs.")
|
|
408
|
21326
|
409 (defvar iswitchb-default nil
|
|
410 "Default buffer for iswitchb.")
|
17616
|
411
|
22380
2645c2c3829f
(iswitchb-require-match, iswitchb-temp-buflist, iswitchb-bufs-in-frame):
Stephen Eglen <stephen@gnu.org>
diff
changeset
|
412 ;; The following variables are needed to keep the byte compiler quiet.
|
2645c2c3829f
(iswitchb-require-match, iswitchb-temp-buflist, iswitchb-bufs-in-frame):
Stephen Eglen <stephen@gnu.org>
diff
changeset
|
413 (defvar iswitchb-require-match nil
|
2645c2c3829f
(iswitchb-require-match, iswitchb-temp-buflist, iswitchb-bufs-in-frame):
Stephen Eglen <stephen@gnu.org>
diff
changeset
|
414 "Non-nil if matching buffer must be selected.")
|
2645c2c3829f
(iswitchb-require-match, iswitchb-temp-buflist, iswitchb-bufs-in-frame):
Stephen Eglen <stephen@gnu.org>
diff
changeset
|
415
|
2645c2c3829f
(iswitchb-require-match, iswitchb-temp-buflist, iswitchb-bufs-in-frame):
Stephen Eglen <stephen@gnu.org>
diff
changeset
|
416 (defvar iswitchb-temp-buflist nil
|
2645c2c3829f
(iswitchb-require-match, iswitchb-temp-buflist, iswitchb-bufs-in-frame):
Stephen Eglen <stephen@gnu.org>
diff
changeset
|
417 "Stores a temporary version of the buffer list being created.")
|
2645c2c3829f
(iswitchb-require-match, iswitchb-temp-buflist, iswitchb-bufs-in-frame):
Stephen Eglen <stephen@gnu.org>
diff
changeset
|
418
|
2645c2c3829f
(iswitchb-require-match, iswitchb-temp-buflist, iswitchb-bufs-in-frame):
Stephen Eglen <stephen@gnu.org>
diff
changeset
|
419 (defvar iswitchb-bufs-in-frame nil
|
2645c2c3829f
(iswitchb-require-match, iswitchb-temp-buflist, iswitchb-bufs-in-frame):
Stephen Eglen <stephen@gnu.org>
diff
changeset
|
420 "List of the buffers visible in the current frame.")
|
2645c2c3829f
(iswitchb-require-match, iswitchb-temp-buflist, iswitchb-bufs-in-frame):
Stephen Eglen <stephen@gnu.org>
diff
changeset
|
421
|
17616
|
422 ;;; FUNCTIONS
|
|
423
|
|
424 ;;; ISWITCHB KEYMAP
|
|
425 (defun iswitchb-define-mode-map ()
|
17617
|
426 "Set up the keymap for `iswitchb-buffer'."
|
17616
|
427 (interactive)
|
|
428 (let (map)
|
20470
|
429 ;; generated every time so that it can inherit new functions.
|
17616
|
430 ;;(or iswitchb-mode-map
|
|
431
|
|
432 (setq map (copy-keymap minibuffer-local-map))
|
|
433 (define-key map "?" 'iswitchb-completion-help)
|
|
434 (define-key map "\C-s" 'iswitchb-next-match)
|
|
435 (define-key map "\C-r" 'iswitchb-prev-match)
|
|
436 (define-key map "\t" 'iswitchb-complete)
|
|
437 (define-key map "\C-j" 'iswitchb-select-buffer-text)
|
|
438 (define-key map "\C-t" 'iswitchb-toggle-regexp)
|
18776
|
439 (define-key map "\C-x\C-f" 'iswitchb-find-file)
|
17616
|
440 ;;(define-key map "\C-a" 'iswitchb-toggle-ignore)
|
|
441 (define-key map "\C-c" 'iswitchb-toggle-case)
|
18776
|
442 (define-key map "\C-k" 'iswitchb-kill-buffer)
|
20470
|
443 (define-key map "\C-m" 'iswitchb-exit-minibuffer)
|
17616
|
444 (setq iswitchb-mode-map map)
|
21706
a0c3ee34362d
Only require cl if cadr and last are not defined (thanks to Dave Love.)
Stephen Eglen <stephen@gnu.org>
diff
changeset
|
445 (run-hooks 'iswitchb-define-mode-map-hook)))
|
17616
|
446
|
|
447 ;;; MAIN FUNCTION
|
|
448 (defun iswitchb ()
|
|
449 "Switch to buffer matching a substring.
|
|
450 As you type in a string, all of the buffers matching the string are
|
|
451 displayed. When you have found the buffer you want, it can then be
|
|
452 selected. As you type, most keys have their normal keybindings,
|
|
453 except for the following:
|
|
454 \\<iswitchb-mode-map>
|
|
455
|
|
456 RET Select the buffer at the front of the list of matches. If the
|
17617
|
457 list is empty, possibly prompt to create new buffer.
|
17616
|
458
|
|
459 \\[iswitchb-select-buffer-text] Select the current prompt as the buffer.
|
|
460 If no buffer is found, prompt for a new one.
|
|
461
|
|
462 \\[iswitchb-next-match] Put the first element at the end of the list.
|
|
463 \\[iswitchb-prev-match] Put the last element at the start of the list.
|
|
464 \\[iswitchb-complete] Complete a common suffix to the current string that
|
|
465 matches all buffers. If there is only one match, select that buffer.
|
|
466 If there is no common suffix, show a list of all matching buffers
|
|
467 in a separate window.
|
20470
|
468 \\[iswitchb-toggle-regexp] Toggle regexp searching.
|
17616
|
469 \\[iswitchb-toggle-case] Toggle case-sensitive searching of buffer names.
|
18776
|
470 \\[iswitchb-completion-help] Show list of matching buffers in separate window.
|
|
471 \\[iswitchb-find-file] Exit iswitchb and drop into find-file.
|
|
472 \\[iswitchb-kill-buffer] Kill buffer at head of buffer list."
|
17616
|
473 ;;\\[iswitchb-toggle-ignore] Toggle ignoring certain buffers (see \
|
|
474 ;;`iswitchb-buffer-ignore')
|
|
475
|
|
476 (let
|
20470
|
477 (prompt buf)
|
17616
|
478
|
|
479 (setq prompt (format "iswitch "))
|
20470
|
480
|
|
481 (setq buf (iswitchb-read-buffer prompt))
|
|
482
|
17616
|
483 ;;(message "chosen text %s" iswitchb-final-text)
|
|
484 ;; Choose the buffer name: either the text typed in, or the head
|
|
485 ;; of the list of matches
|
18776
|
486
|
|
487 (cond ( (eq iswitchb-exit 'findfile)
|
|
488 (call-interactively 'find-file))
|
|
489
|
|
490 (t
|
|
491 ;; View the buffer
|
21058
|
492 ;;(message "go to buf %s" buf)
|
20470
|
493 ;; Check buf is non-nil.
|
|
494 (if buf
|
|
495 (if (get-buffer buf)
|
18776
|
496 ;; buffer exists, so view it and then exit
|
20470
|
497 (iswitchb-visit-buffer buf)
|
|
498 ;; else buffer doesn't exist
|
|
499 (iswitchb-possible-new-buffer buf)))
|
21706
a0c3ee34362d
Only require cl if cadr and last are not defined (thanks to Dave Love.)
Stephen Eglen <stephen@gnu.org>
diff
changeset
|
500 ))))
|
20470
|
501
|
22354
|
502 ;;;###autoload
|
20470
|
503 (defun iswitchb-read-buffer (prompt &optional default require-match)
|
|
504 "Replacement for the built-in `read-buffer'.
|
|
505 Return the name of a buffer selected.
|
|
506 PROMPT is the prompt to give to the user. DEFAULT if given is the default
|
|
507 buffer to be selected, which will go to the front of the list.
|
|
508 If REQUIRE-MATCH is non-nil, an existing-buffer must be selected."
|
|
509 (let
|
|
510 (
|
|
511 buf-sel
|
|
512 iswitchb-final-text
|
|
513 (icomplete-mode nil) ;; prevent icomplete starting up
|
|
514 ;; can only use fonts if they have been bound.
|
|
515 (iswitchb-use-fonts (and iswitchb-use-fonts
|
|
516 (boundp 'font-lock-comment-face)
|
|
517 (boundp 'font-lock-function-name-face))))
|
|
518
|
|
519 (iswitchb-define-mode-map)
|
|
520 (setq iswitchb-exit nil)
|
|
521 (setq iswitchb-rescan t)
|
|
522 (setq iswitchb-text "")
|
21326
|
523 (setq iswitchb-default
|
|
524 (if (bufferp default)
|
|
525 (buffer-name default)
|
|
526 default))
|
|
527 (iswitchb-make-buflist iswitchb-default)
|
20470
|
528 (iswitchb-set-matches)
|
|
529 (let
|
|
530 ((minibuffer-local-completion-map iswitchb-mode-map)
|
|
531 (iswitchb-prepost-hooks t)
|
21706
a0c3ee34362d
Only require cl if cadr and last are not defined (thanks to Dave Love.)
Stephen Eglen <stephen@gnu.org>
diff
changeset
|
532 (iswitchb-require-match require-match))
|
20470
|
533 ;; prompt the user for the buffer name
|
|
534 (setq iswitchb-final-text (completing-read
|
|
535 prompt ;the prompt
|
|
536 '(("dummy".1)) ;table
|
|
537 nil ;predicate
|
|
538 nil ;require-match [handled elsewhere]
|
|
539 nil ;initial-contents
|
|
540 'iswitchb-history)))
|
|
541 ;; Handling the require-match must be done in a better way.
|
|
542 (if (and require-match (not (iswitchb-existing-buffer-p)))
|
|
543 (error "must specify valid buffer"))
|
|
544
|
|
545 (if (or
|
|
546 (eq iswitchb-exit 'takeprompt)
|
|
547 (null iswitchb-matches))
|
|
548 (setq buf-sel iswitchb-final-text)
|
|
549 ;; else take head of list
|
|
550 (setq buf-sel (car iswitchb-matches)))
|
|
551
|
|
552 ;; Or possibly choose the default buffer
|
|
553 (if (equal iswitchb-final-text "")
|
|
554 (setq buf-sel
|
|
555 (car iswitchb-matches)))
|
|
556
|
|
557 buf-sel))
|
|
558
|
|
559 (defun iswitchb-existing-buffer-p ()
|
|
560 "Return non-nil if there is a matching buffer."
|
|
561 (not (null iswitchb-matches)))
|
|
562
|
17616
|
563 ;;; COMPLETION CODE
|
|
564
|
|
565 (defun iswitchb-set-common-completion ()
|
17617
|
566 "Find common completion of `iswitchb-text' in `iswitchb-matches'.
|
|
567 The result is stored in `iswitchb-common-match-string'."
|
17616
|
568
|
|
569 (let* (val)
|
|
570 (setq iswitchb-common-match-string nil)
|
|
571 (if (and iswitchb-matches
|
21326
|
572 (not iswitchb-regexp) ;; testing
|
17616
|
573 (stringp iswitchb-text)
|
|
574 (> (length iswitchb-text) 0))
|
|
575 (if (setq val (iswitchb-find-common-substring
|
|
576 iswitchb-matches iswitchb-text))
|
|
577 (setq iswitchb-common-match-string val)))
|
21706
a0c3ee34362d
Only require cl if cadr and last are not defined (thanks to Dave Love.)
Stephen Eglen <stephen@gnu.org>
diff
changeset
|
578 val))
|
17616
|
579
|
|
580 (defun iswitchb-complete ()
|
|
581 "Try and complete the current pattern amongst the buffer names."
|
|
582 (interactive)
|
|
583 (let (res)
|
|
584 (cond ((not iswitchb-matches)
|
21706
a0c3ee34362d
Only require cl if cadr and last are not defined (thanks to Dave Love.)
Stephen Eglen <stephen@gnu.org>
diff
changeset
|
585 (iswitchb-completion-help))
|
17616
|
586
|
20470
|
587 ((= 1 (length iswitchb-matches))
|
17616
|
588 ;; only one choice, so select it.
|
|
589 (exit-minibuffer))
|
|
590
|
|
591 (t
|
|
592 ;; else there could be some completions
|
21326
|
593 (setq res iswitchb-common-match-string)
|
17616
|
594 (if (and (not (memq res '(t nil)))
|
18776
|
595 (not (equal res iswitchb-text)))
|
20470
|
596 ;; found something to complete, so put it in the minibuffer.
|
17616
|
597 (progn
|
|
598 (setq iswitchb-rescan nil)
|
25791
|
599 (delete-region (minibuffer-prompt-end) (point))
|
17616
|
600 (insert res))
|
|
601 ;; else nothing to complete
|
|
602 (iswitchb-completion-help)
|
21706
a0c3ee34362d
Only require cl if cadr and last are not defined (thanks to Dave Love.)
Stephen Eglen <stephen@gnu.org>
diff
changeset
|
603 )))))
|
17616
|
604
|
|
605 ;;; TOGGLE FUNCTIONS
|
|
606
|
|
607 (defun iswitchb-toggle-case ()
|
|
608 "Toggle the value of `iswitchb-case'."
|
|
609 (interactive)
|
|
610 (setq iswitchb-case (not iswitchb-case))
|
|
611 ;; ask for list to be regenerated.
|
21706
a0c3ee34362d
Only require cl if cadr and last are not defined (thanks to Dave Love.)
Stephen Eglen <stephen@gnu.org>
diff
changeset
|
612 (setq iswitchb-rescan t))
|
17616
|
613
|
|
614 (defun iswitchb-toggle-regexp ()
|
|
615 "Toggle the value of `iswitchb-regexp'."
|
|
616 (interactive)
|
|
617 (setq iswitchb-regexp (not iswitchb-regexp))
|
|
618 ;; ask for list to be regenerated.
|
21706
a0c3ee34362d
Only require cl if cadr and last are not defined (thanks to Dave Love.)
Stephen Eglen <stephen@gnu.org>
diff
changeset
|
619 (setq iswitchb-rescan t))
|
17616
|
620
|
|
621 (defun iswitchb-toggle-ignore ()
|
|
622 "Toggle ignoring buffers specified with `iswitchb-buffer-ignore'."
|
|
623 (interactive)
|
|
624 (if iswitchb-buffer-ignore
|
|
625 (progn
|
|
626 (setq iswitchb-buffer-ignore-orig iswitchb-buffer-ignore)
|
21706
a0c3ee34362d
Only require cl if cadr and last are not defined (thanks to Dave Love.)
Stephen Eglen <stephen@gnu.org>
diff
changeset
|
627 (setq iswitchb-buffer-ignore nil))
|
17616
|
628 ;; else
|
21706
a0c3ee34362d
Only require cl if cadr and last are not defined (thanks to Dave Love.)
Stephen Eglen <stephen@gnu.org>
diff
changeset
|
629 (setq iswitchb-buffer-ignore iswitchb-buffer-ignore-orig))
|
21326
|
630 (iswitchb-make-buflist iswitchb-default)
|
17616
|
631 ;; ask for list to be regenerated.
|
21706
a0c3ee34362d
Only require cl if cadr and last are not defined (thanks to Dave Love.)
Stephen Eglen <stephen@gnu.org>
diff
changeset
|
632 (setq iswitchb-rescan t))
|
17616
|
633
|
20470
|
634 (defun iswitchb-exit-minibuffer ()
|
|
635 "Exit minibuffer, but make sure we have a match if one is needed."
|
|
636 (interactive)
|
|
637 (if (or (not iswitchb-require-match)
|
|
638 (iswitchb-existing-buffer-p))
|
21706
a0c3ee34362d
Only require cl if cadr and last are not defined (thanks to Dave Love.)
Stephen Eglen <stephen@gnu.org>
diff
changeset
|
639 (throw 'exit nil)))
|
17616
|
640
|
|
641 (defun iswitchb-select-buffer-text ()
|
17617
|
642 "Select the buffer named by the prompt.
|
|
643 If no buffer exactly matching the prompt exists, maybe create a new one."
|
17616
|
644 (interactive)
|
|
645 (setq iswitchb-exit 'takeprompt)
|
|
646 (exit-minibuffer))
|
|
647
|
18776
|
648 (defun iswitchb-find-file ()
|
|
649 "Drop into find-file from buffer switching."
|
|
650 (interactive)
|
|
651 (setq iswitchb-exit 'findfile)
|
|
652 (exit-minibuffer))
|
|
653
|
17616
|
654 (defun iswitchb-next-match ()
|
|
655 "Put first element of `iswitchb-matches' at the end of the list."
|
|
656 (interactive)
|
18776
|
657 (let ((next (cadr iswitchb-matches)))
|
|
658 (setq iswitchb-buflist (iswitchb-chop iswitchb-buflist next))
|
21706
a0c3ee34362d
Only require cl if cadr and last are not defined (thanks to Dave Love.)
Stephen Eglen <stephen@gnu.org>
diff
changeset
|
659 (setq iswitchb-rescan t)))
|
17616
|
660
|
|
661 (defun iswitchb-prev-match ()
|
|
662 "Put last element of `iswitchb-matches' at the front of the list."
|
|
663 (interactive)
|
18776
|
664 (let ((prev (car (last iswitchb-matches))))
|
|
665 (setq iswitchb-buflist (iswitchb-chop iswitchb-buflist prev))
|
21706
a0c3ee34362d
Only require cl if cadr and last are not defined (thanks to Dave Love.)
Stephen Eglen <stephen@gnu.org>
diff
changeset
|
666 (setq iswitchb-rescan t)))
|
18776
|
667
|
|
668 (defun iswitchb-chop (list elem)
|
|
669 "Remove all elements before ELEM and put them at the end of LIST."
|
|
670 (let ((ret nil)
|
|
671 (next nil)
|
|
672 (sofar nil))
|
|
673 (while (not ret)
|
|
674 (setq next (car list))
|
|
675 (if (equal next elem)
|
|
676 (setq ret (append list (nreverse sofar)))
|
|
677 ;; else
|
|
678 (progn
|
|
679 (setq list (cdr list))
|
|
680 (setq sofar (cons next sofar)))))
|
|
681 ret))
|
17616
|
682
|
|
683 ;;; CREATE LIST OF ALL CURRENT BUFFERS
|
|
684
|
20470
|
685 (defun iswitchb-make-buflist (default)
|
17617
|
686 "Set `iswitchb-buflist' to the current list of buffers.
|
18776
|
687 Currently visible buffers are put at the end of the list.
|
|
688 The hook `iswitchb-make-buflist-hook' is run after the list has been
|
|
689 created to allow the user to further modify the order of the buffer names
|
20470
|
690 in this list. If DEFAULT is non-nil, and corresponds to an existing buffer,
|
|
691 it is put to the start of the list."
|
17616
|
692 (setq iswitchb-buflist
|
18776
|
693 (let* ((iswitchb-current-buffers (iswitchb-get-buffers-in-frames))
|
22380
2645c2c3829f
(iswitchb-require-match, iswitchb-temp-buflist, iswitchb-bufs-in-frame):
Stephen Eglen <stephen@gnu.org>
diff
changeset
|
694 (iswitchb-temp-buflist
|
18776
|
695 (delq nil
|
|
696 (mapcar
|
|
697 (lambda (x)
|
|
698 (let ((b-name (buffer-name x)))
|
|
699 (if (not
|
|
700 (or
|
|
701 (iswitchb-ignore-buffername-p b-name)
|
|
702 (memq b-name iswitchb-current-buffers)))
|
|
703 b-name)))
|
27497
|
704 (buffer-list (and iswitchb-use-frame-buffer-list
|
|
705 (selected-frame)))))))
|
22380
2645c2c3829f
(iswitchb-require-match, iswitchb-temp-buflist, iswitchb-bufs-in-frame):
Stephen Eglen <stephen@gnu.org>
diff
changeset
|
706 (nconc iswitchb-temp-buflist iswitchb-current-buffers)
|
17616
|
707 (run-hooks 'iswitchb-make-buflist-hook)
|
20470
|
708 ;; Should this be after the hooks, or should the hooks be the
|
|
709 ;; final thing to be run?
|
|
710 (if default
|
|
711 (progn
|
22380
2645c2c3829f
(iswitchb-require-match, iswitchb-temp-buflist, iswitchb-bufs-in-frame):
Stephen Eglen <stephen@gnu.org>
diff
changeset
|
712 (setq iswitchb-temp-buflist
|
2645c2c3829f
(iswitchb-require-match, iswitchb-temp-buflist, iswitchb-bufs-in-frame):
Stephen Eglen <stephen@gnu.org>
diff
changeset
|
713 (delete default iswitchb-temp-buflist))
|
2645c2c3829f
(iswitchb-require-match, iswitchb-temp-buflist, iswitchb-bufs-in-frame):
Stephen Eglen <stephen@gnu.org>
diff
changeset
|
714 (setq iswitchb-temp-buflist
|
2645c2c3829f
(iswitchb-require-match, iswitchb-temp-buflist, iswitchb-bufs-in-frame):
Stephen Eglen <stephen@gnu.org>
diff
changeset
|
715 (cons default iswitchb-temp-buflist))))
|
2645c2c3829f
(iswitchb-require-match, iswitchb-temp-buflist, iswitchb-bufs-in-frame):
Stephen Eglen <stephen@gnu.org>
diff
changeset
|
716 iswitchb-temp-buflist)))
|
17616
|
717
|
18776
|
718 (defun iswitchb-to-end (lst)
|
22380
2645c2c3829f
(iswitchb-require-match, iswitchb-temp-buflist, iswitchb-bufs-in-frame):
Stephen Eglen <stephen@gnu.org>
diff
changeset
|
719 "Move the elements from LST to the end of `iswitchb-temp-buflist'."
|
18776
|
720 (mapcar
|
|
721 (lambda (elem)
|
22380
2645c2c3829f
(iswitchb-require-match, iswitchb-temp-buflist, iswitchb-bufs-in-frame):
Stephen Eglen <stephen@gnu.org>
diff
changeset
|
722 (setq iswitchb-temp-buflist (delq elem iswitchb-temp-buflist)))
|
18776
|
723 lst)
|
22380
2645c2c3829f
(iswitchb-require-match, iswitchb-temp-buflist, iswitchb-bufs-in-frame):
Stephen Eglen <stephen@gnu.org>
diff
changeset
|
724 (nconc iswitchb-temp-buflist lst))
|
17616
|
725
|
|
726 (defun iswitchb-get-buffers-in-frames (&optional current)
|
|
727 "Return the list of buffers that are visible in the current frame.
|
|
728 If optional argument `current' is given, restrict searching to the
|
|
729 current frame, rather than all frames, regardless of value of
|
|
730 `iswitchb-all-frames'."
|
|
731 (let ((iswitchb-bufs-in-frame nil))
|
|
732 (walk-windows 'iswitchb-get-bufname nil
|
|
733 (if current
|
|
734 nil
|
|
735 iswitchb-all-frames))
|
|
736 iswitchb-bufs-in-frame))
|
|
737
|
|
738 (defun iswitchb-get-bufname (win)
|
|
739 "Used by `iswitchb-get-buffers-in-frames' to walk through all windows."
|
18928
|
740 (let ((buf (buffer-name (window-buffer win))))
|
|
741 (if (not (member buf iswitchb-bufs-in-frame))
|
|
742 ;; Only add buf if it is not already in list.
|
|
743 ;; This prevents same buf in two different windows being
|
|
744 ;; put into the list twice.
|
|
745 (setq iswitchb-bufs-in-frame
|
|
746 (cons buf iswitchb-bufs-in-frame)))))
|
17616
|
747
|
|
748 ;;; FIND MATCHING BUFFERS
|
|
749
|
|
750 (defun iswitchb-set-matches ()
|
|
751 "Set `iswitchb-matches' to the list of buffers matching prompt."
|
|
752 (if iswitchb-rescan
|
|
753 (setq iswitchb-matches
|
21706
a0c3ee34362d
Only require cl if cadr and last are not defined (thanks to Dave Love.)
Stephen Eglen <stephen@gnu.org>
diff
changeset
|
754 (let* ((buflist iswitchb-buflist))
|
18776
|
755 (iswitchb-get-matched-buffers iswitchb-text iswitchb-regexp
|
21326
|
756 buflist)))))
|
17616
|
757
|
18776
|
758 (defun iswitchb-get-matched-buffers (regexp
|
|
759 &optional string-format buffer-list)
|
21326
|
760 "Return buffers matching REGEXP.
|
|
761 If STRING-FORMAT is nil, consider REGEXP as just a string.
|
17617
|
762 BUFFER-LIST can be list of buffers or list of strings."
|
28619
|
763 (let* ((case-fold-search (iswitchb-case))
|
17616
|
764 ;; need reverse since we are building up list backwards
|
|
765 (list (reverse buffer-list))
|
21326
|
766 (do-string (stringp (car list)))
|
17616
|
767 name
|
21706
a0c3ee34362d
Only require cl if cadr and last are not defined (thanks to Dave Love.)
Stephen Eglen <stephen@gnu.org>
diff
changeset
|
768 ret)
|
17616
|
769 (mapcar
|
18776
|
770 (lambda (x)
|
|
771
|
|
772 (if do-string
|
|
773 (setq name x) ;We already have the name
|
|
774 (setq name (buffer-name x)))
|
|
775
|
|
776 (cond
|
|
777 ((and (or (and string-format (string-match regexp name))
|
|
778 (and (null string-format)
|
|
779 (string-match (regexp-quote regexp) name)))
|
|
780
|
21706
a0c3ee34362d
Only require cl if cadr and last are not defined (thanks to Dave Love.)
Stephen Eglen <stephen@gnu.org>
diff
changeset
|
781 (not (iswitchb-ignore-buffername-p name)))
|
18776
|
782 (setq ret (cons name ret))
|
|
783 )))
|
17616
|
784 list)
|
21706
a0c3ee34362d
Only require cl if cadr and last are not defined (thanks to Dave Love.)
Stephen Eglen <stephen@gnu.org>
diff
changeset
|
785 ret))
|
17616
|
786
|
|
787 (defun iswitchb-ignore-buffername-p (bufname)
|
|
788 "Return t if the buffer BUFNAME should be ignored."
|
|
789 (let ((data (match-data))
|
|
790 (re-list iswitchb-buffer-ignore)
|
|
791 ignorep
|
21706
a0c3ee34362d
Only require cl if cadr and last are not defined (thanks to Dave Love.)
Stephen Eglen <stephen@gnu.org>
diff
changeset
|
792 nextstr)
|
17616
|
793 (while re-list
|
|
794 (setq nextstr (car re-list))
|
|
795 (cond
|
|
796 ((stringp nextstr)
|
|
797 (if (string-match nextstr bufname)
|
|
798 (progn
|
|
799 (setq ignorep t)
|
|
800 (setq re-list nil))))
|
|
801 ((fboundp nextstr)
|
|
802 (if (funcall nextstr bufname)
|
|
803 (progn
|
|
804 (setq ignorep t)
|
21706
a0c3ee34362d
Only require cl if cadr and last are not defined (thanks to Dave Love.)
Stephen Eglen <stephen@gnu.org>
diff
changeset
|
805 (setq re-list nil)))))
|
17616
|
806 (setq re-list (cdr re-list)))
|
21156
cbdbd307fdb7
(iswitchb-ignore-buffername-p): store-match-data => set-match-data.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
807 (set-match-data data)
|
17616
|
808
|
|
809 ;; return the result
|
21706
a0c3ee34362d
Only require cl if cadr and last are not defined (thanks to Dave Love.)
Stephen Eglen <stephen@gnu.org>
diff
changeset
|
810 ignorep))
|
17616
|
811
|
|
812 (defun iswitchb-word-matching-substring (word)
|
|
813 "Return part of WORD before 1st match to `iswitchb-change-word-sub'.
|
|
814 If `iswitchb-change-word-sub' cannot be found in WORD, return nil."
|
28619
|
815 (let ((case-fold-search (iswitchb-case)))
|
17616
|
816 (let ((m (string-match iswitchb-change-word-sub word)))
|
|
817 (if m
|
|
818 (substring word m)
|
|
819 ;; else no match
|
|
820 nil))))
|
|
821
|
|
822 (defun iswitchb-find-common-substring (lis subs)
|
|
823 "Return common string following SUBS in each element of LIS."
|
|
824 (let (res
|
|
825 alist
|
21706
a0c3ee34362d
Only require cl if cadr and last are not defined (thanks to Dave Love.)
Stephen Eglen <stephen@gnu.org>
diff
changeset
|
826 iswitchb-change-word-sub)
|
17616
|
827 (setq iswitchb-change-word-sub
|
|
828 (if iswitchb-regexp
|
|
829 subs
|
|
830 (regexp-quote subs)))
|
|
831 (setq res (mapcar 'iswitchb-word-matching-substring lis))
|
20470
|
832 (setq res (delq nil res)) ;; remove any nil elements (shouldn't happen)
|
17616
|
833 (setq alist (mapcar 'iswitchb-makealist res)) ;; could use an OBARRAY
|
|
834
|
|
835 ;; try-completion returns t if there is an exact match.
|
28619
|
836 (let ((completion-ignore-case (iswitchb-case)))
|
17616
|
837
|
21706
a0c3ee34362d
Only require cl if cadr and last are not defined (thanks to Dave Love.)
Stephen Eglen <stephen@gnu.org>
diff
changeset
|
838 (try-completion subs alist))))
|
17616
|
839
|
|
840 (defun iswitchb-makealist (res)
|
|
841 "Return dotted pair (RES . 1)."
|
|
842 (cons res 1))
|
|
843
|
|
844 ;; from Wayne Mesard <wmesard@esd.sgi.com>
|
|
845 (defun iswitchb-rotate-list (lis)
|
|
846 "Destructively removes the last element from LIS.
|
|
847 Return the modified list with the last element prepended to it."
|
|
848 (if (<= (length lis) 1)
|
|
849 lis
|
|
850 (let ((las lis)
|
|
851 (prev lis))
|
|
852 (while (consp (cdr las))
|
|
853 (setq prev las
|
|
854 las (cdr las)))
|
|
855 (setcdr prev nil)
|
21706
a0c3ee34362d
Only require cl if cadr and last are not defined (thanks to Dave Love.)
Stephen Eglen <stephen@gnu.org>
diff
changeset
|
856 (cons (car las) lis))))
|
17616
|
857
|
|
858 (defun iswitchb-completion-help ()
|
|
859 "Show possible completions in a *Buffer Completions* buffer."
|
|
860 ;; we could allow this buffer to be used to select match, but I think
|
18776
|
861 ;; choose-completion-string will need redefining, so it just inserts
|
17616
|
862 ;; choice with out any previous input.
|
|
863 (interactive)
|
18776
|
864 (setq iswitchb-rescan nil)
|
17616
|
865 (let ((completion-setup-hook nil) ;disable fancy highlight/selection.
|
20470
|
866 (buf (current-buffer))
|
|
867 (temp-buf "*Buffer Completions*")
|
|
868 (win)
|
|
869 (again (eq last-command this-command)))
|
|
870
|
|
871 (if again
|
|
872 ;; scroll buffer
|
|
873 (progn
|
|
874 (set-buffer temp-buf)
|
|
875 (setq win (get-buffer-window temp-buf))
|
|
876 (if (pos-visible-in-window-p (point-max) win)
|
|
877 (set-window-start win (point-min))
|
|
878 (scroll-other-window))
|
21706
a0c3ee34362d
Only require cl if cadr and last are not defined (thanks to Dave Love.)
Stephen Eglen <stephen@gnu.org>
diff
changeset
|
879 (set-buffer buf))
|
20470
|
880
|
|
881 (with-output-to-temp-buffer temp-buf
|
|
882 (if iswitchb-xemacs
|
|
883
|
|
884 ;; XEmacs extents are put on by default, doesn't seem to be
|
|
885 ;; any way of switching them off.
|
|
886 (display-completion-list (if iswitchb-matches
|
|
887 iswitchb-matches
|
|
888 iswitchb-buflist)
|
|
889 :help-string "iswitchb "
|
17616
|
890 :activate-callback
|
|
891 '(lambda (x y z)
|
20470
|
892 (message "doesn't work yet, sorry!")))
|
|
893 ;; else running Emacs
|
|
894 (display-completion-list (if iswitchb-matches
|
17616
|
895 iswitchb-matches
|
20470
|
896 iswitchb-buflist))
|
|
897 )))))
|
|
898
|
18776
|
899 ;;; KILL CURRENT BUFFER
|
|
900
|
|
901 (defun iswitchb-kill-buffer ()
|
20470
|
902 "Kill the buffer at the head of `iswitchb-matches'."
|
18776
|
903 (interactive)
|
|
904 (let ( (enable-recursive-minibuffers t)
|
|
905 buf)
|
|
906
|
|
907 (setq buf (car iswitchb-matches))
|
|
908 ;; check to see if buf is non-nil.
|
|
909 (if buf
|
|
910 (progn
|
|
911 (kill-buffer buf)
|
|
912
|
|
913 ;; Check if buffer exists. XEmacs gnuserv.el makes alias
|
|
914 ;; for kill-buffer which does not return t if buffer is
|
|
915 ;; killed, so we can't rely on kill-buffer return value.
|
|
916 (if (get-buffer buf)
|
|
917 ;; buffer couldn't be killed.
|
|
918 (setq iswitchb-rescan t)
|
|
919 ;; else buffer was killed so remove name from list.
|
|
920 (setq iswitchb-buflist (delq buf iswitchb-buflist)))))))
|
|
921
|
17616
|
922 ;;; VISIT CHOSEN BUFFER
|
|
923 (defun iswitchb-visit-buffer (buffer)
|
|
924 "Visit buffer named BUFFER according to `iswitchb-method'."
|
|
925 (let* (win newframe)
|
|
926 (cond
|
|
927 ((eq iswitchb-method 'samewindow)
|
|
928 (switch-to-buffer buffer))
|
|
929
|
|
930 ((memq iswitchb-method '(always-frame maybe-frame))
|
|
931 (cond
|
|
932 ((and (setq win (iswitchb-window-buffer-p buffer))
|
|
933 (or (eq iswitchb-method 'always-frame)
|
|
934 (y-or-n-p "Jump to frame? ")))
|
|
935 (setq newframe (window-frame win))
|
|
936 (raise-frame newframe)
|
|
937 (select-frame newframe)
|
|
938 (select-window win)
|
|
939 (if (not iswitchb-xemacs)
|
|
940 ;; reposition mouse to make frame active. not needed in XEmacs
|
|
941 ;; This line came from the other-frame defun in Emacs.
|
21706
a0c3ee34362d
Only require cl if cadr and last are not defined (thanks to Dave Love.)
Stephen Eglen <stephen@gnu.org>
diff
changeset
|
942 (set-mouse-position (selected-frame) (1- (frame-width)) 0)))
|
17616
|
943 (t
|
|
944 ;; No buffer in other frames...
|
|
945 (switch-to-buffer buffer)
|
|
946 )))
|
|
947
|
|
948 ((eq iswitchb-method 'otherwindow)
|
|
949 (switch-to-buffer-other-window buffer))
|
|
950
|
17618
|
951 ((eq iswitchb-method 'display)
|
|
952 (display-buffer buffer))
|
|
953
|
17616
|
954 ((eq iswitchb-method 'otherframe)
|
|
955 (progn
|
|
956 (switch-to-buffer-other-frame buffer)
|
|
957 (if (not iswitchb-xemacs)
|
|
958 (set-mouse-position (selected-frame) (1- (frame-width)) 0))
|
21706
a0c3ee34362d
Only require cl if cadr and last are not defined (thanks to Dave Love.)
Stephen Eglen <stephen@gnu.org>
diff
changeset
|
959 )))))
|
17616
|
960
|
|
961 (defun iswitchb-possible-new-buffer (buf)
|
|
962 "Possibly create and visit a new buffer called BUF."
|
|
963
|
|
964 (let ((newbufcreated))
|
|
965 (if (and iswitchb-newbuffer
|
|
966 (or
|
|
967 (not iswitchb-prompt-newbuffer)
|
|
968
|
|
969 (and iswitchb-prompt-newbuffer
|
|
970 (y-or-n-p
|
|
971 (format
|
|
972 "No buffer matching `%s', create one? "
|
|
973 buf)))))
|
|
974 ;; then create a new buffer
|
|
975 (progn
|
|
976 (setq newbufcreated (get-buffer-create buf))
|
|
977 (if (fboundp 'set-buffer-major-mode)
|
|
978 (set-buffer-major-mode newbufcreated))
|
|
979 (iswitchb-visit-buffer newbufcreated))
|
|
980 ;; else wont create new buffer
|
21706
a0c3ee34362d
Only require cl if cadr and last are not defined (thanks to Dave Love.)
Stephen Eglen <stephen@gnu.org>
diff
changeset
|
981 (message (format "no buffer matching `%s'" buf)))))
|
17616
|
982
|
|
983 (defun iswitchb-window-buffer-p (buffer)
|
17617
|
984 "Return window pointer if BUFFER is visible in another frame.
|
|
985 If BUFFER is visible in the current frame, return nil."
|
17616
|
986 (interactive)
|
|
987 (let ((blist (iswitchb-get-buffers-in-frames 'current)))
|
|
988 ;;If the buffer is visible in current frame, return nil
|
|
989 (if (memq buffer blist)
|
|
990 nil
|
20470
|
991 ;; maybe in other frame or icon
|
|
992 (get-buffer-window buffer 0) ; better than 'visible
|
17616
|
993 )))
|
|
994
|
17617
|
995 ;;;###autoload
|
17616
|
996 (defun iswitchb-default-keybindings ()
|
17617
|
997 "Set up default keybindings for `iswitchb-buffer'.
|
24820
|
998 Call this function to override the normal bindings. This function also
|
|
999 adds a hook to the minibuffer."
|
17616
|
1000 (interactive)
|
24820
|
1001 (add-hook 'minibuffer-setup-hook 'iswitchb-minibuffer-setup)
|
26155
|
1002 (global-set-key "\C-xb" 'iswitchb-buffer)
|
|
1003 (global-set-key "\C-x4b" 'iswitchb-buffer-other-window)
|
|
1004 (global-set-key "\C-x4\C-o" 'iswitchb-display-buffer)
|
|
1005 (global-set-key "\C-x5b" 'iswitchb-buffer-other-frame))
|
17616
|
1006
|
|
1007 ;;;###autoload
|
|
1008 (defun iswitchb-buffer ()
|
|
1009 "Switch to another buffer.
|
|
1010
|
|
1011 The buffer name is selected interactively by typing a substring. The
|
|
1012 buffer is displayed according to `iswitchb-default-method' -- the
|
|
1013 default is to show it in the same window, unless it is already visible
|
17617
|
1014 in another frame.
|
|
1015 For details of keybindings, do `\\[describe-function] iswitchb'."
|
17616
|
1016 (interactive)
|
|
1017 (setq iswitchb-method iswitchb-default-method)
|
20470
|
1018 (iswitchb))
|
17616
|
1019
|
|
1020 ;;;###autoload
|
|
1021 (defun iswitchb-buffer-other-window ()
|
|
1022 "Switch to another buffer and show it in another window.
|
|
1023 The buffer name is selected interactively by typing a substring.
|
17617
|
1024 For details of keybindings, do `\\[describe-function] iswitchb'."
|
17616
|
1025 (interactive)
|
|
1026 (setq iswitchb-method 'otherwindow)
|
20470
|
1027 (iswitchb))
|
17616
|
1028
|
|
1029 ;;;###autoload
|
17618
|
1030 (defun iswitchb-display-buffer ()
|
|
1031 "Display a buffer in another window but don't select it.
|
|
1032 The buffer name is selected interactively by typing a substring.
|
|
1033 For details of keybindings, do `\\[describe-function] iswitchb'."
|
|
1034 (interactive)
|
|
1035 (setq iswitchb-method 'display)
|
20470
|
1036 (iswitchb))
|
17618
|
1037
|
|
1038 ;;;###autoload
|
17616
|
1039 (defun iswitchb-buffer-other-frame ()
|
|
1040 "Switch to another buffer and show it in another frame.
|
|
1041 The buffer name is selected interactively by typing a substring.
|
17617
|
1042 For details of keybindings, do `\\[describe-function] iswitchb'."
|
17616
|
1043 (interactive)
|
|
1044 (setq iswitchb-method 'otherframe)
|
|
1045 (iswitchb))
|
|
1046
|
18776
|
1047 ;;; XEmacs hack for showing default buffer
|
17616
|
1048
|
|
1049 ;; The first time we enter the minibuffer, Emacs puts up the default
|
20470
|
1050 ;; buffer to switch to, but XEmacs doesn't -- presumably there is a
|
18776
|
1051 ;; subtle difference in the two versions of post-command-hook. The
|
|
1052 ;; default is shown for both whenever we delete all of our text
|
|
1053 ;; though, indicating its just a problem the first time we enter the
|
|
1054 ;; function. To solve this, we use another entry hook for emacs to
|
|
1055 ;; show the default the first time we enter the minibuffer.
|
17616
|
1056
|
21326
|
1057 (defun iswitchb-init-XEmacs-trick ()
|
17617
|
1058 "Display default buffer when first entering minibuffer.
|
|
1059 This is a hack for XEmacs, and should really be handled by `iswitchb-exhibit'."
|
17616
|
1060 (if (iswitchb-entryfn-p)
|
|
1061 (progn
|
18776
|
1062 (iswitchb-exhibit)
|
17616
|
1063 (goto-char (point-min)))))
|
|
1064
|
18776
|
1065 ;; add this hook for XEmacs only.
|
17616
|
1066 (if iswitchb-xemacs
|
|
1067 (add-hook 'iswitchb-minibuffer-setup-hook
|
21326
|
1068 'iswitchb-init-XEmacs-trick))
|
17616
|
1069
|
18776
|
1070 ;;; XEmacs / backspace key
|
20470
|
1071 ;; For some reason, if the backspace key is pressed in XEmacs, the
|
17616
|
1072 ;; line gets confused, so I've added a simple key definition to make
|
|
1073 ;; backspace act like the normal delete key.
|
|
1074
|
|
1075 (defun iswitchb-xemacs-backspacekey ()
|
|
1076 "Bind backspace to `backward-delete-char'."
|
|
1077 (define-key iswitchb-mode-map '[backspace] 'backward-delete-char)
|
21706
a0c3ee34362d
Only require cl if cadr and last are not defined (thanks to Dave Love.)
Stephen Eglen <stephen@gnu.org>
diff
changeset
|
1078 (define-key iswitchb-mode-map '[(meta backspace)] 'backward-kill-word))
|
17616
|
1079
|
|
1080 (if iswitchb-xemacs
|
|
1081 (add-hook 'iswitchb-define-mode-map-hook
|
|
1082 'iswitchb-xemacs-backspacekey))
|
|
1083
|
|
1084 ;;; ICOMPLETE TYPE CODE
|
|
1085
|
|
1086 (defun iswitchb-exhibit ()
|
17617
|
1087 "Find matching buffers and display a list in the minibuffer.
|
17616
|
1088 Copied from `icomplete-exhibit' with two changes:
|
|
1089 1. It prints a default buffer name when there is no text yet entered.
|
|
1090 2. It calls my completion routine rather than the standard completion."
|
|
1091
|
|
1092 (if iswitchb-use-mycompletion
|
26065
|
1093 (let ((contents (buffer-substring (minibuffer-prompt-end) (point-max)))
|
17616
|
1094 (buffer-undo-list t))
|
|
1095 (save-excursion
|
|
1096 (goto-char (point-max))
|
|
1097 ; Register the end of input, so we
|
|
1098 ; know where the extra stuff
|
|
1099 ; (match-status info) begins:
|
|
1100 (if (not (boundp 'iswitchb-eoinput))
|
|
1101 ;; In case it got wiped out by major mode business:
|
|
1102 (make-local-variable 'iswitchb-eoinput))
|
|
1103 (setq iswitchb-eoinput (point))
|
|
1104 ;; Update the list of matches
|
|
1105 (setq iswitchb-text contents)
|
|
1106 (iswitchb-set-matches)
|
|
1107 (setq iswitchb-rescan t)
|
|
1108 (iswitchb-set-common-completion)
|
|
1109
|
|
1110 ;; Insert the match-status information:
|
18776
|
1111 (insert-string
|
|
1112 (iswitchb-completions
|
|
1113 contents
|
|
1114 minibuffer-completion-table
|
|
1115 minibuffer-completion-predicate
|
|
1116 (not minibuffer-completion-confirm)))
|
17616
|
1117 ))))
|
|
1118
|
|
1119 (defun iswitchb-completions
|
|
1120 (name candidates predicate require-match)
|
|
1121 "Return the string that is displayed after the user's text.
|
|
1122 Modified from `icomplete-completions'."
|
|
1123
|
|
1124 (let ((comps iswitchb-matches)
|
|
1125 ; "-determined" - only one candidate
|
|
1126 (open-bracket-determined (if require-match "(" "["))
|
|
1127 (close-bracket-determined (if require-match ")" "]"))
|
|
1128 ;"-prospects" - more than one candidate
|
|
1129 (open-bracket-prospects "{")
|
|
1130 (close-bracket-prospects "}")
|
21706
a0c3ee34362d
Only require cl if cadr and last are not defined (thanks to Dave Love.)
Stephen Eglen <stephen@gnu.org>
diff
changeset
|
1131 first)
|
17616
|
1132
|
|
1133 (if (and iswitchb-use-fonts comps)
|
|
1134 (progn
|
|
1135 (setq first (car comps))
|
|
1136 (setq first (format "%s" first))
|
|
1137 (put-text-property 0 (length first) 'face
|
20470
|
1138 (if (= (length comps) 1)
|
17616
|
1139 'font-lock-comment-face
|
|
1140 'font-lock-function-name-face)
|
|
1141 first)
|
21706
a0c3ee34362d
Only require cl if cadr and last are not defined (thanks to Dave Love.)
Stephen Eglen <stephen@gnu.org>
diff
changeset
|
1142 (setq comps (cons first (cdr comps)))))
|
17616
|
1143
|
|
1144 (cond ((null comps) (format " %sNo match%s"
|
|
1145 open-bracket-determined
|
|
1146 close-bracket-determined))
|
|
1147
|
|
1148 ((null (cdr comps)) ;one match
|
|
1149 (concat (if (and (> (length (car comps))
|
|
1150 (length name)))
|
|
1151 (concat open-bracket-determined
|
|
1152 ;; when there is one match, show the
|
|
1153 ;; matching buffer name in full
|
|
1154 (car comps)
|
|
1155 close-bracket-determined)
|
|
1156 "")
|
21706
a0c3ee34362d
Only require cl if cadr and last are not defined (thanks to Dave Love.)
Stephen Eglen <stephen@gnu.org>
diff
changeset
|
1157 (if (not iswitchb-use-fonts) " [Matched]")))
|
17616
|
1158 (t ;multiple matches
|
|
1159 (let* (
|
|
1160 ;;(most (try-completion name candidates predicate))
|
|
1161 (most nil)
|
|
1162 (most-len (length most))
|
|
1163 most-is-exact
|
|
1164 first
|
|
1165 (alternatives
|
|
1166 (apply
|
|
1167 (function concat)
|
|
1168 (cdr (apply
|
|
1169 (function nconc)
|
|
1170 (mapcar '(lambda (com)
|
|
1171 (if (= (length com) most-len)
|
|
1172 ;; Most is one exact match,
|
|
1173 ;; note that and leave out
|
|
1174 ;; for later indication:
|
|
1175 (progn
|
|
1176 (setq most-is-exact t)
|
|
1177 ())
|
|
1178 (list ","
|
|
1179 (substring com
|
|
1180 most-len))))
|
|
1181 comps))))))
|
|
1182
|
|
1183 (concat
|
|
1184
|
|
1185 ;; put in common completion item -- what you get by
|
|
1186 ;; pressing tab
|
|
1187 (if (> (length iswitchb-common-match-string) (length name))
|
|
1188 (concat open-bracket-determined
|
|
1189 (substring iswitchb-common-match-string
|
|
1190 (length name))
|
21706
a0c3ee34362d
Only require cl if cadr and last are not defined (thanks to Dave Love.)
Stephen Eglen <stephen@gnu.org>
diff
changeset
|
1191 close-bracket-determined))
|
17616
|
1192 ;; end of partial matches...
|
|
1193
|
|
1194 ;; think this bit can be ignored.
|
|
1195 (and (> most-len (length name))
|
|
1196 (concat open-bracket-determined
|
|
1197 (substring most (length name))
|
|
1198 close-bracket-determined))
|
|
1199
|
|
1200 ;; list all alternatives
|
|
1201 open-bracket-prospects
|
|
1202 (if most-is-exact
|
|
1203 (concat "," alternatives)
|
|
1204 alternatives)
|
21706
a0c3ee34362d
Only require cl if cadr and last are not defined (thanks to Dave Love.)
Stephen Eglen <stephen@gnu.org>
diff
changeset
|
1205 close-bracket-prospects))))))
|
17616
|
1206
|
|
1207 (defun iswitchb-minibuffer-setup ()
|
17617
|
1208 "Set up minibuffer for `iswitchb-buffer'.
|
|
1209 Copied from `icomplete-minibuffer-setup-hook'."
|
17616
|
1210 (if (iswitchb-entryfn-p)
|
|
1211 (progn
|
|
1212
|
|
1213 (make-local-variable 'iswitchb-use-mycompletion)
|
|
1214 (setq iswitchb-use-mycompletion t)
|
|
1215 (make-local-hook 'pre-command-hook)
|
|
1216 (add-hook 'pre-command-hook
|
|
1217 'iswitchb-pre-command
|
|
1218 nil t)
|
|
1219 (make-local-hook 'post-command-hook)
|
|
1220 (add-hook 'post-command-hook
|
|
1221 'iswitchb-post-command
|
|
1222 nil t)
|
|
1223
|
21706
a0c3ee34362d
Only require cl if cadr and last are not defined (thanks to Dave Love.)
Stephen Eglen <stephen@gnu.org>
diff
changeset
|
1224 (run-hooks 'iswitchb-minibuffer-setup-hook))))
|
17616
|
1225
|
|
1226 (defun iswitchb-pre-command ()
|
17617
|
1227 "Run before command in `iswitchb-buffer'."
|
17616
|
1228 (iswitchb-tidy))
|
|
1229
|
|
1230 (defun iswitchb-post-command ()
|
17617
|
1231 "Run after command in `iswitchb-buffer'."
|
21706
a0c3ee34362d
Only require cl if cadr and last are not defined (thanks to Dave Love.)
Stephen Eglen <stephen@gnu.org>
diff
changeset
|
1232 (iswitchb-exhibit))
|
17616
|
1233
|
|
1234 (defun iswitchb-tidy ()
|
|
1235 "Remove completions display, if any, prior to new user input.
|
|
1236 Copied from `icomplete-tidy'."
|
|
1237
|
|
1238 (if (and (boundp 'iswitchb-eoinput)
|
|
1239 iswitchb-eoinput)
|
|
1240
|
|
1241 (if (> iswitchb-eoinput (point-max))
|
|
1242 ;; Oops, got rug pulled out from under us - reinit:
|
|
1243 (setq iswitchb-eoinput (point-max))
|
|
1244 (let ((buffer-undo-list buffer-undo-list )) ; prevent entry
|
|
1245 (delete-region iswitchb-eoinput (point-max))))
|
|
1246
|
|
1247 ;; Reestablish the local variable 'cause minibuffer-setup is weird:
|
|
1248 (make-local-variable 'iswitchb-eoinput)
|
|
1249 (setq iswitchb-eoinput 1)))
|
|
1250
|
|
1251 (defun iswitchb-entryfn-p ()
|
17617
|
1252 "Return non-nil if `this-command' shows we are using `iswitchb-buffer'."
|
20470
|
1253 (or (boundp 'iswitchb-prepost-hooks)
|
|
1254 ;; I think the of this may be redundant, since the prepost hooks
|
|
1255 ;; will always be set in the iswitchb defuns.
|
|
1256 ;;(and (symbolp this-command) ; ignore lambda functions
|
|
1257 ;;(memq this-command
|
|
1258 ;; '(iswitchb-buffer
|
|
1259 ;; iswitchb-buffer-other-frame
|
|
1260 ;; iswitchb-display-buffer
|
|
1261 ;; iswitchb-buffer-other-window))))
|
|
1262 ))
|
|
1263
|
17616
|
1264 (defun iswitchb-summaries-to-end ()
|
17617
|
1265 "Move the summaries to the end of the list.
|
|
1266 This is an example function which can be hooked on to
|
|
1267 `iswitchb-make-buflist-hook'. Any buffer matching the regexps
|
|
1268 `Summary' or `output\*$'are put to the end of the list."
|
17616
|
1269 (let ((summaries (delq nil (mapcar
|
18776
|
1270 (lambda (x)
|
17616
|
1271 (if (or
|
|
1272 (string-match "Summary" x)
|
|
1273 (string-match "output\\*$" x))
|
|
1274 x))
|
22380
2645c2c3829f
(iswitchb-require-match, iswitchb-temp-buflist, iswitchb-bufs-in-frame):
Stephen Eglen <stephen@gnu.org>
diff
changeset
|
1275 iswitchb-temp-buflist))))
|
18776
|
1276 (iswitchb-to-end summaries)))
|
17616
|
1277
|
28619
|
1278 (defun iswitchb-case ()
|
|
1279 "Return non-nil iff we should ignore case when matching.
|
|
1280 See the variable `iswitchb-case' for details."
|
|
1281 (if iswitchb-case
|
|
1282 (if iswitchb-xemacs
|
|
1283 (isearch-no-upper-case-p iswitchb-text)
|
|
1284 (isearch-no-upper-case-p iswitchb-text t))))
|
|
1285
|
17616
|
1286 (provide 'iswitchb)
|
|
1287
|
17617
|
1288 ;;; iswitchb.el ends here
|