("latin-1-prefix"): Change ~s to give \e,A'\e(B and
[emacs.git] / lisp / iswitchb.el
blob6ab5f01f095e1bb5dbeddd764753fa0ca7ec4d65
1 ;;; iswitchb.el --- switch between buffers using substrings
3 ;; Copyright (C) 1996, 1997 Free Software Foundation, Inc.
5 ;; Author: Stephen Eglen <stephen@anc.ed.ac.uk>
6 ;; Maintainer: Stephen Eglen <stephen@anc.ed.ac.uk>
7 ;; Keywords: extensions convenience
8 ;; location: http://www.anc.ed.ac.uk/~stephen/emacs/
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software; you can redistribute it and/or modify
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.
17 ;; GNU Emacs is distributed in the hope that it will be useful,
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.
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.
27 ;;; Commentary:
29 ;; Installation:
30 ;; To get the functions in this package bound to keys, do
31 ;; (iswitchb-default-keybindings)
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)
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.
48 ;; This code is similar to a couple of other packages. Michael R Cook
49 ;; <cook@sightpath.com> wrote a similar buffer switching package, but
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.
54 ;;; Example
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
58 ;;the list of all the buffers
60 ;; iswitch {123456,123}
62 ;; If I then press 2:
63 ;; iswitch 2[3]{123456,123}
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}
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.
80 ;;However, If I type 4, I only have one match left:
81 ;; iswitch 234[123456] [Matched]
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.
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".
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
95 ;; just to type 4 and then RET (assuming there isn't any newer buffer
96 ;; with 4 in its name).
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
100 ;; substring. Repeated TAB presses will scroll you through this
101 ;; separate buffer.
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.
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.
111 ;; See the doc string of iswitchb for full keybindings and features.
112 ;; (describe-function 'iswitchb)
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:
119 ;; INBOX *info* *scratch*
121 ;; Then these will be the matching buffers, depending on how you type
122 ;; the two letters `in' and the value of iswitchb-case:
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]
131 ;;; Customisation
133 ;; See the User Variables section below for easy ways to change the
134 ;; functionality of the program. These are accessible using the
135 ;; custom package.
136 ;; To modify the keybindings, use the hook provided. For example:
137 ;;(add-hook 'iswitchb-define-mode-map-hook
138 ;; 'iswitchb-my-keys)
140 ;;(defun iswitchb-my-keys ()
141 ;; "Add my keybindings for iswitchb."
142 ;; (define-key iswitchb-mode-map " " 'iswitchb-next-match)
143 ;; )
145 ;; Seeing all the matching buffers
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'.
153 ;; Changing the list of buffers
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:
160 ;; (add-hook 'iswitchb-make-buflist-hook 'iswitchb-summaries-to-end)
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.)
169 ;; Font-Lock
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)
177 ;; Replacement for read-buffer
179 ;; iswitchb-read-buffer has been written to be a drop in replacement
180 ;; for the normal buffer selection routine `read-buffer'. To use
181 ;; iswitch for all buffer selections in Emacs, add:
182 ;; (setq read-buffer-function 'iswitchb-read-buffer)
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.
188 ;; Regexp matching
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.
201 ;;; TODO
203 ;;; Acknowledgements
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.
209 ;;; Code:
211 ;; CL needed for cadr and last
212 (if (not (and (fboundp 'cadr)
213 (fboundp 'last)))
214 (require 'cl))
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)
228 `(defvar ,var ,value ,doc))))
230 ;;; User Variables
232 ;; These are some things you might want to change.
234 (defgroup iswitchb nil
235 "Switch between buffers using substrings."
236 :group 'extensions
237 :group 'convenience
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")
241 :link '(emacs-library-link :tag "Lisp File" "iswitchb.el"))
243 (defcustom iswitchb-case case-fold-search
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."
247 :type 'boolean
248 :group 'iswitchb)
250 (defcustom iswitchb-buffer-ignore
251 '("^ ")
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
255 example functions that filter buffernames."
256 :type '(repeat regexp)
257 :group 'iswitchb)
259 ;;; Examples for setting the value of iswitchb-buffer-ignore
260 ;(defun iswitchb-ignore-c-mode (name)
261 ; "Ignore all c mode buffers -- example function for iswitchb."
262 ; (save-excursion
263 ; (set-buffer name)
264 ; (string-match "^C$" mode-name)))
266 ;(setq iswitchb-buffer-ignore '("^ " iswitchb-ignore-c-mode))
267 ;(setq iswitchb-buffer-ignore '("^ " "\\.c$" "\\.h$"))
269 (defcustom iswitchb-default-method 'always-frame
270 "*How to switch to new buffer when using `iswitchb-buffer'.
271 Possible values:
272 `samewindow' Show new buffer in same window
273 `otherwindow' Show new buffer in another window (same frame)
274 `display' Display buffer in another window without switching to it
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.
279 `always-frame' If a buffer is visible in another frame, raise that
280 frame. Otherwise, visit the buffer in the same window."
281 :type '(choice (const samewindow)
282 (const otherwindow)
283 (const display)
284 (const otherframe)
285 (const maybe-frame)
286 (const always-frame))
287 :group 'iswitchb)
289 (defcustom iswitchb-regexp nil
290 "*Non-nil means that `iswitchb' will do regexp matching.
291 Value can be toggled within `iswitchb' using `iswitchb-toggle-regexp'."
292 :type 'boolean
293 :group 'iswitchb)
295 (defcustom iswitchb-newbuffer t
296 "*Non-nil means create new buffer if no buffer matches substring.
297 See also `iswitchb-prompt-newbuffer'."
298 :type 'boolean
299 :group 'iswitchb)
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)
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)
312 (defcustom iswitchb-use-fonts t
313 "*Non-nil means use font-lock fonts for showing first match."
314 :type 'boolean
315 :group 'iswitchb)
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)
322 (defcustom iswitchb-make-buflist-hook nil
323 "*Hook to run when list of matching buffers is created."
324 :type 'hook
325 :group 'iswitchb)
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.")
331 (defcustom iswitchb-minibuffer-setup-hook nil
332 "*Iswitchb-specific customization of minibuffer setup.
334 This hook is run during minibuffer setup iff `iswitchb' will be active.
335 It is intended for use in customizing iswitchb for interoperation
336 with other packages. For instance:
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))))
344 will constrain rsz-mini to a maximum minibuffer height of 3 lines when
345 iswitchb is running. Copied from `icomplete-minibuffer-setup-hook'."
346 :type 'hook
347 :group 'iswitchb)
349 ;; Do we need the variable iswitchb-use-mycompletion?
351 ;;; Internal Variables
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.")
359 (defvar iswitchb-eoinput 1
360 "Point where minibuffer input ends and completion info begins.
361 Copied from `icomplete-eoinput'.")
362 (make-variable-buffer-local 'iswitchb-eoinput)
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'.")
370 ;; todo -- is this necessary?
372 (defvar iswitchb-use-mycompletion nil
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.")
377 (defvar iswitchb-change-word-sub nil
378 "Private variable used by `iswitchb-word-matching-substring'.")
380 (defvar iswitchb-common-match-string nil
381 "Stores the string that is common to all matching buffers.")
383 (defvar iswitchb-rescan nil
384 "Non-nil means we need to regenerate the list of matching buffers.")
386 (defvar iswitchb-text nil
387 "Stores the users string as it is typed in.")
389 (defvar iswitchb-matches nil
390 "List of buffers currently matching `iswitchb-text'.")
392 (defvar iswitchb-mode-map nil
393 "Keymap for `iswitchb-buffer'.")
395 (defvar iswitchb-history nil
396 "History of buffers selected using `iswitchb-buffer'.")
398 (defvar iswitchb-exit nil
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.")
403 (defvar iswitchb-buffer-ignore-orig nil
404 "Stores original value of `iswitchb-buffer-ignore'.")
406 (defvar iswitchb-xemacs (string-match "XEmacs" (emacs-version))
407 "Non-nil if we are running XEmacs. Otherwise, assume we are running Emacs.")
409 (defvar iswitchb-default nil
410 "Default buffer for iswitchb.")
412 ;; The following variables are needed to keep the byte compiler quiet.
413 (defvar iswitchb-require-match nil
414 "Non-nil if matching buffer must be selected.")
416 (defvar iswitchb-temp-buflist nil
417 "Stores a temporary version of the buffer list being created.")
419 (defvar iswitchb-bufs-in-frame nil
420 "List of the buffers visible in the current frame.")
422 ;;; FUNCTIONS
424 ;;; ISWITCHB KEYMAP
425 (defun iswitchb-define-mode-map ()
426 "Set up the keymap for `iswitchb-buffer'."
427 (interactive)
428 (let (map)
429 ;; generated every time so that it can inherit new functions.
430 ;;(or iswitchb-mode-map
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)
439 (define-key map "\C-x\C-f" 'iswitchb-find-file)
440 ;;(define-key map "\C-a" 'iswitchb-toggle-ignore)
441 (define-key map "\C-c" 'iswitchb-toggle-case)
442 (define-key map "\C-k" 'iswitchb-kill-buffer)
443 (define-key map "\C-m" 'iswitchb-exit-minibuffer)
444 (setq iswitchb-mode-map map)
445 (run-hooks 'iswitchb-define-mode-map-hook)))
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>
456 RET Select the buffer at the front of the list of matches. If the
457 list is empty, possibly prompt to create new buffer.
459 \\[iswitchb-select-buffer-text] Select the current prompt as the buffer.
460 If no buffer is found, prompt for a new one.
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.
468 \\[iswitchb-toggle-regexp] Toggle regexp searching.
469 \\[iswitchb-toggle-case] Toggle case-sensitive searching of buffer names.
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."
473 ;;\\[iswitchb-toggle-ignore] Toggle ignoring certain buffers (see \
474 ;;`iswitchb-buffer-ignore')
476 (let
477 (prompt buf)
479 (setq prompt (format "iswitch "))
481 (setq buf (iswitchb-read-buffer prompt))
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
487 (cond ( (eq iswitchb-exit 'findfile)
488 (call-interactively 'find-file))
491 ;; View the buffer
492 ;;(message "go to buf %s" buf)
493 ;; Check buf is non-nil.
494 (if buf
495 (if (get-buffer buf)
496 ;; buffer exists, so view it and then exit
497 (iswitchb-visit-buffer buf)
498 ;; else buffer doesn't exist
499 (iswitchb-possible-new-buffer buf)))
500 ))))
502 ;;;###autoload
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
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))))
519 (iswitchb-define-mode-map)
520 (setq iswitchb-exit nil)
521 (setq iswitchb-rescan t)
522 (setq iswitchb-text "")
523 (setq iswitchb-default
524 (if (bufferp default)
525 (buffer-name default)
526 default))
527 (iswitchb-make-buflist iswitchb-default)
528 (iswitchb-set-matches)
529 (let
530 ((minibuffer-local-completion-map iswitchb-mode-map)
531 (iswitchb-prepost-hooks t)
532 (iswitchb-require-match require-match))
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"))
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)))
552 ;; Or possibly choose the default buffer
553 (if (equal iswitchb-final-text "")
554 (setq buf-sel
555 (car iswitchb-matches)))
557 buf-sel))
559 (defun iswitchb-existing-buffer-p ()
560 "Return non-nil if there is a matching buffer."
561 (not (null iswitchb-matches)))
563 ;;; COMPLETION CODE
565 (defun iswitchb-set-common-completion ()
566 "Find common completion of `iswitchb-text' in `iswitchb-matches'.
567 The result is stored in `iswitchb-common-match-string'."
569 (let* (val)
570 (setq iswitchb-common-match-string nil)
571 (if (and iswitchb-matches
572 (not iswitchb-regexp) ;; testing
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)))
578 val))
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)
585 (iswitchb-completion-help))
587 ((= 1 (length iswitchb-matches))
588 ;; only one choice, so select it.
589 (exit-minibuffer))
592 ;; else there could be some completions
593 (setq res iswitchb-common-match-string)
594 (if (and (not (memq res '(t nil)))
595 (not (equal res iswitchb-text)))
596 ;; found something to complete, so put it in the minibuffer.
597 (progn
598 (setq iswitchb-rescan nil)
599 (delete-region (minibuffer-prompt-end) (point))
600 (insert res))
601 ;; else nothing to complete
602 (iswitchb-completion-help)
603 )))))
605 ;;; TOGGLE FUNCTIONS
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.
612 (setq iswitchb-rescan t))
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.
619 (setq iswitchb-rescan t))
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)
627 (setq iswitchb-buffer-ignore nil))
628 ;; else
629 (setq iswitchb-buffer-ignore iswitchb-buffer-ignore-orig))
630 (iswitchb-make-buflist iswitchb-default)
631 ;; ask for list to be regenerated.
632 (setq iswitchb-rescan t))
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))
639 (throw 'exit nil)))
641 (defun iswitchb-select-buffer-text ()
642 "Select the buffer named by the prompt.
643 If no buffer exactly matching the prompt exists, maybe create a new one."
644 (interactive)
645 (setq iswitchb-exit 'takeprompt)
646 (exit-minibuffer))
648 (defun iswitchb-find-file ()
649 "Drop into find-file from buffer switching."
650 (interactive)
651 (setq iswitchb-exit 'findfile)
652 (exit-minibuffer))
654 (defun iswitchb-next-match ()
655 "Put first element of `iswitchb-matches' at the end of the list."
656 (interactive)
657 (let ((next (cadr iswitchb-matches)))
658 (setq iswitchb-buflist (iswitchb-chop iswitchb-buflist next))
659 (setq iswitchb-rescan t)))
661 (defun iswitchb-prev-match ()
662 "Put last element of `iswitchb-matches' at the front of the list."
663 (interactive)
664 (let ((prev (car (last iswitchb-matches))))
665 (setq iswitchb-buflist (iswitchb-chop iswitchb-buflist prev))
666 (setq iswitchb-rescan t)))
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))
683 ;;; CREATE LIST OF ALL CURRENT BUFFERS
685 (defun iswitchb-make-buflist (default)
686 "Set `iswitchb-buflist' to the current list of buffers.
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
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."
692 (setq iswitchb-buflist
693 (let* ((iswitchb-current-buffers (iswitchb-get-buffers-in-frames))
694 (iswitchb-temp-buflist
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)))
704 (buffer-list (and iswitchb-use-frame-buffer-list
705 (selected-frame)))))))
706 (nconc iswitchb-temp-buflist iswitchb-current-buffers)
707 (run-hooks 'iswitchb-make-buflist-hook)
708 ;; Should this be after the hooks, or should the hooks be the
709 ;; final thing to be run?
710 (if default
711 (progn
712 (setq iswitchb-temp-buflist
713 (delete default iswitchb-temp-buflist))
714 (setq iswitchb-temp-buflist
715 (cons default iswitchb-temp-buflist))))
716 iswitchb-temp-buflist)))
718 (defun iswitchb-to-end (lst)
719 "Move the elements from LST to the end of `iswitchb-temp-buflist'."
720 (mapcar
721 (lambda (elem)
722 (setq iswitchb-temp-buflist (delq elem iswitchb-temp-buflist)))
723 lst)
724 (nconc iswitchb-temp-buflist lst))
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
735 iswitchb-all-frames))
736 iswitchb-bufs-in-frame))
738 (defun iswitchb-get-bufname (win)
739 "Used by `iswitchb-get-buffers-in-frames' to walk through all windows."
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)))))
748 ;;; FIND MATCHING BUFFERS
750 (defun iswitchb-set-matches ()
751 "Set `iswitchb-matches' to the list of buffers matching prompt."
752 (if iswitchb-rescan
753 (setq iswitchb-matches
754 (let* ((buflist iswitchb-buflist))
755 (iswitchb-get-matched-buffers iswitchb-text iswitchb-regexp
756 buflist)))))
758 (defun iswitchb-get-matched-buffers (regexp
759 &optional string-format buffer-list)
760 "Return buffers matching REGEXP.
761 If STRING-FORMAT is nil, consider REGEXP as just a string.
762 BUFFER-LIST can be list of buffers or list of strings."
763 (let* ((case-fold-search (iswitchb-case))
764 ;; need reverse since we are building up list backwards
765 (list (reverse buffer-list))
766 (do-string (stringp (car list)))
767 name
768 ret)
769 (mapcar
770 (lambda (x)
772 (if do-string
773 (setq name x) ;We already have the name
774 (setq name (buffer-name x)))
776 (cond
777 ((and (or (and string-format (string-match regexp name))
778 (and (null string-format)
779 (string-match (regexp-quote regexp) name)))
781 (not (iswitchb-ignore-buffername-p name)))
782 (setq ret (cons name ret))
784 list)
785 ret))
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
792 nextstr)
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)
805 (setq re-list nil)))))
806 (setq re-list (cdr re-list)))
807 (set-match-data data)
809 ;; return the result
810 ignorep))
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."
815 (let ((case-fold-search (iswitchb-case)))
816 (let ((m (string-match iswitchb-change-word-sub word)))
817 (if m
818 (substring word m)
819 ;; else no match
820 nil))))
822 (defun iswitchb-find-common-substring (lis subs)
823 "Return common string following SUBS in each element of LIS."
824 (let (res
825 alist
826 iswitchb-change-word-sub)
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))
832 (setq res (delq nil res)) ;; remove any nil elements (shouldn't happen)
833 (setq alist (mapcar 'iswitchb-makealist res)) ;; could use an OBARRAY
835 ;; try-completion returns t if there is an exact match.
836 (let ((completion-ignore-case (iswitchb-case)))
838 (try-completion subs alist))))
840 (defun iswitchb-makealist (res)
841 "Return dotted pair (RES . 1)."
842 (cons res 1))
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)
850 (let ((las lis)
851 (prev lis))
852 (while (consp (cdr las))
853 (setq prev las
854 las (cdr las)))
855 (setcdr prev nil)
856 (cons (car las) lis))))
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
861 ;; choose-completion-string will need redefining, so it just inserts
862 ;; choice with out any previous input.
863 (interactive)
864 (setq iswitchb-rescan nil)
865 (let ((completion-setup-hook nil) ;disable fancy highlight/selection.
866 (buf (current-buffer))
867 (temp-buf "*Buffer Completions*")
868 (win)
869 (again (eq last-command this-command)))
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))
879 (set-buffer buf))
881 (with-output-to-temp-buffer temp-buf
882 (if iswitchb-xemacs
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 "
890 :activate-callback
891 (lambda (x y z)
892 (message "doesn't work yet, sorry!")))
893 ;; else running Emacs
894 (display-completion-list (if iswitchb-matches
895 iswitchb-matches
896 iswitchb-buflist))
897 )))))
899 ;;; KILL CURRENT BUFFER
901 (defun iswitchb-kill-buffer ()
902 "Kill the buffer at the head of `iswitchb-matches'."
903 (interactive)
904 (let ( (enable-recursive-minibuffers t)
905 buf)
907 (setq buf (car iswitchb-matches))
908 ;; check to see if buf is non-nil.
909 (if buf
910 (progn
911 (kill-buffer buf)
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)))))))
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))
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.
942 (set-mouse-position (selected-frame) (1- (frame-width)) 0)))
944 ;; No buffer in other frames...
945 (switch-to-buffer buffer)
948 ((eq iswitchb-method 'otherwindow)
949 (switch-to-buffer-other-window buffer))
951 ((eq iswitchb-method 'display)
952 (display-buffer buffer))
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))
959 )))))
961 (defun iswitchb-possible-new-buffer (buf)
962 "Possibly create and visit a new buffer called BUF."
964 (let ((newbufcreated))
965 (if (and iswitchb-newbuffer
967 (not iswitchb-prompt-newbuffer)
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
981 (message (format "no buffer matching `%s'" buf)))))
983 (defun iswitchb-window-buffer-p (buffer)
984 "Return window pointer if BUFFER is visible in another frame.
985 If BUFFER is visible in the current frame, return nil."
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)
991 ;; maybe in other frame or icon
992 (get-buffer-window buffer 0) ; better than 'visible
995 ;;;###autoload
996 (defun iswitchb-default-keybindings ()
997 "Set up default keybindings for `iswitchb-buffer'.
998 Call this function to override the normal bindings. This function also
999 adds a hook to the minibuffer."
1000 (interactive)
1001 (add-hook 'minibuffer-setup-hook 'iswitchb-minibuffer-setup)
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))
1007 ;;;###autoload
1008 (defun iswitchb-buffer ()
1009 "Switch to another buffer.
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
1014 in another frame.
1015 For details of keybindings, do `\\[describe-function] iswitchb'."
1016 (interactive)
1017 (setq iswitchb-method iswitchb-default-method)
1018 (iswitchb))
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.
1024 For details of keybindings, do `\\[describe-function] iswitchb'."
1025 (interactive)
1026 (setq iswitchb-method 'otherwindow)
1027 (iswitchb))
1029 ;;;###autoload
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)
1036 (iswitchb))
1038 ;;;###autoload
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.
1042 For details of keybindings, do `\\[describe-function] iswitchb'."
1043 (interactive)
1044 (setq iswitchb-method 'otherframe)
1045 (iswitchb))
1047 ;;; XEmacs hack for showing default buffer
1049 ;; The first time we enter the minibuffer, Emacs puts up the default
1050 ;; buffer to switch to, but XEmacs doesn't -- presumably there is a
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.
1057 (defun iswitchb-init-XEmacs-trick ()
1058 "Display default buffer when first entering minibuffer.
1059 This is a hack for XEmacs, and should really be handled by `iswitchb-exhibit'."
1060 (if (iswitchb-entryfn-p)
1061 (progn
1062 (iswitchb-exhibit)
1063 (goto-char (point-min)))))
1065 ;; add this hook for XEmacs only.
1066 (if iswitchb-xemacs
1067 (add-hook 'iswitchb-minibuffer-setup-hook
1068 'iswitchb-init-XEmacs-trick))
1070 ;;; XEmacs / backspace key
1071 ;; For some reason, if the backspace key is pressed in XEmacs, the
1072 ;; line gets confused, so I've added a simple key definition to make
1073 ;; backspace act like the normal delete key.
1075 (defun iswitchb-xemacs-backspacekey ()
1076 "Bind backspace to `backward-delete-char'."
1077 (define-key iswitchb-mode-map '[backspace] 'backward-delete-char)
1078 (define-key iswitchb-mode-map '[(meta backspace)] 'backward-kill-word))
1080 (if iswitchb-xemacs
1081 (add-hook 'iswitchb-define-mode-map-hook
1082 'iswitchb-xemacs-backspacekey))
1084 ;;; ICOMPLETE TYPE CODE
1086 (defun iswitchb-exhibit ()
1087 "Find matching buffers and display a list in the minibuffer.
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 (if iswitchb-use-mycompletion
1092 (let ((contents (buffer-substring (minibuffer-prompt-end) (point-max)))
1093 (buffer-undo-list t))
1094 (save-excursion
1095 (goto-char (point-max))
1096 ; Register the end of input, so we
1097 ; know where the extra stuff
1098 ; (match-status info) begins:
1099 (if (not (boundp 'iswitchb-eoinput))
1100 ;; In case it got wiped out by major mode business:
1101 (make-local-variable 'iswitchb-eoinput))
1102 (setq iswitchb-eoinput (point))
1103 ;; Update the list of matches
1104 (setq iswitchb-text contents)
1105 (iswitchb-set-matches)
1106 (setq iswitchb-rescan t)
1107 (iswitchb-set-common-completion)
1109 ;; Insert the match-status information:
1110 (insert-string (iswitchb-completions
1111 contents
1112 minibuffer-completion-table
1113 minibuffer-completion-predicate
1114 (not minibuffer-completion-confirm)))))))
1116 (defun iswitchb-completions (name candidates predicate require-match)
1117 "Return the string that is displayed after the user's text.
1118 Modified from `icomplete-completions'."
1120 (let ((comps iswitchb-matches)
1121 ; "-determined" - only one candidate
1122 (open-bracket-determined (if require-match "(" "["))
1123 (close-bracket-determined (if require-match ")" "]"))
1124 ;"-prospects" - more than one candidate
1125 (open-bracket-prospects "{")
1126 (close-bracket-prospects "}")
1127 first)
1129 (if (and iswitchb-use-fonts comps)
1130 (progn
1131 (setq first (car comps))
1132 (setq first (format "%s" first))
1133 (put-text-property 0 (length first) 'face
1134 (if (= (length comps) 1)
1135 'font-lock-comment-face
1136 'font-lock-function-name-face)
1137 first)
1138 (setq comps (cons first (cdr comps)))))
1140 (cond ((null comps) (format " %sNo match%s"
1141 open-bracket-determined
1142 close-bracket-determined))
1144 ((null (cdr comps)) ;one match
1145 (concat (if (and (> (length (car comps))
1146 (length name)))
1147 (concat open-bracket-determined
1148 ;; when there is one match, show the
1149 ;; matching buffer name in full
1150 (car comps)
1151 close-bracket-determined)
1153 (if (not iswitchb-use-fonts) " [Matched]")))
1154 (t ;multiple matches
1155 (let* (
1156 ;;(most (try-completion name candidates predicate))
1157 (most nil)
1158 (most-len (length most))
1159 most-is-exact
1160 first
1161 (alternatives
1162 (apply
1163 (function concat)
1164 (cdr (apply
1165 (function nconc)
1166 (mapcar '(lambda (com)
1167 (if (= (length com) most-len)
1168 ;; Most is one exact match,
1169 ;; note that and leave out
1170 ;; for later indication:
1171 (progn
1172 (setq most-is-exact t)
1174 (list ","
1175 (substring com
1176 most-len))))
1177 comps))))))
1179 (concat
1181 ;; put in common completion item -- what you get by
1182 ;; pressing tab
1183 (if (> (length iswitchb-common-match-string) (length name))
1184 (concat open-bracket-determined
1185 (substring iswitchb-common-match-string
1186 (length name))
1187 close-bracket-determined))
1188 ;; end of partial matches...
1190 ;; think this bit can be ignored.
1191 (and (> most-len (length name))
1192 (concat open-bracket-determined
1193 (substring most (length name))
1194 close-bracket-determined))
1196 ;; list all alternatives
1197 open-bracket-prospects
1198 (if most-is-exact
1199 (concat "," alternatives)
1200 alternatives)
1201 close-bracket-prospects))))))
1203 (defun iswitchb-minibuffer-setup ()
1204 "Set up minibuffer for `iswitchb-buffer'.
1205 Copied from `icomplete-minibuffer-setup-hook'."
1206 (if (iswitchb-entryfn-p)
1207 (progn
1209 (make-local-variable 'iswitchb-use-mycompletion)
1210 (setq iswitchb-use-mycompletion t)
1211 (make-local-hook 'pre-command-hook)
1212 (add-hook 'pre-command-hook
1213 'iswitchb-pre-command
1214 nil t)
1215 (make-local-hook 'post-command-hook)
1216 (add-hook 'post-command-hook
1217 'iswitchb-post-command
1218 nil t)
1220 (run-hooks 'iswitchb-minibuffer-setup-hook))))
1222 (defun iswitchb-pre-command ()
1223 "Run before command in `iswitchb-buffer'."
1224 (iswitchb-tidy))
1226 (defun iswitchb-post-command ()
1227 "Run after command in `iswitchb-buffer'."
1228 (iswitchb-exhibit))
1230 (defun iswitchb-tidy ()
1231 "Remove completions display, if any, prior to new user input.
1232 Copied from `icomplete-tidy'."
1234 (if (and (boundp 'iswitchb-eoinput)
1235 iswitchb-eoinput)
1237 (if (> iswitchb-eoinput (point-max))
1238 ;; Oops, got rug pulled out from under us - reinit:
1239 (setq iswitchb-eoinput (point-max))
1240 (let ((buffer-undo-list buffer-undo-list )) ; prevent entry
1241 (delete-region iswitchb-eoinput (point-max))))
1243 ;; Reestablish the local variable 'cause minibuffer-setup is weird:
1244 (make-local-variable 'iswitchb-eoinput)
1245 (setq iswitchb-eoinput 1)))
1247 (defun iswitchb-entryfn-p ()
1248 "Return non-nil if we are using `iswitchb-buffer'."
1249 ;; Testing if `iswitchb-prepost-hooks' is bound does not work when
1250 ;; we're invoking a recursive mini-buffer from an Iswitchb buffer.
1251 ;; In this case, `iswitchb-prepost-hooks' is bound in the second
1252 ;; mini-buffer, although it's not an Iswitchb buffer.
1253 (memq this-command
1254 '(iswitchb-buffer iswitchb-buffer-other-frame
1255 iswitchb-display-buffer
1256 iswitchb-buffer-other-window)))
1258 (defun iswitchb-summaries-to-end ()
1259 "Move the summaries to the end of the list.
1260 This is an example function which can be hooked on to
1261 `iswitchb-make-buflist-hook'. Any buffer matching the regexps
1262 `Summary' or `output\*$'are put to the end of the list."
1263 (let ((summaries (delq nil (mapcar
1264 (lambda (x)
1265 (if (or
1266 (string-match "Summary" x)
1267 (string-match "output\\*$" x))
1269 iswitchb-temp-buflist))))
1270 (iswitchb-to-end summaries)))
1272 (defun iswitchb-case ()
1273 "Return non-nil iff we should ignore case when matching.
1274 See the variable `iswitchb-case' for details."
1275 (if iswitchb-case
1276 (if iswitchb-xemacs
1277 (isearch-no-upper-case-p iswitchb-text)
1278 (isearch-no-upper-case-p iswitchb-text t))))
1280 (provide 'iswitchb)
1282 ;;; iswitchb.el ends here