Mercurial > emacs
annotate lisp/iswitchb.el @ 68243:b6f025de5c99
*** empty log message ***
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Wed, 18 Jan 2006 01:48:49 +0000 |
parents | 59d4f36d7a5c |
children | 3bd95f4f2941 7beb78bc1f8e |
rev | line source |
---|---|
17617 | 1 ;;; iswitchb.el --- switch between buffers using substrings |
17616 | 2 |
64762
41bb365f41c4
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64091
diff
changeset
|
3 ;; Copyright (C) 1996, 1997, 2000, 2001, 2002, 2003, 2004, |
41bb365f41c4
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64091
diff
changeset
|
4 ;; 2005 Free Software Foundation, Inc. |
17616 | 5 |
41161
e72cd74733bb
Change maintainer email address.
Richard M. Stallman <rms@gnu.org>
parents:
35570
diff
changeset
|
6 ;; Author: Stephen Eglen <stephen@gnu.org> |
e72cd74733bb
Change maintainer email address.
Richard M. Stallman <rms@gnu.org>
parents:
35570
diff
changeset
|
7 ;; Maintainer: Stephen Eglen <stephen@gnu.org> |
31797 | 8 ;; Keywords: completion convenience |
23785
ef0150f917c9
Update author email and web page.
Stephen Eglen <stephen@gnu.org>
parents:
22380
diff
changeset
|
9 ;; location: http://www.anc.ed.ac.uk/~stephen/emacs/ |
17616 | 10 |
17617 | 11 ;; This file is part of GNU Emacs. |
12 | |
13 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
17616 | 14 ;; it under the terms of the GNU General Public License as published by |
15 ;; the Free Software Foundation; either version 2, or (at your option) | |
16 ;; any later version. | |
17 | |
17617 | 18 ;; GNU Emacs is distributed in the hope that it will be useful, |
17616 | 19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
21 ;; GNU General Public License for more details. | |
22 | |
23 ;; You should have received a copy of the GNU General Public License | |
24 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
64091 | 25 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
26 ;; Boston, MA 02110-1301, USA. | |
17616 | 27 |
21058
f2c4ac206a48
(iswitchb-default-method): Remove :tag entries.
Stephen Eglen <stephen@gnu.org>
parents:
20470
diff
changeset
|
28 ;;; Commentary: |
17616 | 29 |
21058
f2c4ac206a48
(iswitchb-default-method): Remove :tag entries.
Stephen Eglen <stephen@gnu.org>
parents:
20470
diff
changeset
|
30 ;; Installation: |
31797 | 31 ;; To get the functions in this package bound to keys, use |
32 ;; M-x iswitchb-mode or customize the option `iswitchb-mode'. | |
52263
078527ad9cd8
Documentation update for installation.
Stephen Eglen <stephen@gnu.org>
parents:
51660
diff
changeset
|
33 ;; Alternatively, add the following line to your .emacs: |
078527ad9cd8
Documentation update for installation.
Stephen Eglen <stephen@gnu.org>
parents:
51660
diff
changeset
|
34 ;; (iswitchb-mode 1) |
17616 | 35 |
36 ;; As you type in a substring, the list of buffers currently matching | |
31797 | 37 ;; the substring is displayed as you type. The list is ordered so |
17616 | 38 ;; that the most recent buffers visited come at the start of the list. |
39 ;; The buffer at the start of the list will be the one visited when | |
40 ;; you press return. By typing more of the substring, the list is | |
41 ;; narrowed down so that gradually the buffer you want will be at the | |
31797 | 42 ;; top of the list. Alternatively, you can use C-s and C-r to rotate |
17616 | 43 ;; buffer names in the list until the one you want is at the top of |
44 ;; the list. Completion is also available so that you can see what is | |
45 ;; common to all of the matching buffers as you type. | |
46 | |
47 ;; This code is similar to a couple of other packages. Michael R Cook | |
28619
79fd94833204
(iswitchb-case): New function. If the user input
Gerd Moellmann <gerd@gnu.org>
parents:
27497
diff
changeset
|
48 ;; <cook@sightpath.com> wrote a similar buffer switching package, but |
17616 | 49 ;; does exact matching rather than substring matching on buffer names. |
50 ;; I also modified a couple of functions from icomplete.el to provide | |
51 ;; the completion feedback in the minibuffer. | |
52 | |
31797 | 53 ;;; Example |
17616 | 54 |
41926
8748b5403232
(iswitchb-visit-buffer): Use `select-frame-set-input-focus'.
Richard M. Stallman <rms@gnu.org>
parents:
41534
diff
changeset
|
55 ;; If I have two buffers called "123456" and "123", with "123456" the |
8748b5403232
(iswitchb-visit-buffer): Use `select-frame-set-input-focus'.
Richard M. Stallman <rms@gnu.org>
parents:
41534
diff
changeset
|
56 ;; most recent, when I use iswitchb, I first of all get presented with |
8748b5403232
(iswitchb-visit-buffer): Use `select-frame-set-input-focus'.
Richard M. Stallman <rms@gnu.org>
parents:
41534
diff
changeset
|
57 ;; the list of all the buffers |
17616 | 58 ;; |
31797 | 59 ;; iswitch {123456,123} |
17616 | 60 ;; |
61 ;; If I then press 2: | |
62 ;; iswitch 2[3]{123456,123} | |
63 ;; | |
64 ;; The list in {} are the matching buffers, most recent first (buffers | |
65 ;; visible in the current frame are put at the end of the list by | |
66 ;; default). At any time I can select the item at the head of the | |
51660
a7765f7f8c9e
(iswitchb-read-buffer): Remove redudant variable
Stephen Eglen <stephen@gnu.org>
parents:
51366
diff
changeset
|
67 ;; list by pressing RET. I can also put the first element at the end |
a7765f7f8c9e
(iswitchb-read-buffer): Remove redudant variable
Stephen Eglen <stephen@gnu.org>
parents:
51366
diff
changeset
|
68 ;; of the list by pressing C-s, or put the last element at the head of |
a7765f7f8c9e
(iswitchb-read-buffer): Remove redudant variable
Stephen Eglen <stephen@gnu.org>
parents:
51366
diff
changeset
|
69 ;; the list by pressing C-r. The item in [] indicates what can be |
a7765f7f8c9e
(iswitchb-read-buffer): Remove redudant variable
Stephen Eglen <stephen@gnu.org>
parents:
51366
diff
changeset
|
70 ;; added to my input by pressing TAB. In this case, I will get "3" |
a7765f7f8c9e
(iswitchb-read-buffer): Remove redudant variable
Stephen Eglen <stephen@gnu.org>
parents:
51366
diff
changeset
|
71 ;; added to my input. So, press TAB: |
17616 | 72 ;; iswitch 23{123456,123} |
73 ;; | |
74 ;; At this point, I still have two matching buffers. | |
75 ;; If I want the first buffer in the list, I simply press RET. If I | |
76 ;; wanted the second in the list, I could press C-s to move it to the | |
77 ;; top of the list and then RET to select it. | |
78 ;; | |
41926
8748b5403232
(iswitchb-visit-buffer): Use `select-frame-set-input-focus'.
Richard M. Stallman <rms@gnu.org>
parents:
41534
diff
changeset
|
79 ;; However, if I type 4, I only have one match left: |
17616 | 80 ;; iswitch 234[123456] [Matched] |
81 ;; | |
41926
8748b5403232
(iswitchb-visit-buffer): Use `select-frame-set-input-focus'.
Richard M. Stallman <rms@gnu.org>
parents:
41534
diff
changeset
|
82 ;; Since there is only one matching buffer left, it is given in [] and we |
8748b5403232
(iswitchb-visit-buffer): Use `select-frame-set-input-focus'.
Richard M. Stallman <rms@gnu.org>
parents:
41534
diff
changeset
|
83 ;; see the text [Matched] afterwards. I can now press TAB or RET to go |
8748b5403232
(iswitchb-visit-buffer): Use `select-frame-set-input-focus'.
Richard M. Stallman <rms@gnu.org>
parents:
41534
diff
changeset
|
84 ;; to that buffer. |
17616 | 85 ;; |
86 ;; If however, I now type "a": | |
87 ;; iswitch 234a [No match] | |
88 ;; There are no matching buffers. If I press RET or TAB, I can be | |
89 ;; prompted to create a new buffer called "234a". | |
90 ;; | |
91 ;; Of course, where this function comes in really useful is when you | |
92 ;; can specify the buffer using only a few keystrokes. In the above | |
93 ;; example, the quickest way to get to the "123456" buffer would be | |
20470
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
94 ;; just to type 4 and then RET (assuming there isn't any newer buffer |
17616 | 95 ;; with 4 in its name). |
96 | |
97 ;; To see a full list of all matching buffers in a separate buffer, | |
98 ;; hit ? or press TAB when there are no further completions to the | |
20470
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
99 ;; substring. Repeated TAB presses will scroll you through this |
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
100 ;; separate buffer. |
17616 | 101 |
18776
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
102 ;; The buffer at the head of the list can be killed by pressing C-k. |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
103 ;; If the buffer needs saving, you will be queried before the buffer |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
104 ;; is killed. |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
105 |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
106 ;; If you find that the file you are after is not in a buffer, you can |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
107 ;; press C-x C-f to immediately drop into find-file. |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
108 |
41926
8748b5403232
(iswitchb-visit-buffer): Use `select-frame-set-input-focus'.
Richard M. Stallman <rms@gnu.org>
parents:
41534
diff
changeset
|
109 ;; See the doc string of iswitchb for full keybindings and features. |
8748b5403232
(iswitchb-visit-buffer): Use `select-frame-set-input-focus'.
Richard M. Stallman <rms@gnu.org>
parents:
41534
diff
changeset
|
110 ;; (describe-function 'iswitchb) |
17616 | 111 |
28619
79fd94833204
(iswitchb-case): New function. If the user input
Gerd Moellmann <gerd@gnu.org>
parents:
27497
diff
changeset
|
112 ;; Case matching: The case of strings when matching can be ignored or |
79fd94833204
(iswitchb-case): New function. If the user input
Gerd Moellmann <gerd@gnu.org>
parents:
27497
diff
changeset
|
113 ;; used depending on the value of iswitchb-case (default is the same |
79fd94833204
(iswitchb-case): New function. If the user input
Gerd Moellmann <gerd@gnu.org>
parents:
27497
diff
changeset
|
114 ;; as case-fold-search, normally t). Imagine you have the following |
31797 | 115 ;; buffers: |
28619
79fd94833204
(iswitchb-case): New function. If the user input
Gerd Moellmann <gerd@gnu.org>
parents:
27497
diff
changeset
|
116 ;; |
79fd94833204
(iswitchb-case): New function. If the user input
Gerd Moellmann <gerd@gnu.org>
parents:
27497
diff
changeset
|
117 ;; INBOX *info* *scratch* |
79fd94833204
(iswitchb-case): New function. If the user input
Gerd Moellmann <gerd@gnu.org>
parents:
27497
diff
changeset
|
118 ;; |
79fd94833204
(iswitchb-case): New function. If the user input
Gerd Moellmann <gerd@gnu.org>
parents:
27497
diff
changeset
|
119 ;; Then these will be the matching buffers, depending on how you type |
79fd94833204
(iswitchb-case): New function. If the user input
Gerd Moellmann <gerd@gnu.org>
parents:
27497
diff
changeset
|
120 ;; the two letters `in' and the value of iswitchb-case: |
79fd94833204
(iswitchb-case): New function. If the user input
Gerd Moellmann <gerd@gnu.org>
parents:
27497
diff
changeset
|
121 ;; |
79fd94833204
(iswitchb-case): New function. If the user input
Gerd Moellmann <gerd@gnu.org>
parents:
27497
diff
changeset
|
122 ;; iswitchb-case user input | matching buffers |
79fd94833204
(iswitchb-case): New function. If the user input
Gerd Moellmann <gerd@gnu.org>
parents:
27497
diff
changeset
|
123 ;; ---------------------------------------------- |
31797 | 124 ;; nil in | *info* |
125 ;; t in | INBOX, *info* | |
126 ;; t IN | INBOX | |
127 ;; t In | [No match] | |
28619
79fd94833204
(iswitchb-case): New function. If the user input
Gerd Moellmann <gerd@gnu.org>
parents:
27497
diff
changeset
|
128 |
17616 | 129 ;;; Customisation |
130 | |
131 ;; See the User Variables section below for easy ways to change the | |
18776
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
132 ;; functionality of the program. These are accessible using the |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
133 ;; custom package. |
41287
eeb1c0923d4f
(iswitchb-mode): Use define-minor-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41273
diff
changeset
|
134 ;; To modify the keybindings, use something like: |
17616 | 135 ;; |
41287
eeb1c0923d4f
(iswitchb-mode): Use define-minor-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41273
diff
changeset
|
136 ;;(add-hook 'iswitchb-mode-hook 'iswitchb-my-keys) |
17616 | 137 ;;(defun iswitchb-my-keys () |
20470
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
138 ;; "Add my keybindings for iswitchb." |
41287
eeb1c0923d4f
(iswitchb-mode): Use define-minor-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41273
diff
changeset
|
139 ;; (define-key iswitchb-mode-map " " 'iswitchb-next-match)) |
17616 | 140 ;; |
21326 | 141 ;; Seeing all the matching buffers |
18776
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
142 ;; |
17616 | 143 ;; If you have many matching buffers, they may not all fit onto one |
34208
6059c5943d9f
Update customization commentary.
Gerd Moellmann <gerd@gnu.org>
parents:
33818
diff
changeset
|
144 ;; line of the minibuffer. In Emacs 21, the variable |
6059c5943d9f
Update customization commentary.
Gerd Moellmann <gerd@gnu.org>
parents:
33818
diff
changeset
|
145 ;; `resize-mini-windows' controls how many lines of the minibuffer can |
6059c5943d9f
Update customization commentary.
Gerd Moellmann <gerd@gnu.org>
parents:
33818
diff
changeset
|
146 ;; be seen. For older versions of emacs, you can use |
6059c5943d9f
Update customization commentary.
Gerd Moellmann <gerd@gnu.org>
parents:
33818
diff
changeset
|
147 ;; `resize-minibuffer-mode'. You can also limit iswitchb so that it |
17616 | 148 ;; only shows a certain number of lines -- see the documentation for |
149 ;; `iswitchb-minibuffer-setup-hook'. | |
150 | |
21326 | 151 ;; Changing the list of buffers |
17616 | 152 |
153 ;; By default, the list of current buffers is most recent first, | |
154 ;; oldest last, with the exception that the buffers visible in the | |
155 ;; current frame are put at the end of the list. A hook exists to | |
156 ;; allow other functions to order the list. For example, if you add: | |
157 ;; | |
158 ;; (add-hook 'iswitchb-make-buflist-hook 'iswitchb-summaries-to-end) | |
159 ;; | |
160 ;; then all buffers matching "Summary" are moved to the end of the | |
161 ;; list. (I find this handy for keeping the INBOX Summary and so on | |
162 ;; out of the way.) It also moves buffers matching "output\*$" to the | |
56754 | 163 ;; end of the list (these are created by AUCTeX when compiling.) |
17616 | 164 ;; Other functions could be made available which alter the list of |
165 ;; matching buffers (either deleting or rearranging elements.) | |
166 | |
167 ;; Font-Lock | |
168 | |
63012
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
169 ;; font-lock is used to highlight the first matching buffer. To |
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
170 ;; switch this off, set (setq iswitchb-use-faces nil). Colouring of |
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
171 ;; the matching buffer name was suggested by Carsten Dominik |
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
172 ;; (dominik@strw.leidenuniv.nl) |
17616 | 173 |
21326 | 174 ;; Replacement for read-buffer |
17616 | 175 |
20470
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
176 ;; iswitchb-read-buffer has been written to be a drop in replacement |
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
177 ;; for the normal buffer selection routine `read-buffer'. To use |
21058
f2c4ac206a48
(iswitchb-default-method): Remove :tag entries.
Stephen Eglen <stephen@gnu.org>
parents:
20470
diff
changeset
|
178 ;; iswitch for all buffer selections in Emacs, add: |
20470
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
179 ;; (setq read-buffer-function 'iswitchb-read-buffer) |
41926
8748b5403232
(iswitchb-visit-buffer): Use `select-frame-set-input-focus'.
Richard M. Stallman <rms@gnu.org>
parents:
41534
diff
changeset
|
180 ;; (This variable was introduced in Emacs 20.3.) |
21058
f2c4ac206a48
(iswitchb-default-method): Remove :tag entries.
Stephen Eglen <stephen@gnu.org>
parents:
20470
diff
changeset
|
181 ;; XEmacs users can get the same behaviour by doing: |
31797 | 182 ;; (defalias 'read-buffer 'iswitchb-read-buffer) |
21058
f2c4ac206a48
(iswitchb-default-method): Remove :tag entries.
Stephen Eglen <stephen@gnu.org>
parents:
20470
diff
changeset
|
183 ;; since `read-buffer' is defined in lisp. |
17616 | 184 |
41926
8748b5403232
(iswitchb-visit-buffer): Use `select-frame-set-input-focus'.
Richard M. Stallman <rms@gnu.org>
parents:
41534
diff
changeset
|
185 ;; Using iswitchb for other completion tasks. |
8748b5403232
(iswitchb-visit-buffer): Use `select-frame-set-input-focus'.
Richard M. Stallman <rms@gnu.org>
parents:
41534
diff
changeset
|
186 |
44557
4b1e92d76a10
Update commentary to include new function iswitchb-exclude-nonmatching.
Pavel Janík <Pavel@Janik.cz>
parents:
41926
diff
changeset
|
187 ;; Kin Cho (kin@neoscale.com) sent the following suggestion to use |
49597
e88404e8f2cf
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47622
diff
changeset
|
188 ;; iswitchb for other completion tasks. |
41926
8748b5403232
(iswitchb-visit-buffer): Use `select-frame-set-input-focus'.
Richard M. Stallman <rms@gnu.org>
parents:
41534
diff
changeset
|
189 ;; |
8748b5403232
(iswitchb-visit-buffer): Use `select-frame-set-input-focus'.
Richard M. Stallman <rms@gnu.org>
parents:
41534
diff
changeset
|
190 ;; (defun my-icompleting-read (prompt choices) |
8748b5403232
(iswitchb-visit-buffer): Use `select-frame-set-input-focus'.
Richard M. Stallman <rms@gnu.org>
parents:
41534
diff
changeset
|
191 ;; "Use iswitch as a completing-read replacement to choose from |
8748b5403232
(iswitchb-visit-buffer): Use `select-frame-set-input-focus'.
Richard M. Stallman <rms@gnu.org>
parents:
41534
diff
changeset
|
192 ;; choices. PROMPT is a string to prompt with. CHOICES is a list of |
8748b5403232
(iswitchb-visit-buffer): Use `select-frame-set-input-focus'.
Richard M. Stallman <rms@gnu.org>
parents:
41534
diff
changeset
|
193 ;; strings to choose from." |
8748b5403232
(iswitchb-visit-buffer): Use `select-frame-set-input-focus'.
Richard M. Stallman <rms@gnu.org>
parents:
41534
diff
changeset
|
194 ;; (let ((iswitchb-make-buflist-hook |
8748b5403232
(iswitchb-visit-buffer): Use `select-frame-set-input-focus'.
Richard M. Stallman <rms@gnu.org>
parents:
41534
diff
changeset
|
195 ;; (lambda () |
8748b5403232
(iswitchb-visit-buffer): Use `select-frame-set-input-focus'.
Richard M. Stallman <rms@gnu.org>
parents:
41534
diff
changeset
|
196 ;; (setq iswitchb-temp-buflist choices)))) |
8748b5403232
(iswitchb-visit-buffer): Use `select-frame-set-input-focus'.
Richard M. Stallman <rms@gnu.org>
parents:
41534
diff
changeset
|
197 ;; (iswitchb-read-buffer prompt))) |
8748b5403232
(iswitchb-visit-buffer): Use `select-frame-set-input-focus'.
Richard M. Stallman <rms@gnu.org>
parents:
41534
diff
changeset
|
198 ;; |
8748b5403232
(iswitchb-visit-buffer): Use `select-frame-set-input-focus'.
Richard M. Stallman <rms@gnu.org>
parents:
41534
diff
changeset
|
199 ;; example: |
8748b5403232
(iswitchb-visit-buffer): Use `select-frame-set-input-focus'.
Richard M. Stallman <rms@gnu.org>
parents:
41534
diff
changeset
|
200 ;; (my-icompleting-read "Which fruit? " ' |
8748b5403232
(iswitchb-visit-buffer): Use `select-frame-set-input-focus'.
Richard M. Stallman <rms@gnu.org>
parents:
41534
diff
changeset
|
201 ;; ("apple" "pineapple" "pear" "bananas" "oranges") ) |
8748b5403232
(iswitchb-visit-buffer): Use `select-frame-set-input-focus'.
Richard M. Stallman <rms@gnu.org>
parents:
41534
diff
changeset
|
202 |
44557
4b1e92d76a10
Update commentary to include new function iswitchb-exclude-nonmatching.
Pavel Janík <Pavel@Janik.cz>
parents:
41926
diff
changeset
|
203 ;; Kin Cho also suggested the following defun. Once you have a subset of |
4b1e92d76a10
Update commentary to include new function iswitchb-exclude-nonmatching.
Pavel Janík <Pavel@Janik.cz>
parents:
41926
diff
changeset
|
204 ;; matching buffers matching your current prompt, you can then press |
4b1e92d76a10
Update commentary to include new function iswitchb-exclude-nonmatching.
Pavel Janík <Pavel@Janik.cz>
parents:
41926
diff
changeset
|
205 ;; e.g. C-o to restrict matching to those buffers and clearing the prompt: |
4b1e92d76a10
Update commentary to include new function iswitchb-exclude-nonmatching.
Pavel Janík <Pavel@Janik.cz>
parents:
41926
diff
changeset
|
206 ;; (defun iswitchb-exclude-nonmatching() |
4b1e92d76a10
Update commentary to include new function iswitchb-exclude-nonmatching.
Pavel Janík <Pavel@Janik.cz>
parents:
41926
diff
changeset
|
207 ;; "Make iswitchb work on only the currently matching names." |
4b1e92d76a10
Update commentary to include new function iswitchb-exclude-nonmatching.
Pavel Janík <Pavel@Janik.cz>
parents:
41926
diff
changeset
|
208 ;; (interactive) |
4b1e92d76a10
Update commentary to include new function iswitchb-exclude-nonmatching.
Pavel Janík <Pavel@Janik.cz>
parents:
41926
diff
changeset
|
209 ;; (setq iswitchb-buflist iswitchb-matches) |
4b1e92d76a10
Update commentary to include new function iswitchb-exclude-nonmatching.
Pavel Janík <Pavel@Janik.cz>
parents:
41926
diff
changeset
|
210 ;; (setq iswitchb-rescan t) |
4b1e92d76a10
Update commentary to include new function iswitchb-exclude-nonmatching.
Pavel Janík <Pavel@Janik.cz>
parents:
41926
diff
changeset
|
211 ;; (delete-minibuffer-contents)) |
4b1e92d76a10
Update commentary to include new function iswitchb-exclude-nonmatching.
Pavel Janík <Pavel@Janik.cz>
parents:
41926
diff
changeset
|
212 ;; |
4b1e92d76a10
Update commentary to include new function iswitchb-exclude-nonmatching.
Pavel Janík <Pavel@Janik.cz>
parents:
41926
diff
changeset
|
213 ;; (add-hook 'iswitchb-define-mode-map-hook |
49597
e88404e8f2cf
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47622
diff
changeset
|
214 ;; '(lambda () (define-key |
e88404e8f2cf
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47622
diff
changeset
|
215 ;; iswitchb-mode-map "\C-o" |
44557
4b1e92d76a10
Update commentary to include new function iswitchb-exclude-nonmatching.
Pavel Janík <Pavel@Janik.cz>
parents:
41926
diff
changeset
|
216 ;; 'iswitchb-exclude-nonmatching))) |
4b1e92d76a10
Update commentary to include new function iswitchb-exclude-nonmatching.
Pavel Janík <Pavel@Janik.cz>
parents:
41926
diff
changeset
|
217 |
41926
8748b5403232
(iswitchb-visit-buffer): Use `select-frame-set-input-focus'.
Richard M. Stallman <rms@gnu.org>
parents:
41534
diff
changeset
|
218 ;; Other lisp packages extend iswitchb behaviour to other tasks. See |
8748b5403232
(iswitchb-visit-buffer): Use `select-frame-set-input-focus'.
Richard M. Stallman <rms@gnu.org>
parents:
41534
diff
changeset
|
219 ;; ido.el (by Kim Storm) and mcomplete.el (Yuji Minejima). |
8748b5403232
(iswitchb-visit-buffer): Use `select-frame-set-input-focus'.
Richard M. Stallman <rms@gnu.org>
parents:
41534
diff
changeset
|
220 |
8748b5403232
(iswitchb-visit-buffer): Use `select-frame-set-input-focus'.
Richard M. Stallman <rms@gnu.org>
parents:
41534
diff
changeset
|
221 ;; Window managers: Switching frames/focus follows mouse; Sawfish. |
8748b5403232
(iswitchb-visit-buffer): Use `select-frame-set-input-focus'.
Richard M. Stallman <rms@gnu.org>
parents:
41534
diff
changeset
|
222 |
8748b5403232
(iswitchb-visit-buffer): Use `select-frame-set-input-focus'.
Richard M. Stallman <rms@gnu.org>
parents:
41534
diff
changeset
|
223 ;; If you switch to a buffer that is visible in another frame, |
8748b5403232
(iswitchb-visit-buffer): Use `select-frame-set-input-focus'.
Richard M. Stallman <rms@gnu.org>
parents:
41534
diff
changeset
|
224 ;; iswitchb can switch focus to that frame. If your window manager |
8748b5403232
(iswitchb-visit-buffer): Use `select-frame-set-input-focus'.
Richard M. Stallman <rms@gnu.org>
parents:
41534
diff
changeset
|
225 ;; uses "click to focus" policy for window selection, you should also |
8748b5403232
(iswitchb-visit-buffer): Use `select-frame-set-input-focus'.
Richard M. Stallman <rms@gnu.org>
parents:
41534
diff
changeset
|
226 ;; set focus-follows-mouse to nil. |
8748b5403232
(iswitchb-visit-buffer): Use `select-frame-set-input-focus'.
Richard M. Stallman <rms@gnu.org>
parents:
41534
diff
changeset
|
227 |
8748b5403232
(iswitchb-visit-buffer): Use `select-frame-set-input-focus'.
Richard M. Stallman <rms@gnu.org>
parents:
41534
diff
changeset
|
228 ;; iswitch functionality has also been implemented for switching |
8748b5403232
(iswitchb-visit-buffer): Use `select-frame-set-input-focus'.
Richard M. Stallman <rms@gnu.org>
parents:
41534
diff
changeset
|
229 ;; between windows in the Sawfish window manager. |
8748b5403232
(iswitchb-visit-buffer): Use `select-frame-set-input-focus'.
Richard M. Stallman <rms@gnu.org>
parents:
41534
diff
changeset
|
230 |
21326 | 231 ;; Regexp matching |
232 | |
63012
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
233 ;; There is provision for regexp matching within iswitchb, enabled |
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
234 ;; through `iswitchb-regexp'. This allows you to type `c$' for |
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
235 ;; example and see all buffer names ending in `c'. No completion |
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
236 ;; mechanism is currently offered when regexp searching. |
21326 | 237 |
18776
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
238 ;;; TODO |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
239 |
17616 | 240 ;;; Acknowledgements |
241 | |
242 ;; Thanks to Jari Aalto <jari.aalto@poboxes.com> for help with the | |
243 ;; first version of this package, iswitch-buffer. Thanks also to many | |
244 ;; others for testing earlier versions. | |
245 | |
246 ;;; Code: | |
247 | |
21058
f2c4ac206a48
(iswitchb-default-method): Remove :tag entries.
Stephen Eglen <stephen@gnu.org>
parents:
20470
diff
changeset
|
248 ;; 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>
parents:
21326
diff
changeset
|
249 (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>
parents:
21326
diff
changeset
|
250 (fboundp 'last))) |
a0c3ee34362d
Only require cl if cadr and last are not defined (thanks to Dave Love.)
Stephen Eglen <stephen@gnu.org>
parents:
21326
diff
changeset
|
251 (require 'cl)) |
21058
f2c4ac206a48
(iswitchb-default-method): Remove :tag entries.
Stephen Eglen <stephen@gnu.org>
parents:
20470
diff
changeset
|
252 |
63012
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
253 (require 'font-lock) |
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
254 |
18776
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
255 ;; Set up the custom library. |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
256 ;; taken from http://www.dina.kvl.dk/~abraham/custom/ |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
257 (eval-and-compile |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
258 (condition-case () |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
259 (require 'custom) |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
260 (error nil)) |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
261 (if (and (featurep 'custom) (fboundp 'custom-declare-variable)) |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
262 nil ;; We've got what we needed |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
263 ;; We have the old custom-library, hack around it! |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
264 (defmacro defgroup (&rest args) |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
265 nil) |
31797 | 266 (defmacro defcustom (var value doc &rest args) |
26455 | 267 `(defvar ,var ,value ,doc)))) |
18776
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
268 |
17616 | 269 ;;; User Variables |
270 ;; | |
271 ;; These are some things you might want to change. | |
272 | |
18776
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
273 (defgroup iswitchb nil |
21058
f2c4ac206a48
(iswitchb-default-method): Remove :tag entries.
Stephen Eglen <stephen@gnu.org>
parents:
20470
diff
changeset
|
274 "Switch between buffers using substrings." |
22250
a77d473867b8
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
21706
diff
changeset
|
275 :group 'convenience |
31797 | 276 :group 'completion |
18776
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
277 :link '(emacs-commentary-link :tag "Commentary" "iswitchb.el") |
31797 | 278 :link '(url-link "http://www.anc.ed.ac.uk/~stephen/emacs/") |
21706
a0c3ee34362d
Only require cl if cadr and last are not defined (thanks to Dave Love.)
Stephen Eglen <stephen@gnu.org>
parents:
21326
diff
changeset
|
279 :link '(emacs-library-link :tag "Lisp File" "iswitchb.el")) |
18776
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
280 |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
281 (defcustom iswitchb-case case-fold-search |
28619
79fd94833204
(iswitchb-case): New function. If the user input
Gerd Moellmann <gerd@gnu.org>
parents:
27497
diff
changeset
|
282 "*Non-nil if searching of buffer names should ignore case. |
79fd94833204
(iswitchb-case): New function. If the user input
Gerd Moellmann <gerd@gnu.org>
parents:
27497
diff
changeset
|
283 If this is non-nil but the user input has any upper case letters, matching |
79fd94833204
(iswitchb-case): New function. If the user input
Gerd Moellmann <gerd@gnu.org>
parents:
27497
diff
changeset
|
284 is temporarily case sensitive." |
18776
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
285 :type 'boolean |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
286 :group 'iswitchb) |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
287 |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
288 (defcustom iswitchb-buffer-ignore |
17616 | 289 '("^ ") |
17617 | 290 "*List of regexps or functions matching buffer names to ignore. |
291 For example, traditional behavior is not to list buffers whose names begin | |
292 with a space, for which the regexp is `^ '. See the source file for | |
18776
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
293 example functions that filter buffernames." |
51366
4ca289edd9e3
(iswitchb-buffer-ignore): Update custom type to allow functions.
Stephen Eglen <stephen@gnu.org>
parents:
49597
diff
changeset
|
294 :type '(repeat (choice regexp function)) |
18776
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
295 :group 'iswitchb) |
65833
fca34be2db31
(iswitchb-buffer-ignore): Label it risky.
Richard M. Stallman <rms@gnu.org>
parents:
65582
diff
changeset
|
296 (put 'iswitchb-buffer-ignore 'risky-local-variable t) |
18776
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
297 |
54956
d0e2ba105b5a
2004-04-17 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
53805
diff
changeset
|
298 (defcustom iswitchb-max-to-show nil |
d0e2ba105b5a
2004-04-17 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
53805
diff
changeset
|
299 "*If non-nil, limit the number of names shown in the minibuffer. |
54985
b1572d70d407
(iswitchb-max-to-show): Update documentation and :type information.
Stephen Eglen <stephen@gnu.org>
parents:
54967
diff
changeset
|
300 If this value is N, and N is greater than the number of matching |
b1572d70d407
(iswitchb-max-to-show): Update documentation and :type information.
Stephen Eglen <stephen@gnu.org>
parents:
54967
diff
changeset
|
301 buffers, the first N/2 and the last N/2 matching buffers are |
b1572d70d407
(iswitchb-max-to-show): Update documentation and :type information.
Stephen Eglen <stephen@gnu.org>
parents:
54967
diff
changeset
|
302 shown. This can greatly speed up iswitchb if you have a |
b1572d70d407
(iswitchb-max-to-show): Update documentation and :type information.
Stephen Eglen <stephen@gnu.org>
parents:
54967
diff
changeset
|
303 multitude of buffers open." |
55038
ec9b32e16559
Update iswitchb-max-to-show.
Stephen Eglen <stephen@gnu.org>
parents:
55001
diff
changeset
|
304 :type '(choice (const :tag "Show all" nil) integer) |
54956
d0e2ba105b5a
2004-04-17 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
53805
diff
changeset
|
305 :group 'iswitchb) |
d0e2ba105b5a
2004-04-17 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
53805
diff
changeset
|
306 |
55434
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
307 (defcustom iswitchb-use-virtual-buffers nil |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
308 "*If non-nil, refer to past buffers when none match. |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
309 This feature relies upon the `recentf' package, which will be |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
310 enabled if this variable is configured to a non-nil value." |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
311 :type 'boolean |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
312 :require 'recentf |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
313 :set (function |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
314 (lambda (sym value) |
55580
cd398d1e6ab3
2004-05-13 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55434
diff
changeset
|
315 (if value (recentf-mode 1)) |
55434
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
316 (set sym value))) |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
317 :group 'iswitchb) |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
318 |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
319 (defvar iswitchb-virtual-buffers nil) |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
320 |
41273
793fceb3e6de
(iswitchb-cannot-complete-hook): New variable to
Richard M. Stallman <rms@gnu.org>
parents:
41161
diff
changeset
|
321 (defcustom iswitchb-cannot-complete-hook 'iswitchb-completion-help |
793fceb3e6de
(iswitchb-cannot-complete-hook): New variable to
Richard M. Stallman <rms@gnu.org>
parents:
41161
diff
changeset
|
322 "*Hook run when `iswitchb-complete' can't complete any more. |
793fceb3e6de
(iswitchb-cannot-complete-hook): New variable to
Richard M. Stallman <rms@gnu.org>
parents:
41161
diff
changeset
|
323 The most useful values are `iswitchb-completion-help', which pops up a |
793fceb3e6de
(iswitchb-cannot-complete-hook): New variable to
Richard M. Stallman <rms@gnu.org>
parents:
41161
diff
changeset
|
324 window with completion alternatives, or `iswitchb-next-match' or |
793fceb3e6de
(iswitchb-cannot-complete-hook): New variable to
Richard M. Stallman <rms@gnu.org>
parents:
41161
diff
changeset
|
325 `iswitchb-prev-match', which cycle the buffer list." |
793fceb3e6de
(iswitchb-cannot-complete-hook): New variable to
Richard M. Stallman <rms@gnu.org>
parents:
41161
diff
changeset
|
326 :type 'hook |
793fceb3e6de
(iswitchb-cannot-complete-hook): New variable to
Richard M. Stallman <rms@gnu.org>
parents:
41161
diff
changeset
|
327 :group 'iswitchb) |
793fceb3e6de
(iswitchb-cannot-complete-hook): New variable to
Richard M. Stallman <rms@gnu.org>
parents:
41161
diff
changeset
|
328 |
17616 | 329 ;;; Examples for setting the value of iswitchb-buffer-ignore |
21326 | 330 ;(defun iswitchb-ignore-c-mode (name) |
17616 | 331 ; "Ignore all c mode buffers -- example function for iswitchb." |
332 ; (save-excursion | |
333 ; (set-buffer name) | |
334 ; (string-match "^C$" mode-name))) | |
335 | |
21326 | 336 ;(setq iswitchb-buffer-ignore '("^ " iswitchb-ignore-c-mode)) |
17616 | 337 ;(setq iswitchb-buffer-ignore '("^ " "\\.c$" "\\.h$")) |
338 | |
18776
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
339 (defcustom iswitchb-default-method 'always-frame |
17617 | 340 "*How to switch to new buffer when using `iswitchb-buffer'. |
17616 | 341 Possible values: |
342 `samewindow' Show new buffer in same window | |
343 `otherwindow' Show new buffer in another window (same frame) | |
17618
8d33666b1152
(iswitchb-visit-buffer): Handle `display' alternative.
Richard M. Stallman <rms@gnu.org>
parents:
17617
diff
changeset
|
344 `display' Display buffer in another window without switching to it |
17616 | 345 `otherframe' Show new buffer in another frame |
346 `maybe-frame' If a buffer is visible in another frame, prompt to ask if you | |
347 you want to see the buffer in the same window of the current | |
348 frame or in the other frame. | |
21058
f2c4ac206a48
(iswitchb-default-method): Remove :tag entries.
Stephen Eglen <stephen@gnu.org>
parents:
20470
diff
changeset
|
349 `always-frame' If a buffer is visible in another frame, raise that |
18776
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
350 frame. Otherwise, visit the buffer in the same window." |
31797 | 351 :type '(choice (const samewindow) |
21058
f2c4ac206a48
(iswitchb-default-method): Remove :tag entries.
Stephen Eglen <stephen@gnu.org>
parents:
20470
diff
changeset
|
352 (const otherwindow) |
f2c4ac206a48
(iswitchb-default-method): Remove :tag entries.
Stephen Eglen <stephen@gnu.org>
parents:
20470
diff
changeset
|
353 (const display) |
31797 | 354 (const otherframe) |
21058
f2c4ac206a48
(iswitchb-default-method): Remove :tag entries.
Stephen Eglen <stephen@gnu.org>
parents:
20470
diff
changeset
|
355 (const maybe-frame) |
f2c4ac206a48
(iswitchb-default-method): Remove :tag entries.
Stephen Eglen <stephen@gnu.org>
parents:
20470
diff
changeset
|
356 (const always-frame)) |
18776
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
357 :group 'iswitchb) |
17616 | 358 |
18776
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
359 (defcustom iswitchb-regexp nil |
17617 | 360 "*Non-nil means that `iswitchb' will do regexp matching. |
21326 | 361 Value can be toggled within `iswitchb' using `iswitchb-toggle-regexp'." |
18776
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
362 :type 'boolean |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
363 :group 'iswitchb) |
17616 | 364 |
18776
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
365 (defcustom iswitchb-newbuffer t |
17616 | 366 "*Non-nil means create new buffer if no buffer matches substring. |
18776
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
367 See also `iswitchb-prompt-newbuffer'." |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
368 :type 'boolean |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
369 :group 'iswitchb) |
17616 | 370 |
18776
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
371 (defcustom iswitchb-prompt-newbuffer t |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
372 "*Non-nil means prompt user to confirm before creating new buffer. |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
373 See also `iswitchb-newbuffer'." |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
374 :type 'boolean |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
375 :group 'iswitchb) |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
376 |
63012
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
377 (defcustom iswitchb-use-faces t |
21326 | 378 "*Non-nil means use font-lock fonts for showing first match." |
18776
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
379 :type 'boolean |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
380 :group 'iswitchb) |
63012
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
381 (define-obsolete-variable-alias 'iswitchb-use-fonts 'iswitchb-use-faces "22.1") |
18776
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
382 |
27497
7f8974c3b6f8
(iswitchb-use-frame-buffer-list): New configuration
Gerd Moellmann <gerd@gnu.org>
parents:
26455
diff
changeset
|
383 (defcustom iswitchb-use-frame-buffer-list nil |
7f8974c3b6f8
(iswitchb-use-frame-buffer-list): New configuration
Gerd Moellmann <gerd@gnu.org>
parents:
26455
diff
changeset
|
384 "*Non-nil means use the currently selected frame's buffer list." |
7f8974c3b6f8
(iswitchb-use-frame-buffer-list): New configuration
Gerd Moellmann <gerd@gnu.org>
parents:
26455
diff
changeset
|
385 :type 'boolean |
7f8974c3b6f8
(iswitchb-use-frame-buffer-list): New configuration
Gerd Moellmann <gerd@gnu.org>
parents:
26455
diff
changeset
|
386 :group 'iswitchb) |
7f8974c3b6f8
(iswitchb-use-frame-buffer-list): New configuration
Gerd Moellmann <gerd@gnu.org>
parents:
26455
diff
changeset
|
387 |
18776
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
388 (defcustom iswitchb-make-buflist-hook nil |
31797 | 389 "Hook to run when list of matching buffers is created." |
18776
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
390 :type 'hook |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
391 :group 'iswitchb) |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
392 |
17616 | 393 (defvar iswitchb-all-frames 'visible |
394 "*Argument to pass to `walk-windows' when finding visible buffers. | |
395 See documentation of `walk-windows' for useful values.") | |
396 | |
21326 | 397 (defcustom iswitchb-minibuffer-setup-hook nil |
31797 | 398 "Iswitchb-specific customization of minibuffer setup. |
17616 | 399 |
17617 | 400 This hook is run during minibuffer setup iff `iswitchb' will be active. |
53805
dd6aac780c4b
(iswitchb-minibuffer-setup-hook): Update doc string
Stephen Eglen <stephen@gnu.org>
parents:
53161
diff
changeset
|
401 For instance: |
dd6aac780c4b
(iswitchb-minibuffer-setup-hook): Update doc string
Stephen Eglen <stephen@gnu.org>
parents:
53161
diff
changeset
|
402 \(add-hook 'iswitchb-minibuffer-setup-hook |
dd6aac780c4b
(iswitchb-minibuffer-setup-hook): Update doc string
Stephen Eglen <stephen@gnu.org>
parents:
53161
diff
changeset
|
403 '\(lambda () (set (make-local-variable 'max-mini-window-height) 3))) |
dd6aac780c4b
(iswitchb-minibuffer-setup-hook): Update doc string
Stephen Eglen <stephen@gnu.org>
parents:
53161
diff
changeset
|
404 will constrain the minibuffer to a maximum height of 3 lines when |
dd6aac780c4b
(iswitchb-minibuffer-setup-hook): Update doc string
Stephen Eglen <stephen@gnu.org>
parents:
53161
diff
changeset
|
405 iswitchb is running." |
21326 | 406 :type 'hook |
407 :group 'iswitchb) | |
408 | |
63075
7e902750d940
2005-06-06 Matt Hodges <MPHodges@member.fsf.org>
Kim F. Storm <storm@cua.dk>
parents:
63012
diff
changeset
|
409 (defface iswitchb-single-match |
63012
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
410 '((t |
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
411 (:inherit font-lock-comment-face))) |
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
412 "Iswitchb face for single matching buffer name." |
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
413 :version "22.1" |
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
414 :group 'iswitchb) |
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
415 |
63075
7e902750d940
2005-06-06 Matt Hodges <MPHodges@member.fsf.org>
Kim F. Storm <storm@cua.dk>
parents:
63012
diff
changeset
|
416 (defface iswitchb-current-match |
63012
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
417 '((t |
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
418 (:inherit font-lock-function-name-face))) |
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
419 "Iswitchb face for current matching buffer name." |
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
420 :version "22.1" |
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
421 :group 'iswitchb) |
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
422 |
63075
7e902750d940
2005-06-06 Matt Hodges <MPHodges@member.fsf.org>
Kim F. Storm <storm@cua.dk>
parents:
63012
diff
changeset
|
423 (defface iswitchb-virtual-matches |
63012
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
424 '((t |
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
425 (:inherit font-lock-builtin-face))) |
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
426 "Iswitchb face for matching virtual buffer names. |
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
427 See also `iswitchb-use-virtual-buffers'." |
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
428 :version "22.1" |
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
429 :group 'iswitchb) |
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
430 |
63075
7e902750d940
2005-06-06 Matt Hodges <MPHodges@member.fsf.org>
Kim F. Storm <storm@cua.dk>
parents:
63012
diff
changeset
|
431 (defface iswitchb-invalid-regexp |
63012
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
432 '((t |
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
433 (:inherit font-lock-warning-face))) |
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
434 "Iswitchb face for indicating invalid regexp. " |
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
435 :version "22.1" |
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
436 :group 'iswitchb) |
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
437 |
21326 | 438 ;; Do we need the variable iswitchb-use-mycompletion? |
439 | |
440 ;;; Internal Variables | |
441 | |
442 (defvar iswitchb-method nil | |
31797 | 443 "Stores the method for viewing the selected buffer. |
21326 | 444 Its value is one of `samewindow', `otherwindow', `display', `otherframe', |
445 `maybe-frame' or `always-frame'. See `iswitchb-default-method' for | |
446 details of values.") | |
17616 | 447 |
448 (defvar iswitchb-eoinput 1 | |
449 "Point where minibuffer input ends and completion info begins. | |
17617 | 450 Copied from `icomplete-eoinput'.") |
17616 | 451 (make-variable-buffer-local 'iswitchb-eoinput) |
452 | |
453 (defvar iswitchb-buflist nil | |
454 "Stores the current list of buffers that will be searched through. | |
455 The list is ordered, so that the most recent buffers come first, | |
456 although by default, the buffers visible in the current frame are put | |
457 at the end of the list. Created by `iswitchb-make-buflist'.") | |
458 | |
459 ;; todo -- is this necessary? | |
460 | |
461 (defvar iswitchb-use-mycompletion nil | |
31797 | 462 "Non-nil means use `iswitchb-buffer' completion feedback. |
17617 | 463 Should only be set to t by iswitchb functions, so that it doesn't |
464 interfere with other minibuffer usage.") | |
17616 | 465 |
31797 | 466 (defvar iswitchb-change-word-sub nil |
17616 | 467 "Private variable used by `iswitchb-word-matching-substring'.") |
468 | |
469 (defvar iswitchb-common-match-string nil | |
470 "Stores the string that is common to all matching buffers.") | |
471 | |
472 (defvar iswitchb-rescan nil | |
473 "Non-nil means we need to regenerate the list of matching buffers.") | |
474 | |
475 (defvar iswitchb-text nil | |
476 "Stores the users string as it is typed in.") | |
477 | |
478 (defvar iswitchb-matches nil | |
20470
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
479 "List of buffers currently matching `iswitchb-text'.") |
17616 | 480 |
31797 | 481 (defvar iswitchb-mode-map |
482 (let ((map (make-sparse-keymap))) | |
483 (set-keymap-parent map minibuffer-local-map) | |
484 (define-key map "?" 'iswitchb-completion-help) | |
485 (define-key map "\C-s" 'iswitchb-next-match) | |
486 (define-key map "\C-r" 'iswitchb-prev-match) | |
487 (define-key map "\t" 'iswitchb-complete) | |
488 (define-key map "\C-j" 'iswitchb-select-buffer-text) | |
489 (define-key map "\C-t" 'iswitchb-toggle-regexp) | |
490 (define-key map "\C-x\C-f" 'iswitchb-find-file) | |
491 (define-key map "\C-c" 'iswitchb-toggle-case) | |
492 (define-key map "\C-k" 'iswitchb-kill-buffer) | |
493 (define-key map "\C-m" 'iswitchb-exit-minibuffer) | |
494 map) | |
495 "Minibuffer keymap for `iswitchb-buffer'.") | |
17616 | 496 |
31797 | 497 (defvar iswitchb-global-map |
498 (let ((map (make-sparse-keymap))) | |
499 (substitute-key-definition 'switch-to-buffer ; normally C-x b | |
500 'iswitchb-buffer map global-map) | |
501 (substitute-key-definition 'switch-to-buffer-other-window ; C-x 4 b | |
502 'iswitchb-buffer-other-window map global-map) | |
503 (substitute-key-definition 'switch-to-buffer-other-frame ; C-x 5 b | |
504 'iswitchb-buffer-other-frame map global-map) | |
505 (substitute-key-definition 'display-buffer ; C-x 4 C-o | |
506 'iswitchb-display-buffer map global-map) | |
507 map) | |
55373
e1be47d1e62e
(iswitchb-global-map): Fix typo. Removed unwanted ###autoloads from
Stephen Eglen <stephen@gnu.org>
parents:
55038
diff
changeset
|
508 "Global keymap for `iswitchb-mode'.") |
31797 | 509 |
510 (defvar iswitchb-history nil | |
17617 | 511 "History of buffers selected using `iswitchb-buffer'.") |
17616 | 512 |
31797 | 513 (defvar iswitchb-exit nil |
514 "Flag to monitor how `iswitchb-buffer' exits. | |
17617 | 515 If equal to `takeprompt', we use the prompt as the buffer name to be |
516 selected.") | |
17616 | 517 |
518 (defvar iswitchb-buffer-ignore-orig nil | |
519 "Stores original value of `iswitchb-buffer-ignore'.") | |
520 | |
21326 | 521 (defvar iswitchb-default nil |
522 "Default buffer for iswitchb.") | |
17616 | 523 |
22380
2645c2c3829f
(iswitchb-require-match, iswitchb-temp-buflist, iswitchb-bufs-in-frame):
Stephen Eglen <stephen@gnu.org>
parents:
22354
diff
changeset
|
524 ;; 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>
parents:
22354
diff
changeset
|
525 (defvar iswitchb-require-match nil |
2645c2c3829f
(iswitchb-require-match, iswitchb-temp-buflist, iswitchb-bufs-in-frame):
Stephen Eglen <stephen@gnu.org>
parents:
22354
diff
changeset
|
526 "Non-nil if matching buffer must be selected.") |
2645c2c3829f
(iswitchb-require-match, iswitchb-temp-buflist, iswitchb-bufs-in-frame):
Stephen Eglen <stephen@gnu.org>
parents:
22354
diff
changeset
|
527 |
2645c2c3829f
(iswitchb-require-match, iswitchb-temp-buflist, iswitchb-bufs-in-frame):
Stephen Eglen <stephen@gnu.org>
parents:
22354
diff
changeset
|
528 (defvar iswitchb-temp-buflist nil |
2645c2c3829f
(iswitchb-require-match, iswitchb-temp-buflist, iswitchb-bufs-in-frame):
Stephen Eglen <stephen@gnu.org>
parents:
22354
diff
changeset
|
529 "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>
parents:
22354
diff
changeset
|
530 |
2645c2c3829f
(iswitchb-require-match, iswitchb-temp-buflist, iswitchb-bufs-in-frame):
Stephen Eglen <stephen@gnu.org>
parents:
22354
diff
changeset
|
531 (defvar iswitchb-bufs-in-frame nil |
2645c2c3829f
(iswitchb-require-match, iswitchb-temp-buflist, iswitchb-bufs-in-frame):
Stephen Eglen <stephen@gnu.org>
parents:
22354
diff
changeset
|
532 "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>
parents:
22354
diff
changeset
|
533 |
33818
42ed3c6a1d89
(iswitchb-minibuf-depth): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
32288
diff
changeset
|
534 (defvar iswitchb-minibuf-depth nil |
42ed3c6a1d89
(iswitchb-minibuf-depth): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
32288
diff
changeset
|
535 "Value we expect to be returned by `minibuffer-depth' in the minibuffer.") |
42ed3c6a1d89
(iswitchb-minibuf-depth): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
32288
diff
changeset
|
536 |
63012
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
537 (defvar iswitchb-common-match-inserted nil |
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
538 "Non-nil if we have just inserted a common match in the minibuffer.") |
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
539 |
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
540 (defvar iswitchb-invalid-regexp) |
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
541 |
17616 | 542 ;;; FUNCTIONS |
543 | |
31797 | 544 ;;; ISWITCHB KEYMAP |
17616 | 545 (defun iswitchb-define-mode-map () |
31797 | 546 "Set up the keymap for `iswitchb-buffer'. |
547 This is obsolete. Use \\[iswitchb-mode] or customize the | |
548 variable `iswitchb-mode'." | |
17616 | 549 (interactive) |
550 (let (map) | |
20470
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
551 ;; generated every time so that it can inherit new functions. |
17616 | 552 ;;(or iswitchb-mode-map |
553 | |
554 (setq map (copy-keymap minibuffer-local-map)) | |
555 (define-key map "?" 'iswitchb-completion-help) | |
556 (define-key map "\C-s" 'iswitchb-next-match) | |
557 (define-key map "\C-r" 'iswitchb-prev-match) | |
558 (define-key map "\t" 'iswitchb-complete) | |
559 (define-key map "\C-j" 'iswitchb-select-buffer-text) | |
560 (define-key map "\C-t" 'iswitchb-toggle-regexp) | |
18776
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
561 (define-key map "\C-x\C-f" 'iswitchb-find-file) |
68204
59d4f36d7a5c
(iswitchb-define-mode-map): Use C-n for iswitchb-toggle-ignore. (This
Stephen Eglen <stephen@gnu.org>
parents:
66594
diff
changeset
|
562 (define-key map "\C-n" 'iswitchb-toggle-ignore) |
17616 | 563 (define-key map "\C-c" 'iswitchb-toggle-case) |
18776
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
564 (define-key map "\C-k" 'iswitchb-kill-buffer) |
20470
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
565 (define-key map "\C-m" 'iswitchb-exit-minibuffer) |
17616 | 566 (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>
parents:
21326
diff
changeset
|
567 (run-hooks 'iswitchb-define-mode-map-hook))) |
49597
e88404e8f2cf
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47622
diff
changeset
|
568 |
17616 | 569 ;;; MAIN FUNCTION |
570 (defun iswitchb () | |
571 "Switch to buffer matching a substring. | |
572 As you type in a string, all of the buffers matching the string are | |
573 displayed. When you have found the buffer you want, it can then be | |
574 selected. As you type, most keys have their normal keybindings, | |
575 except for the following: | |
576 \\<iswitchb-mode-map> | |
577 | |
578 RET Select the buffer at the front of the list of matches. If the | |
17617 | 579 list is empty, possibly prompt to create new buffer. |
17616 | 580 |
581 \\[iswitchb-select-buffer-text] Select the current prompt as the buffer. | |
582 If no buffer is found, prompt for a new one. | |
583 | |
584 \\[iswitchb-next-match] Put the first element at the end of the list. | |
585 \\[iswitchb-prev-match] Put the last element at the start of the list. | |
31797 | 586 \\[iswitchb-complete] Complete a common suffix to the current string that |
17616 | 587 matches all buffers. If there is only one match, select that buffer. |
588 If there is no common suffix, show a list of all matching buffers | |
589 in a separate window. | |
20470
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
590 \\[iswitchb-toggle-regexp] Toggle regexp searching. |
17616 | 591 \\[iswitchb-toggle-case] Toggle case-sensitive searching of buffer names. |
18776
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
592 \\[iswitchb-completion-help] Show list of matching buffers in separate window. |
31797 | 593 \\[iswitchb-find-file] Exit iswitchb and drop into `find-file'. |
18776
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
594 \\[iswitchb-kill-buffer] Kill buffer at head of buffer list." |
17616 | 595 ;;\\[iswitchb-toggle-ignore] Toggle ignoring certain buffers (see \ |
596 ;;`iswitchb-buffer-ignore') | |
49597
e88404e8f2cf
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47622
diff
changeset
|
597 |
41287
eeb1c0923d4f
(iswitchb-mode): Use define-minor-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41273
diff
changeset
|
598 (let* ((prompt "iswitch ") |
63012
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
599 iswitchb-invalid-regexp |
41287
eeb1c0923d4f
(iswitchb-mode): Use define-minor-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41273
diff
changeset
|
600 (buf (iswitchb-read-buffer prompt))) |
20470
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
601 |
17616 | 602 ;;(message "chosen text %s" iswitchb-final-text) |
603 ;; Choose the buffer name: either the text typed in, or the head | |
604 ;; of the list of matches | |
18776
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
605 |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
606 (cond ( (eq iswitchb-exit 'findfile) |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
607 (call-interactively 'find-file)) |
63012
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
608 (iswitchb-invalid-regexp |
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
609 (message "Won't make invalid regexp named buffer")) |
18776
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
610 (t |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
611 ;; View the buffer |
21058
f2c4ac206a48
(iswitchb-default-method): Remove :tag entries.
Stephen Eglen <stephen@gnu.org>
parents:
20470
diff
changeset
|
612 ;;(message "go to buf %s" buf) |
20470
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
613 ;; Check buf is non-nil. |
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
614 (if buf |
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
615 (if (get-buffer buf) |
18776
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
616 ;; buffer exists, so view it and then exit |
20470
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
617 (iswitchb-visit-buffer buf) |
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
618 ;; else buffer doesn't exist |
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
619 (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>
parents:
21326
diff
changeset
|
620 )))) |
20470
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
621 |
55434
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
622 (defun iswitchb-read-buffer (prompt &optional default require-match |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
623 start matches-set) |
20470
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
624 "Replacement for the built-in `read-buffer'. |
31797 | 625 Return the name of a buffer selected. |
55434
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
626 PROMPT is the prompt to give to the user. |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
627 DEFAULT if given is the default buffer to be selected, which will |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
628 go to the front of the list. |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
629 If REQUIRE-MATCH is non-nil, an existing-buffer must be selected. |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
630 If START is a string, the selection process is started with that |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
631 string. |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
632 If MATCHES-SET is non-nil, the buflist is not updated before |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
633 the selection process begins. Used by isearchb.el." |
20470
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
634 (let |
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
635 ( |
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
636 buf-sel |
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
637 iswitchb-final-text |
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
638 (icomplete-mode nil) ;; prevent icomplete starting up |
63012
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
639 ) |
20470
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
640 |
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
641 (iswitchb-define-mode-map) |
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
642 (setq iswitchb-exit nil) |
21326 | 643 (setq iswitchb-default |
644 (if (bufferp default) | |
645 (buffer-name default) | |
646 default)) | |
55434
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
647 (setq iswitchb-text (or start "")) |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
648 (unless matches-set |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
649 (setq iswitchb-rescan t) |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
650 (iswitchb-make-buflist iswitchb-default) |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
651 (iswitchb-set-matches)) |
31797 | 652 (let |
20470
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
653 ((minibuffer-local-completion-map iswitchb-mode-map) |
33818
42ed3c6a1d89
(iswitchb-minibuf-depth): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
32288
diff
changeset
|
654 ;; Record the minibuffer depth that we expect to find once |
42ed3c6a1d89
(iswitchb-minibuf-depth): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
32288
diff
changeset
|
655 ;; the minibuffer is set up and iswitchb-entryfn-p is called. |
42ed3c6a1d89
(iswitchb-minibuf-depth): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
32288
diff
changeset
|
656 (iswitchb-minibuf-depth (1+ (minibuffer-depth))) |
21706
a0c3ee34362d
Only require cl if cadr and last are not defined (thanks to Dave Love.)
Stephen Eglen <stephen@gnu.org>
parents:
21326
diff
changeset
|
657 (iswitchb-require-match require-match)) |
20470
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
658 ;; prompt the user for the buffer name |
31797 | 659 (setq iswitchb-final-text (completing-read |
55434
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
660 prompt ;the prompt |
32288 | 661 '(("dummy" . 1)) ;table |
55434
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
662 nil ;predicate |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
663 nil ;require-match [handled elsewhere] |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
664 start ;initial-contents |
20470
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
665 'iswitchb-history))) |
53161
779a274d72ed
iswitchb-read-buffer: check that iswitchb-exit is not 'usefirst (set
Stephen Eglen <stephen@gnu.org>
parents:
52401
diff
changeset
|
666 (if (and (not (eq iswitchb-exit 'usefirst)) |
779a274d72ed
iswitchb-read-buffer: check that iswitchb-exit is not 'usefirst (set
Stephen Eglen <stephen@gnu.org>
parents:
52401
diff
changeset
|
667 (get-buffer iswitchb-final-text)) |
41287
eeb1c0923d4f
(iswitchb-mode): Use define-minor-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41273
diff
changeset
|
668 ;; This happens for example if the buffer was chosen with the mouse. |
55434
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
669 (setq iswitchb-matches (list iswitchb-final-text) |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
670 iswitchb-virtual-buffers nil)) |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
671 |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
672 ;; If no buffer matched, but a virtual buffer was selected, visit |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
673 ;; that file now and act as though that buffer had been selected. |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
674 (if (and iswitchb-virtual-buffers |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
675 (not (iswitchb-existing-buffer-p))) |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
676 (let ((virt (car iswitchb-virtual-buffers))) |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
677 (find-file-noselect (cdr virt)) |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
678 (setq iswitchb-matches (list (car virt)) |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
679 iswitchb-virtual-buffers nil))) |
41287
eeb1c0923d4f
(iswitchb-mode): Use define-minor-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41273
diff
changeset
|
680 |
20470
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
681 ;; Handling the require-match must be done in a better way. |
55434
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
682 (if (and require-match |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
683 (not (iswitchb-existing-buffer-p))) |
31797 | 684 (error "Must specify valid buffer")) |
20470
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
685 |
55434
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
686 (if (or (eq iswitchb-exit 'takeprompt) |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
687 (null iswitchb-matches)) |
20470
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
688 (setq buf-sel iswitchb-final-text) |
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
689 ;; else take head of list |
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
690 (setq buf-sel (car iswitchb-matches))) |
49597
e88404e8f2cf
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47622
diff
changeset
|
691 |
20470
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
692 ;; Or possibly choose the default buffer |
31797 | 693 (if (equal iswitchb-final-text "") |
55434
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
694 (setq buf-sel (car iswitchb-matches))) |
20470
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
695 |
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
696 buf-sel)) |
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
697 |
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
698 (defun iswitchb-existing-buffer-p () |
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
699 "Return non-nil if there is a matching buffer." |
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
700 (not (null iswitchb-matches))) |
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
701 |
17616 | 702 ;;; COMPLETION CODE |
703 | |
704 (defun iswitchb-set-common-completion () | |
17617 | 705 "Find common completion of `iswitchb-text' in `iswitchb-matches'. |
706 The result is stored in `iswitchb-common-match-string'." | |
17616 | 707 |
708 (let* (val) | |
709 (setq iswitchb-common-match-string nil) | |
710 (if (and iswitchb-matches | |
21326 | 711 (not iswitchb-regexp) ;; testing |
17616 | 712 (stringp iswitchb-text) |
713 (> (length iswitchb-text) 0)) | |
714 (if (setq val (iswitchb-find-common-substring | |
715 iswitchb-matches iswitchb-text)) | |
716 (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>
parents:
21326
diff
changeset
|
717 val)) |
17616 | 718 |
719 (defun iswitchb-complete () | |
720 "Try and complete the current pattern amongst the buffer names." | |
721 (interactive) | |
722 (let (res) | |
723 (cond ((not iswitchb-matches) | |
41273
793fceb3e6de
(iswitchb-cannot-complete-hook): New variable to
Richard M. Stallman <rms@gnu.org>
parents:
41161
diff
changeset
|
724 (run-hooks 'iswitchb-cannot-complete-hook)) |
63012
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
725 (iswitchb-invalid-regexp |
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
726 ;; Do nothing |
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
727 ) |
20470
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
728 ((= 1 (length iswitchb-matches)) |
17616 | 729 ;; only one choice, so select it. |
730 (exit-minibuffer)) | |
49597
e88404e8f2cf
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47622
diff
changeset
|
731 |
17616 | 732 (t |
733 ;; else there could be some completions | |
21326 | 734 (setq res iswitchb-common-match-string) |
17616 | 735 (if (and (not (memq res '(t nil))) |
18776
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
736 (not (equal res iswitchb-text))) |
20470
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
737 ;; found something to complete, so put it in the minibuffer. |
17616 | 738 (progn |
63012
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
739 (setq iswitchb-rescan nil |
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
740 iswitchb-common-match-inserted t) |
25791
6413bcf4ea32
(iswitchb-complete): Use minibuffer-prompt-end
Gerd Moellmann <gerd@gnu.org>
parents:
25652
diff
changeset
|
741 (delete-region (minibuffer-prompt-end) (point)) |
17616 | 742 (insert res)) |
743 ;; else nothing to complete | |
41273
793fceb3e6de
(iswitchb-cannot-complete-hook): New variable to
Richard M. Stallman <rms@gnu.org>
parents:
41161
diff
changeset
|
744 (run-hooks 'iswitchb-cannot-complete-hook) |
21706
a0c3ee34362d
Only require cl if cadr and last are not defined (thanks to Dave Love.)
Stephen Eglen <stephen@gnu.org>
parents:
21326
diff
changeset
|
745 ))))) |
17616 | 746 |
747 ;;; TOGGLE FUNCTIONS | |
748 | |
749 (defun iswitchb-toggle-case () | |
31797 | 750 "Toggle the value of variable `iswitchb-case'." |
17616 | 751 (interactive) |
752 (setq iswitchb-case (not iswitchb-case)) | |
753 ;; 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>
parents:
21326
diff
changeset
|
754 (setq iswitchb-rescan t)) |
17616 | 755 |
756 (defun iswitchb-toggle-regexp () | |
757 "Toggle the value of `iswitchb-regexp'." | |
758 (interactive) | |
759 (setq iswitchb-regexp (not iswitchb-regexp)) | |
760 ;; 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>
parents:
21326
diff
changeset
|
761 (setq iswitchb-rescan t)) |
17616 | 762 |
763 (defun iswitchb-toggle-ignore () | |
764 "Toggle ignoring buffers specified with `iswitchb-buffer-ignore'." | |
765 (interactive) | |
766 (if iswitchb-buffer-ignore | |
767 (progn | |
768 (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>
parents:
21326
diff
changeset
|
769 (setq iswitchb-buffer-ignore nil)) |
17616 | 770 ;; else |
21706
a0c3ee34362d
Only require cl if cadr and last are not defined (thanks to Dave Love.)
Stephen Eglen <stephen@gnu.org>
parents:
21326
diff
changeset
|
771 (setq iswitchb-buffer-ignore iswitchb-buffer-ignore-orig)) |
21326 | 772 (iswitchb-make-buflist iswitchb-default) |
17616 | 773 ;; 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>
parents:
21326
diff
changeset
|
774 (setq iswitchb-rescan t)) |
17616 | 775 |
20470
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
776 (defun iswitchb-exit-minibuffer () |
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
777 "Exit minibuffer, but make sure we have a match if one is needed." |
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
778 (interactive) |
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
779 (if (or (not iswitchb-require-match) |
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
780 (iswitchb-existing-buffer-p)) |
53161
779a274d72ed
iswitchb-read-buffer: check that iswitchb-exit is not 'usefirst (set
Stephen Eglen <stephen@gnu.org>
parents:
52401
diff
changeset
|
781 (progn |
779a274d72ed
iswitchb-read-buffer: check that iswitchb-exit is not 'usefirst (set
Stephen Eglen <stephen@gnu.org>
parents:
52401
diff
changeset
|
782 (setq iswitchb-exit 'usefirst) |
779a274d72ed
iswitchb-read-buffer: check that iswitchb-exit is not 'usefirst (set
Stephen Eglen <stephen@gnu.org>
parents:
52401
diff
changeset
|
783 (throw 'exit nil)))) |
17616 | 784 |
785 (defun iswitchb-select-buffer-text () | |
17617 | 786 "Select the buffer named by the prompt. |
787 If no buffer exactly matching the prompt exists, maybe create a new one." | |
17616 | 788 (interactive) |
789 (setq iswitchb-exit 'takeprompt) | |
790 (exit-minibuffer)) | |
791 | |
18776
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
792 (defun iswitchb-find-file () |
31797 | 793 "Drop into `find-file' from buffer switching." |
18776
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
794 (interactive) |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
795 (setq iswitchb-exit 'findfile) |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
796 (exit-minibuffer)) |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
797 |
55434
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
798 (eval-when-compile |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
799 (defvar recentf-list)) |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
800 |
31797 | 801 (defun iswitchb-next-match () |
17616 | 802 "Put first element of `iswitchb-matches' at the end of the list." |
803 (interactive) | |
18776
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
804 (let ((next (cadr iswitchb-matches))) |
55434
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
805 (if (and (null next) iswitchb-virtual-buffers) |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
806 (setq recentf-list |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
807 (iswitchb-chop recentf-list |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
808 (cdr (cadr iswitchb-virtual-buffers)))) |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
809 (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>
parents:
21326
diff
changeset
|
810 (setq iswitchb-rescan t))) |
17616 | 811 |
31797 | 812 (defun iswitchb-prev-match () |
17616 | 813 "Put last element of `iswitchb-matches' at the front of the list." |
814 (interactive) | |
18776
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
815 (let ((prev (car (last iswitchb-matches)))) |
55434
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
816 (if (and (null prev) iswitchb-virtual-buffers) |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
817 (setq recentf-list |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
818 (iswitchb-chop recentf-list |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
819 (cdr (car (last iswitchb-virtual-buffers))))) |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
820 (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>
parents:
21326
diff
changeset
|
821 (setq iswitchb-rescan t))) |
18776
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
822 |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
823 (defun iswitchb-chop (list elem) |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
824 "Remove all elements before ELEM and put them at the end of LIST." |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
825 (let ((ret nil) |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
826 (next nil) |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
827 (sofar nil)) |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
828 (while (not ret) |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
829 (setq next (car list)) |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
830 (if (equal next elem) |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
831 (setq ret (append list (nreverse sofar))) |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
832 ;; else |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
833 (progn |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
834 (setq list (cdr list)) |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
835 (setq sofar (cons next sofar))))) |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
836 ret)) |
17616 | 837 |
838 ;;; CREATE LIST OF ALL CURRENT BUFFERS | |
839 | |
20470
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
840 (defun iswitchb-make-buflist (default) |
17617 | 841 "Set `iswitchb-buflist' to the current list of buffers. |
18776
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
842 Currently visible buffers are put at the end of the list. |
31797 | 843 The hook `iswitchb-make-buflist-hook' is run after the list has been |
18776
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
844 created to allow the user to further modify the order of the buffer names |
20470
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
845 in this list. If DEFAULT is non-nil, and corresponds to an existing buffer, |
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
846 it is put to the start of the list." |
31797 | 847 (setq iswitchb-buflist |
18776
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
848 (let* ((iswitchb-current-buffers (iswitchb-get-buffers-in-frames)) |
35570
4308e62b25c8
(iswitchb-make-buflist): When nconc'ing lists, don't
Gerd Moellmann <gerd@gnu.org>
parents:
34208
diff
changeset
|
849 (iswitchb-temp-buflist |
4308e62b25c8
(iswitchb-make-buflist): When nconc'ing lists, don't
Gerd Moellmann <gerd@gnu.org>
parents:
34208
diff
changeset
|
850 (delq nil |
4308e62b25c8
(iswitchb-make-buflist): When nconc'ing lists, don't
Gerd Moellmann <gerd@gnu.org>
parents:
34208
diff
changeset
|
851 (mapcar |
4308e62b25c8
(iswitchb-make-buflist): When nconc'ing lists, don't
Gerd Moellmann <gerd@gnu.org>
parents:
34208
diff
changeset
|
852 (lambda (x) |
4308e62b25c8
(iswitchb-make-buflist): When nconc'ing lists, don't
Gerd Moellmann <gerd@gnu.org>
parents:
34208
diff
changeset
|
853 (let ((b-name (buffer-name x))) |
4308e62b25c8
(iswitchb-make-buflist): When nconc'ing lists, don't
Gerd Moellmann <gerd@gnu.org>
parents:
34208
diff
changeset
|
854 (if (not |
4308e62b25c8
(iswitchb-make-buflist): When nconc'ing lists, don't
Gerd Moellmann <gerd@gnu.org>
parents:
34208
diff
changeset
|
855 (or |
4308e62b25c8
(iswitchb-make-buflist): When nconc'ing lists, don't
Gerd Moellmann <gerd@gnu.org>
parents:
34208
diff
changeset
|
856 (iswitchb-ignore-buffername-p b-name) |
4308e62b25c8
(iswitchb-make-buflist): When nconc'ing lists, don't
Gerd Moellmann <gerd@gnu.org>
parents:
34208
diff
changeset
|
857 (memq b-name iswitchb-current-buffers))) |
4308e62b25c8
(iswitchb-make-buflist): When nconc'ing lists, don't
Gerd Moellmann <gerd@gnu.org>
parents:
34208
diff
changeset
|
858 b-name))) |
4308e62b25c8
(iswitchb-make-buflist): When nconc'ing lists, don't
Gerd Moellmann <gerd@gnu.org>
parents:
34208
diff
changeset
|
859 (buffer-list (and iswitchb-use-frame-buffer-list |
4308e62b25c8
(iswitchb-make-buflist): When nconc'ing lists, don't
Gerd Moellmann <gerd@gnu.org>
parents:
34208
diff
changeset
|
860 (selected-frame))))))) |
4308e62b25c8
(iswitchb-make-buflist): When nconc'ing lists, don't
Gerd Moellmann <gerd@gnu.org>
parents:
34208
diff
changeset
|
861 (setq iswitchb-temp-buflist |
4308e62b25c8
(iswitchb-make-buflist): When nconc'ing lists, don't
Gerd Moellmann <gerd@gnu.org>
parents:
34208
diff
changeset
|
862 (nconc iswitchb-temp-buflist iswitchb-current-buffers)) |
17616 | 863 (run-hooks 'iswitchb-make-buflist-hook) |
35570
4308e62b25c8
(iswitchb-make-buflist): When nconc'ing lists, don't
Gerd Moellmann <gerd@gnu.org>
parents:
34208
diff
changeset
|
864 ;; Should this be after the hooks, or should the hooks be the |
20470
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
865 ;; final thing to be run? |
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
866 (if default |
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
867 (progn |
31797 | 868 (setq iswitchb-temp-buflist |
22380
2645c2c3829f
(iswitchb-require-match, iswitchb-temp-buflist, iswitchb-bufs-in-frame):
Stephen Eglen <stephen@gnu.org>
parents:
22354
diff
changeset
|
869 (delete default iswitchb-temp-buflist)) |
31797 | 870 (setq iswitchb-temp-buflist |
22380
2645c2c3829f
(iswitchb-require-match, iswitchb-temp-buflist, iswitchb-bufs-in-frame):
Stephen Eglen <stephen@gnu.org>
parents:
22354
diff
changeset
|
871 (cons default iswitchb-temp-buflist)))) |
2645c2c3829f
(iswitchb-require-match, iswitchb-temp-buflist, iswitchb-bufs-in-frame):
Stephen Eglen <stephen@gnu.org>
parents:
22354
diff
changeset
|
872 iswitchb-temp-buflist))) |
17616 | 873 |
18776
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
874 (defun iswitchb-to-end (lst) |
22380
2645c2c3829f
(iswitchb-require-match, iswitchb-temp-buflist, iswitchb-bufs-in-frame):
Stephen Eglen <stephen@gnu.org>
parents:
22354
diff
changeset
|
875 "Move the elements from LST to the end of `iswitchb-temp-buflist'." |
63436
eca4e949db45
(iswitchb-to-end): Replace mapcar with dolist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63075
diff
changeset
|
876 (dolist (elem lst) |
eca4e949db45
(iswitchb-to-end): Replace mapcar with dolist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63075
diff
changeset
|
877 (setq iswitchb-temp-buflist (delq elem iswitchb-temp-buflist))) |
35570
4308e62b25c8
(iswitchb-make-buflist): When nconc'ing lists, don't
Gerd Moellmann <gerd@gnu.org>
parents:
34208
diff
changeset
|
878 (setq iswitchb-temp-buflist (nconc iswitchb-temp-buflist lst))) |
17616 | 879 |
880 (defun iswitchb-get-buffers-in-frames (&optional current) | |
881 "Return the list of buffers that are visible in the current frame. | |
31797 | 882 If optional argument CURRENT is given, restrict searching to the |
17616 | 883 current frame, rather than all frames, regardless of value of |
884 `iswitchb-all-frames'." | |
885 (let ((iswitchb-bufs-in-frame nil)) | |
886 (walk-windows 'iswitchb-get-bufname nil | |
31797 | 887 (if current |
17616 | 888 nil |
889 iswitchb-all-frames)) | |
890 iswitchb-bufs-in-frame)) | |
891 | |
892 (defun iswitchb-get-bufname (win) | |
893 "Used by `iswitchb-get-buffers-in-frames' to walk through all windows." | |
18928
fff55212f6a7
(iswitchb-get-bufname): Only add buffer of current
Richard M. Stallman <rms@gnu.org>
parents:
18776
diff
changeset
|
894 (let ((buf (buffer-name (window-buffer win)))) |
fff55212f6a7
(iswitchb-get-bufname): Only add buffer of current
Richard M. Stallman <rms@gnu.org>
parents:
18776
diff
changeset
|
895 (if (not (member buf iswitchb-bufs-in-frame)) |
fff55212f6a7
(iswitchb-get-bufname): Only add buffer of current
Richard M. Stallman <rms@gnu.org>
parents:
18776
diff
changeset
|
896 ;; Only add buf if it is not already in list. |
fff55212f6a7
(iswitchb-get-bufname): Only add buffer of current
Richard M. Stallman <rms@gnu.org>
parents:
18776
diff
changeset
|
897 ;; This prevents same buf in two different windows being |
fff55212f6a7
(iswitchb-get-bufname): Only add buffer of current
Richard M. Stallman <rms@gnu.org>
parents:
18776
diff
changeset
|
898 ;; put into the list twice. |
fff55212f6a7
(iswitchb-get-bufname): Only add buffer of current
Richard M. Stallman <rms@gnu.org>
parents:
18776
diff
changeset
|
899 (setq iswitchb-bufs-in-frame |
fff55212f6a7
(iswitchb-get-bufname): Only add buffer of current
Richard M. Stallman <rms@gnu.org>
parents:
18776
diff
changeset
|
900 (cons buf iswitchb-bufs-in-frame))))) |
17616 | 901 |
902 ;;; FIND MATCHING BUFFERS | |
903 | |
904 (defun iswitchb-set-matches () | |
905 "Set `iswitchb-matches' to the list of buffers matching prompt." | |
906 (if iswitchb-rescan | |
907 (setq iswitchb-matches | |
21706
a0c3ee34362d
Only require cl if cadr and last are not defined (thanks to Dave Love.)
Stephen Eglen <stephen@gnu.org>
parents:
21326
diff
changeset
|
908 (let* ((buflist iswitchb-buflist)) |
18776
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
909 (iswitchb-get-matched-buffers iswitchb-text iswitchb-regexp |
55434
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
910 buflist)) |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
911 iswitchb-virtual-buffers nil))) |
17616 | 912 |
18776
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
913 (defun iswitchb-get-matched-buffers (regexp |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
914 &optional string-format buffer-list) |
21326 | 915 "Return buffers matching REGEXP. |
916 If STRING-FORMAT is nil, consider REGEXP as just a string. | |
17617 | 917 BUFFER-LIST can be list of buffers or list of strings." |
63436
eca4e949db45
(iswitchb-to-end): Replace mapcar with dolist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63075
diff
changeset
|
918 (let* ((case-fold-search (iswitchb-case)) |
eca4e949db45
(iswitchb-to-end): Replace mapcar with dolist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63075
diff
changeset
|
919 name ret) |
eca4e949db45
(iswitchb-to-end): Replace mapcar with dolist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63075
diff
changeset
|
920 (if (null string-format) (setq regexp (regexp-quote regexp))) |
63012
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
921 (setq iswitchb-invalid-regexp nil) |
63436
eca4e949db45
(iswitchb-to-end): Replace mapcar with dolist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63075
diff
changeset
|
922 (condition-case error |
eca4e949db45
(iswitchb-to-end): Replace mapcar with dolist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63075
diff
changeset
|
923 (dolist (x buffer-list (nreverse ret)) |
eca4e949db45
(iswitchb-to-end): Replace mapcar with dolist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63075
diff
changeset
|
924 (setq name (if (stringp x) x (buffer-name x))) |
eca4e949db45
(iswitchb-to-end): Replace mapcar with dolist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63075
diff
changeset
|
925 (when (and (string-match regexp name) |
eca4e949db45
(iswitchb-to-end): Replace mapcar with dolist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63075
diff
changeset
|
926 (not (iswitchb-ignore-buffername-p name))) |
eca4e949db45
(iswitchb-to-end): Replace mapcar with dolist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63075
diff
changeset
|
927 (push name ret))) |
eca4e949db45
(iswitchb-to-end): Replace mapcar with dolist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63075
diff
changeset
|
928 (invalid-regexp |
eca4e949db45
(iswitchb-to-end): Replace mapcar with dolist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63075
diff
changeset
|
929 (setq iswitchb-invalid-regexp t) |
eca4e949db45
(iswitchb-to-end): Replace mapcar with dolist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63075
diff
changeset
|
930 (cdr error))))) |
17616 | 931 |
932 (defun iswitchb-ignore-buffername-p (bufname) | |
933 "Return t if the buffer BUFNAME should be ignored." | |
934 (let ((data (match-data)) | |
935 (re-list iswitchb-buffer-ignore) | |
936 ignorep | |
21706
a0c3ee34362d
Only require cl if cadr and last are not defined (thanks to Dave Love.)
Stephen Eglen <stephen@gnu.org>
parents:
21326
diff
changeset
|
937 nextstr) |
17616 | 938 (while re-list |
939 (setq nextstr (car re-list)) | |
940 (cond | |
941 ((stringp nextstr) | |
942 (if (string-match nextstr bufname) | |
943 (progn | |
944 (setq ignorep t) | |
945 (setq re-list nil)))) | |
65833
fca34be2db31
(iswitchb-buffer-ignore): Label it risky.
Richard M. Stallman <rms@gnu.org>
parents:
65582
diff
changeset
|
946 ((functionp nextstr) |
17616 | 947 (if (funcall nextstr bufname) |
948 (progn | |
949 (setq ignorep t) | |
21706
a0c3ee34362d
Only require cl if cadr and last are not defined (thanks to Dave Love.)
Stephen Eglen <stephen@gnu.org>
parents:
21326
diff
changeset
|
950 (setq re-list nil))))) |
17616 | 951 (setq re-list (cdr re-list))) |
21156
cbdbd307fdb7
(iswitchb-ignore-buffername-p): store-match-data => set-match-data.
Richard M. Stallman <rms@gnu.org>
parents:
21058
diff
changeset
|
952 (set-match-data data) |
17616 | 953 |
954 ;; return the result | |
21706
a0c3ee34362d
Only require cl if cadr and last are not defined (thanks to Dave Love.)
Stephen Eglen <stephen@gnu.org>
parents:
21326
diff
changeset
|
955 ignorep)) |
17616 | 956 |
957 (defun iswitchb-word-matching-substring (word) | |
958 "Return part of WORD before 1st match to `iswitchb-change-word-sub'. | |
959 If `iswitchb-change-word-sub' cannot be found in WORD, return nil." | |
28619
79fd94833204
(iswitchb-case): New function. If the user input
Gerd Moellmann <gerd@gnu.org>
parents:
27497
diff
changeset
|
960 (let ((case-fold-search (iswitchb-case))) |
17616 | 961 (let ((m (string-match iswitchb-change-word-sub word))) |
962 (if m | |
963 (substring word m) | |
964 ;; else no match | |
965 nil)))) | |
966 | |
967 (defun iswitchb-find-common-substring (lis subs) | |
968 "Return common string following SUBS in each element of LIS." | |
969 (let (res | |
970 alist | |
21706
a0c3ee34362d
Only require cl if cadr and last are not defined (thanks to Dave Love.)
Stephen Eglen <stephen@gnu.org>
parents:
21326
diff
changeset
|
971 iswitchb-change-word-sub) |
17616 | 972 (setq iswitchb-change-word-sub |
973 (if iswitchb-regexp | |
974 subs | |
975 (regexp-quote subs))) | |
976 (setq res (mapcar 'iswitchb-word-matching-substring lis)) | |
20470
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
977 (setq res (delq nil res)) ;; remove any nil elements (shouldn't happen) |
17616 | 978 (setq alist (mapcar 'iswitchb-makealist res)) ;; could use an OBARRAY |
979 | |
980 ;; try-completion returns t if there is an exact match. | |
28619
79fd94833204
(iswitchb-case): New function. If the user input
Gerd Moellmann <gerd@gnu.org>
parents:
27497
diff
changeset
|
981 (let ((completion-ignore-case (iswitchb-case))) |
17616 | 982 |
21706
a0c3ee34362d
Only require cl if cadr and last are not defined (thanks to Dave Love.)
Stephen Eglen <stephen@gnu.org>
parents:
21326
diff
changeset
|
983 (try-completion subs alist)))) |
17616 | 984 |
985 (defun iswitchb-makealist (res) | |
986 "Return dotted pair (RES . 1)." | |
987 (cons res 1)) | |
988 | |
989 ;; from Wayne Mesard <wmesard@esd.sgi.com> | |
990 (defun iswitchb-rotate-list (lis) | |
31797 | 991 "Destructively remove the last element from LIS. |
17616 | 992 Return the modified list with the last element prepended to it." |
993 (if (<= (length lis) 1) | |
994 lis | |
995 (let ((las lis) | |
996 (prev lis)) | |
997 (while (consp (cdr las)) | |
998 (setq prev las | |
999 las (cdr las))) | |
1000 (setcdr prev nil) | |
21706
a0c3ee34362d
Only require cl if cadr and last are not defined (thanks to Dave Love.)
Stephen Eglen <stephen@gnu.org>
parents:
21326
diff
changeset
|
1001 (cons (car las) lis)))) |
17616 | 1002 |
1003 (defun iswitchb-completion-help () | |
41287
eeb1c0923d4f
(iswitchb-mode): Use define-minor-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41273
diff
changeset
|
1004 "Show possible completions in a *Completions* buffer." |
17616 | 1005 ;; we could allow this buffer to be used to select match, but I think |
18776
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
1006 ;; choose-completion-string will need redefining, so it just inserts |
31797 | 1007 ;; choice with out any previous input. |
17616 | 1008 (interactive) |
18776
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
1009 (setq iswitchb-rescan nil) |
41287
eeb1c0923d4f
(iswitchb-mode): Use define-minor-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41273
diff
changeset
|
1010 (let ((buf (current-buffer)) |
eeb1c0923d4f
(iswitchb-mode): Use define-minor-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41273
diff
changeset
|
1011 (temp-buf "*Completions*") |
eeb1c0923d4f
(iswitchb-mode): Use define-minor-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41273
diff
changeset
|
1012 (win)) |
20470
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
1013 |
63012
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
1014 (if (and (eq last-command this-command) |
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
1015 (not iswitchb-common-match-inserted)) |
20470
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
1016 ;; scroll buffer |
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
1017 (progn |
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
1018 (set-buffer temp-buf) |
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
1019 (setq win (get-buffer-window temp-buf)) |
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
1020 (if (pos-visible-in-window-p (point-max) win) |
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
1021 (set-window-start win (point-min)) |
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
1022 (scroll-other-window)) |
21706
a0c3ee34362d
Only require cl if cadr and last are not defined (thanks to Dave Love.)
Stephen Eglen <stephen@gnu.org>
parents:
21326
diff
changeset
|
1023 (set-buffer buf)) |
49597
e88404e8f2cf
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47622
diff
changeset
|
1024 |
20470
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
1025 (with-output-to-temp-buffer temp-buf |
51660
a7765f7f8c9e
(iswitchb-read-buffer): Remove redudant variable
Stephen Eglen <stephen@gnu.org>
parents:
51366
diff
changeset
|
1026 (if (featurep 'xemacs) |
49597
e88404e8f2cf
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47622
diff
changeset
|
1027 |
20470
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
1028 ;; XEmacs extents are put on by default, doesn't seem to be |
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
1029 ;; any way of switching them off. |
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
1030 (display-completion-list (if iswitchb-matches |
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
1031 iswitchb-matches |
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
1032 iswitchb-buflist) |
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
1033 :help-string "iswitchb " |
31797 | 1034 :activate-callback |
1035 (lambda (x y z) | |
1036 (message "doesn't work yet, sorry!"))) | |
20470
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
1037 ;; else running Emacs |
31797 | 1038 (with-current-buffer standard-output |
1039 (fundamental-mode)) | |
20470
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
1040 (display-completion-list (if iswitchb-matches |
31797 | 1041 iswitchb-matches |
63012
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
1042 iswitchb-buflist)))) |
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
1043 (setq iswitchb-common-match-inserted nil)))) |
20470
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
1044 |
18776
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
1045 ;;; KILL CURRENT BUFFER |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
1046 |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
1047 (defun iswitchb-kill-buffer () |
20470
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
1048 "Kill the buffer at the head of `iswitchb-matches'." |
18776
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
1049 (interactive) |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
1050 (let ( (enable-recursive-minibuffers t) |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
1051 buf) |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
1052 |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
1053 (setq buf (car iswitchb-matches)) |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
1054 ;; check to see if buf is non-nil. |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
1055 (if buf |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
1056 (progn |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
1057 (kill-buffer buf) |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
1058 |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
1059 ;; Check if buffer exists. XEmacs gnuserv.el makes alias |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
1060 ;; for kill-buffer which does not return t if buffer is |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
1061 ;; killed, so we can't rely on kill-buffer return value. |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
1062 (if (get-buffer buf) |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
1063 ;; buffer couldn't be killed. |
31797 | 1064 (setq iswitchb-rescan t) |
18776
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
1065 ;; else buffer was killed so remove name from list. |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
1066 (setq iswitchb-buflist (delq buf iswitchb-buflist))))))) |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
1067 |
17616 | 1068 ;;; VISIT CHOSEN BUFFER |
1069 (defun iswitchb-visit-buffer (buffer) | |
1070 "Visit buffer named BUFFER according to `iswitchb-method'." | |
1071 (let* (win newframe) | |
1072 (cond | |
1073 ((eq iswitchb-method 'samewindow) | |
1074 (switch-to-buffer buffer)) | |
1075 | |
1076 ((memq iswitchb-method '(always-frame maybe-frame)) | |
1077 (cond | |
1078 ((and (setq win (iswitchb-window-buffer-p buffer)) | |
1079 (or (eq iswitchb-method 'always-frame) | |
1080 (y-or-n-p "Jump to frame? "))) | |
1081 (setq newframe (window-frame win)) | |
51660
a7765f7f8c9e
(iswitchb-read-buffer): Remove redudant variable
Stephen Eglen <stephen@gnu.org>
parents:
51366
diff
changeset
|
1082 (if (fboundp 'select-frame-set-input-focus) |
41926
8748b5403232
(iswitchb-visit-buffer): Use `select-frame-set-input-focus'.
Richard M. Stallman <rms@gnu.org>
parents:
41534
diff
changeset
|
1083 (select-frame-set-input-focus newframe) |
8748b5403232
(iswitchb-visit-buffer): Use `select-frame-set-input-focus'.
Richard M. Stallman <rms@gnu.org>
parents:
41534
diff
changeset
|
1084 (raise-frame newframe) |
8748b5403232
(iswitchb-visit-buffer): Use `select-frame-set-input-focus'.
Richard M. Stallman <rms@gnu.org>
parents:
41534
diff
changeset
|
1085 (select-frame newframe) |
8748b5403232
(iswitchb-visit-buffer): Use `select-frame-set-input-focus'.
Richard M. Stallman <rms@gnu.org>
parents:
41534
diff
changeset
|
1086 ) |
8748b5403232
(iswitchb-visit-buffer): Use `select-frame-set-input-focus'.
Richard M. Stallman <rms@gnu.org>
parents:
41534
diff
changeset
|
1087 (select-window win)) |
17616 | 1088 (t |
1089 ;; No buffer in other frames... | |
1090 (switch-to-buffer buffer) | |
1091 ))) | |
1092 | |
1093 ((eq iswitchb-method 'otherwindow) | |
1094 (switch-to-buffer-other-window buffer)) | |
1095 | |
17618
8d33666b1152
(iswitchb-visit-buffer): Handle `display' alternative.
Richard M. Stallman <rms@gnu.org>
parents:
17617
diff
changeset
|
1096 ((eq iswitchb-method 'display) |
8d33666b1152
(iswitchb-visit-buffer): Handle `display' alternative.
Richard M. Stallman <rms@gnu.org>
parents:
17617
diff
changeset
|
1097 (display-buffer buffer)) |
8d33666b1152
(iswitchb-visit-buffer): Handle `display' alternative.
Richard M. Stallman <rms@gnu.org>
parents:
17617
diff
changeset
|
1098 |
17616 | 1099 ((eq iswitchb-method 'otherframe) |
1100 (progn | |
1101 (switch-to-buffer-other-frame buffer) | |
51660
a7765f7f8c9e
(iswitchb-read-buffer): Remove redudant variable
Stephen Eglen <stephen@gnu.org>
parents:
51366
diff
changeset
|
1102 (if (fboundp 'select-frame-set-input-focus) |
41926
8748b5403232
(iswitchb-visit-buffer): Use `select-frame-set-input-focus'.
Richard M. Stallman <rms@gnu.org>
parents:
41534
diff
changeset
|
1103 (select-frame-set-input-focus (selected-frame))) |
21706
a0c3ee34362d
Only require cl if cadr and last are not defined (thanks to Dave Love.)
Stephen Eglen <stephen@gnu.org>
parents:
21326
diff
changeset
|
1104 ))))) |
17616 | 1105 |
1106 (defun iswitchb-possible-new-buffer (buf) | |
1107 "Possibly create and visit a new buffer called BUF." | |
1108 | |
1109 (let ((newbufcreated)) | |
1110 (if (and iswitchb-newbuffer | |
1111 (or | |
1112 (not iswitchb-prompt-newbuffer) | |
49597
e88404e8f2cf
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47622
diff
changeset
|
1113 |
17616 | 1114 (and iswitchb-prompt-newbuffer |
1115 (y-or-n-p | |
1116 (format | |
1117 "No buffer matching `%s', create one? " | |
1118 buf))))) | |
1119 ;; then create a new buffer | |
1120 (progn | |
1121 (setq newbufcreated (get-buffer-create buf)) | |
1122 (if (fboundp 'set-buffer-major-mode) | |
1123 (set-buffer-major-mode newbufcreated)) | |
1124 (iswitchb-visit-buffer newbufcreated)) | |
1125 ;; else wont create new buffer | |
65582
4d1085b02d64
Message format spec fixes (1)
Deepak Goel <deego@gnufans.org>
parents:
64762
diff
changeset
|
1126 (message "no buffer matching `%s'" buf)))) |
17616 | 1127 |
1128 (defun iswitchb-window-buffer-p (buffer) | |
17617 | 1129 "Return window pointer if BUFFER is visible in another frame. |
1130 If BUFFER is visible in the current frame, return nil." | |
17616 | 1131 (interactive) |
1132 (let ((blist (iswitchb-get-buffers-in-frames 'current))) | |
1133 ;;If the buffer is visible in current frame, return nil | |
1134 (if (memq buffer blist) | |
1135 nil | |
20470
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
1136 ;; maybe in other frame or icon |
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
1137 (get-buffer-window buffer 0) ; better than 'visible |
17616 | 1138 ))) |
1139 | |
1140 (defun iswitchb-default-keybindings () | |
17617 | 1141 "Set up default keybindings for `iswitchb-buffer'. |
24820
788dc6ff04da
Add iswitchb-minibuffer-setup to minibuffer-setup-hook in
Stephen Eglen <stephen@gnu.org>
parents:
23785
diff
changeset
|
1142 Call this function to override the normal bindings. This function also |
31797 | 1143 adds a hook to the minibuffer. |
1144 | |
1145 Obsolescent. Use `iswitchb-mode'." | |
17616 | 1146 (interactive) |
24820
788dc6ff04da
Add iswitchb-minibuffer-setup to minibuffer-setup-hook in
Stephen Eglen <stephen@gnu.org>
parents:
23785
diff
changeset
|
1147 (add-hook 'minibuffer-setup-hook 'iswitchb-minibuffer-setup) |
26155
6f7db3f3698d
iswitchb-default-keybindings: no-need for read-kbd-macro.
Stephen Eglen <stephen@gnu.org>
parents:
26065
diff
changeset
|
1148 (global-set-key "\C-xb" 'iswitchb-buffer) |
6f7db3f3698d
iswitchb-default-keybindings: no-need for read-kbd-macro.
Stephen Eglen <stephen@gnu.org>
parents:
26065
diff
changeset
|
1149 (global-set-key "\C-x4b" 'iswitchb-buffer-other-window) |
6f7db3f3698d
iswitchb-default-keybindings: no-need for read-kbd-macro.
Stephen Eglen <stephen@gnu.org>
parents:
26065
diff
changeset
|
1150 (global-set-key "\C-x4\C-o" 'iswitchb-display-buffer) |
6f7db3f3698d
iswitchb-default-keybindings: no-need for read-kbd-macro.
Stephen Eglen <stephen@gnu.org>
parents:
26065
diff
changeset
|
1151 (global-set-key "\C-x5b" 'iswitchb-buffer-other-frame)) |
17616 | 1152 |
1153 (defun iswitchb-buffer () | |
1154 "Switch to another buffer. | |
1155 | |
1156 The buffer name is selected interactively by typing a substring. The | |
1157 buffer is displayed according to `iswitchb-default-method' -- the | |
1158 default is to show it in the same window, unless it is already visible | |
17617 | 1159 in another frame. |
1160 For details of keybindings, do `\\[describe-function] iswitchb'." | |
17616 | 1161 (interactive) |
1162 (setq iswitchb-method iswitchb-default-method) | |
20470
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
1163 (iswitchb)) |
17616 | 1164 |
1165 (defun iswitchb-buffer-other-window () | |
1166 "Switch to another buffer and show it in another window. | |
1167 The buffer name is selected interactively by typing a substring. | |
17617 | 1168 For details of keybindings, do `\\[describe-function] iswitchb'." |
17616 | 1169 (interactive) |
1170 (setq iswitchb-method 'otherwindow) | |
20470
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
1171 (iswitchb)) |
17616 | 1172 |
17618
8d33666b1152
(iswitchb-visit-buffer): Handle `display' alternative.
Richard M. Stallman <rms@gnu.org>
parents:
17617
diff
changeset
|
1173 (defun iswitchb-display-buffer () |
8d33666b1152
(iswitchb-visit-buffer): Handle `display' alternative.
Richard M. Stallman <rms@gnu.org>
parents:
17617
diff
changeset
|
1174 "Display a buffer in another window but don't select it. |
8d33666b1152
(iswitchb-visit-buffer): Handle `display' alternative.
Richard M. Stallman <rms@gnu.org>
parents:
17617
diff
changeset
|
1175 The buffer name is selected interactively by typing a substring. |
8d33666b1152
(iswitchb-visit-buffer): Handle `display' alternative.
Richard M. Stallman <rms@gnu.org>
parents:
17617
diff
changeset
|
1176 For details of keybindings, do `\\[describe-function] iswitchb'." |
8d33666b1152
(iswitchb-visit-buffer): Handle `display' alternative.
Richard M. Stallman <rms@gnu.org>
parents:
17617
diff
changeset
|
1177 (interactive) |
8d33666b1152
(iswitchb-visit-buffer): Handle `display' alternative.
Richard M. Stallman <rms@gnu.org>
parents:
17617
diff
changeset
|
1178 (setq iswitchb-method 'display) |
20470
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
1179 (iswitchb)) |
17618
8d33666b1152
(iswitchb-visit-buffer): Handle `display' alternative.
Richard M. Stallman <rms@gnu.org>
parents:
17617
diff
changeset
|
1180 |
17616 | 1181 (defun iswitchb-buffer-other-frame () |
1182 "Switch to another buffer and show it in another frame. | |
1183 The buffer name is selected interactively by typing a substring. | |
17617 | 1184 For details of keybindings, do `\\[describe-function] iswitchb'." |
17616 | 1185 (interactive) |
1186 (setq iswitchb-method 'otherframe) | |
1187 (iswitchb)) | |
1188 | |
18776
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
1189 ;;; XEmacs hack for showing default buffer |
17616 | 1190 |
1191 ;; The first time we enter the minibuffer, Emacs puts up the default | |
20470
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
1192 ;; buffer to switch to, but XEmacs doesn't -- presumably there is a |
18776
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
1193 ;; subtle difference in the two versions of post-command-hook. The |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
1194 ;; default is shown for both whenever we delete all of our text |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
1195 ;; though, indicating its just a problem the first time we enter the |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
1196 ;; function. To solve this, we use another entry hook for emacs to |
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
1197 ;; show the default the first time we enter the minibuffer. |
17616 | 1198 |
21326 | 1199 (defun iswitchb-init-XEmacs-trick () |
17617 | 1200 "Display default buffer when first entering minibuffer. |
1201 This is a hack for XEmacs, and should really be handled by `iswitchb-exhibit'." | |
17616 | 1202 (if (iswitchb-entryfn-p) |
1203 (progn | |
18776
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
1204 (iswitchb-exhibit) |
17616 | 1205 (goto-char (point-min))))) |
1206 | |
18776
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
1207 ;; add this hook for XEmacs only. |
51660
a7765f7f8c9e
(iswitchb-read-buffer): Remove redudant variable
Stephen Eglen <stephen@gnu.org>
parents:
51366
diff
changeset
|
1208 (if (featurep 'xemacs) |
31797 | 1209 (add-hook 'iswitchb-minibuffer-setup-hook |
21326 | 1210 'iswitchb-init-XEmacs-trick)) |
17616 | 1211 |
18776
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
1212 ;;; XEmacs / backspace key |
20470
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
1213 ;; For some reason, if the backspace key is pressed in XEmacs, the |
17616 | 1214 ;; line gets confused, so I've added a simple key definition to make |
31797 | 1215 ;; backspace act like the normal delete key. |
17616 | 1216 |
1217 (defun iswitchb-xemacs-backspacekey () | |
1218 "Bind backspace to `backward-delete-char'." | |
1219 (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>
parents:
21326
diff
changeset
|
1220 (define-key iswitchb-mode-map '[(meta backspace)] 'backward-kill-word)) |
17616 | 1221 |
51660
a7765f7f8c9e
(iswitchb-read-buffer): Remove redudant variable
Stephen Eglen <stephen@gnu.org>
parents:
51366
diff
changeset
|
1222 (if (featurep 'xemacs) |
31797 | 1223 (add-hook 'iswitchb-define-mode-map-hook |
17616 | 1224 'iswitchb-xemacs-backspacekey)) |
1225 | |
1226 ;;; ICOMPLETE TYPE CODE | |
1227 | |
1228 (defun iswitchb-exhibit () | |
17617 | 1229 "Find matching buffers and display a list in the minibuffer. |
17616 | 1230 Copied from `icomplete-exhibit' with two changes: |
1231 1. It prints a default buffer name when there is no text yet entered. | |
1232 2. It calls my completion routine rather than the standard completion." | |
1233 (if iswitchb-use-mycompletion | |
26065
852cd4f88b37
(iswitchb-exhibit): Extract user-input only
Gerd Moellmann <gerd@gnu.org>
parents:
25855
diff
changeset
|
1234 (let ((contents (buffer-substring (minibuffer-prompt-end) (point-max))) |
17616 | 1235 (buffer-undo-list t)) |
1236 (save-excursion | |
1237 (goto-char (point-max)) | |
1238 ; Register the end of input, so we | |
1239 ; know where the extra stuff | |
1240 ; (match-status info) begins: | |
1241 (if (not (boundp 'iswitchb-eoinput)) | |
1242 ;; In case it got wiped out by major mode business: | |
1243 (make-local-variable 'iswitchb-eoinput)) | |
1244 (setq iswitchb-eoinput (point)) | |
1245 ;; Update the list of matches | |
1246 (setq iswitchb-text contents) | |
1247 (iswitchb-set-matches) | |
1248 (setq iswitchb-rescan t) | |
1249 (iswitchb-set-common-completion) | |
1250 | |
1251 ;; Insert the match-status information: | |
49597
e88404e8f2cf
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47622
diff
changeset
|
1252 (insert (iswitchb-completions |
63012
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
1253 contents)))))) |
17616 | 1254 |
55434
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
1255 (eval-when-compile |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
1256 (defvar most-len) |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
1257 (defvar most-is-exact)) |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
1258 |
54956
d0e2ba105b5a
2004-04-17 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
53805
diff
changeset
|
1259 (defun iswitchb-output-completion (com) |
d0e2ba105b5a
2004-04-17 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
53805
diff
changeset
|
1260 (if (= (length com) most-len) |
d0e2ba105b5a
2004-04-17 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
53805
diff
changeset
|
1261 ;; Most is one exact match, |
d0e2ba105b5a
2004-04-17 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
53805
diff
changeset
|
1262 ;; note that and leave out |
d0e2ba105b5a
2004-04-17 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
53805
diff
changeset
|
1263 ;; for later indication: |
d0e2ba105b5a
2004-04-17 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
53805
diff
changeset
|
1264 (ignore |
d0e2ba105b5a
2004-04-17 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
53805
diff
changeset
|
1265 (setq most-is-exact t)) |
d0e2ba105b5a
2004-04-17 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
53805
diff
changeset
|
1266 (substring com most-len))) |
d0e2ba105b5a
2004-04-17 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
53805
diff
changeset
|
1267 |
63012
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
1268 (defun iswitchb-completions (name) |
17616 | 1269 "Return the string that is displayed after the user's text. |
1270 Modified from `icomplete-completions'." | |
49597
e88404e8f2cf
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47622
diff
changeset
|
1271 |
17616 | 1272 (let ((comps iswitchb-matches) |
1273 ; "-determined" - only one candidate | |
63012
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
1274 (open-bracket-determined "[") |
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
1275 (close-bracket-determined "]") |
17616 | 1276 ;"-prospects" - more than one candidate |
1277 (open-bracket-prospects "{") | |
1278 (close-bracket-prospects "}") | |
21706
a0c3ee34362d
Only require cl if cadr and last are not defined (thanks to Dave Love.)
Stephen Eglen <stephen@gnu.org>
parents:
21326
diff
changeset
|
1279 first) |
17616 | 1280 |
63012
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
1281 (if (and iswitchb-use-faces comps) |
17616 | 1282 (progn |
1283 (setq first (car comps)) | |
1284 (setq first (format "%s" first)) | |
1285 (put-text-property 0 (length first) 'face | |
31797 | 1286 (if (= (length comps) 1) |
63012
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
1287 (if iswitchb-invalid-regexp |
63075
7e902750d940
2005-06-06 Matt Hodges <MPHodges@member.fsf.org>
Kim F. Storm <storm@cua.dk>
parents:
63012
diff
changeset
|
1288 'iswitchb-invalid-regexp |
7e902750d940
2005-06-06 Matt Hodges <MPHodges@member.fsf.org>
Kim F. Storm <storm@cua.dk>
parents:
63012
diff
changeset
|
1289 'iswitchb-single-match) |
7e902750d940
2005-06-06 Matt Hodges <MPHodges@member.fsf.org>
Kim F. Storm <storm@cua.dk>
parents:
63012
diff
changeset
|
1290 'iswitchb-current-match) |
31797 | 1291 first) |
21706
a0c3ee34362d
Only require cl if cadr and last are not defined (thanks to Dave Love.)
Stephen Eglen <stephen@gnu.org>
parents:
21326
diff
changeset
|
1292 (setq comps (cons first (cdr comps))))) |
17616 | 1293 |
55434
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
1294 ;; If no buffers matched, and virtual buffers are being used, then |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
1295 ;; consult the list of past visited files, to see if we can find |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
1296 ;; the file which the user might thought was still open. |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
1297 (when (and iswitchb-use-virtual-buffers (null comps) |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
1298 recentf-list) |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
1299 (setq iswitchb-virtual-buffers nil) |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
1300 (let ((head recentf-list) name) |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
1301 (while head |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
1302 (if (and (setq name (file-name-nondirectory (car head))) |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
1303 (string-match (if iswitchb-regexp |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
1304 iswitchb-text |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
1305 (regexp-quote iswitchb-text)) name) |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
1306 (null (get-file-buffer (car head))) |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
1307 (not (assoc name iswitchb-virtual-buffers)) |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
1308 (not (iswitchb-ignore-buffername-p name)) |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
1309 (file-exists-p (car head))) |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
1310 (setq iswitchb-virtual-buffers |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
1311 (cons (cons name (car head)) |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
1312 iswitchb-virtual-buffers))) |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
1313 (setq head (cdr head))) |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
1314 (setq iswitchb-virtual-buffers (nreverse iswitchb-virtual-buffers) |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
1315 comps (mapcar 'car iswitchb-virtual-buffers)) |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
1316 (let ((comp comps)) |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
1317 (while comp |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
1318 (put-text-property 0 (length (car comp)) |
63075
7e902750d940
2005-06-06 Matt Hodges <MPHodges@member.fsf.org>
Kim F. Storm <storm@cua.dk>
parents:
63012
diff
changeset
|
1319 'face 'iswitchb-virtual-matches |
55434
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
1320 (car comp)) |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
1321 (setq comp (cdr comp)))))) |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
1322 |
17616 | 1323 (cond ((null comps) (format " %sNo match%s" |
1324 open-bracket-determined | |
1325 close-bracket-determined)) | |
1326 | |
63012
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
1327 (iswitchb-invalid-regexp |
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
1328 (concat " " (car comps))) |
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
1329 ((null (cdr comps)) ;one match |
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
1330 (concat |
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
1331 (if (if (not iswitchb-regexp) |
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
1332 (= (length name) |
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
1333 (length (car comps))) |
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
1334 (string-match name (car comps)) |
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
1335 (string-equal (match-string 0 (car comps)) |
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
1336 (car comps))) |
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
1337 "" |
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
1338 (concat open-bracket-determined |
31797 | 1339 ;; when there is one match, show the |
17616 | 1340 ;; matching buffer name in full |
1341 (car comps) | |
63012
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
1342 close-bracket-determined)) |
3ae2519a0cfd
(iswitchb-single-match-face)
Eli Zaretskii <eliz@gnu.org>
parents:
63002
diff
changeset
|
1343 (if (not iswitchb-use-faces) " [Matched]"))) |
17616 | 1344 (t ;multiple matches |
54956
d0e2ba105b5a
2004-04-17 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
53805
diff
changeset
|
1345 (if (and iswitchb-max-to-show |
d0e2ba105b5a
2004-04-17 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
53805
diff
changeset
|
1346 (> (length comps) iswitchb-max-to-show)) |
d0e2ba105b5a
2004-04-17 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
53805
diff
changeset
|
1347 (setq comps |
d0e2ba105b5a
2004-04-17 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
53805
diff
changeset
|
1348 (append |
54967
8456893f6790
2004-04-18 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
54956
diff
changeset
|
1349 (let ((res nil) |
8456893f6790
2004-04-18 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
54956
diff
changeset
|
1350 (comp comps) |
8456893f6790
2004-04-18 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
54956
diff
changeset
|
1351 (end (/ iswitchb-max-to-show 2))) |
8456893f6790
2004-04-18 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
54956
diff
changeset
|
1352 (while (>= (setq end (1- end)) 0) |
8456893f6790
2004-04-18 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
54956
diff
changeset
|
1353 (setq res (cons (car comp) res) |
8456893f6790
2004-04-18 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
54956
diff
changeset
|
1354 comp (cdr comp))) |
8456893f6790
2004-04-18 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
54956
diff
changeset
|
1355 (nreverse res)) |
54956
d0e2ba105b5a
2004-04-17 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
53805
diff
changeset
|
1356 (list "...") |
54967
8456893f6790
2004-04-18 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
54956
diff
changeset
|
1357 (nthcdr (- (length comps) |
8456893f6790
2004-04-18 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
54956
diff
changeset
|
1358 (/ iswitchb-max-to-show 2)) comps)))) |
17616 | 1359 (let* ( |
1360 ;;(most (try-completion name candidates predicate)) | |
1361 (most nil) | |
1362 (most-len (length most)) | |
1363 most-is-exact | |
55434
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
1364 (alternatives |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
1365 (mapconcat (if most 'iswitchb-output-completion |
f88632e54afb
2004-05-08 John Wiegley <johnw@newartisans.com>
John Wiegley <johnw@newartisans.com>
parents:
55373
diff
changeset
|
1366 'identity) comps ","))) |
17616 | 1367 |
1368 (concat | |
1369 | |
1370 ;; put in common completion item -- what you get by | |
1371 ;; pressing tab | |
47622
b604605851ea
(iswitchb-completions): Test that iswitchb-common-match-string is a
Stephen Eglen <stephen@gnu.org>
parents:
44557
diff
changeset
|
1372 (if (and (stringp iswitchb-common-match-string) |
b604605851ea
(iswitchb-completions): Test that iswitchb-common-match-string is a
Stephen Eglen <stephen@gnu.org>
parents:
44557
diff
changeset
|
1373 (> (length iswitchb-common-match-string) (length name))) |
17616 | 1374 (concat open-bracket-determined |
31797 | 1375 (substring iswitchb-common-match-string |
17616 | 1376 (length name)) |
21706
a0c3ee34362d
Only require cl if cadr and last are not defined (thanks to Dave Love.)
Stephen Eglen <stephen@gnu.org>
parents:
21326
diff
changeset
|
1377 close-bracket-determined)) |
17616 | 1378 ;; end of partial matches... |
1379 | |
1380 ;; think this bit can be ignored. | |
1381 (and (> most-len (length name)) | |
1382 (concat open-bracket-determined | |
1383 (substring most (length name)) | |
1384 close-bracket-determined)) | |
49597
e88404e8f2cf
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47622
diff
changeset
|
1385 |
17616 | 1386 ;; list all alternatives |
1387 open-bracket-prospects | |
1388 (if most-is-exact | |
1389 (concat "," alternatives) | |
1390 alternatives) | |
21706
a0c3ee34362d
Only require cl if cadr and last are not defined (thanks to Dave Love.)
Stephen Eglen <stephen@gnu.org>
parents:
21326
diff
changeset
|
1391 close-bracket-prospects)))))) |
17616 | 1392 |
1393 (defun iswitchb-minibuffer-setup () | |
17617 | 1394 "Set up minibuffer for `iswitchb-buffer'. |
1395 Copied from `icomplete-minibuffer-setup-hook'." | |
41287
eeb1c0923d4f
(iswitchb-mode): Use define-minor-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41273
diff
changeset
|
1396 (when (iswitchb-entryfn-p) |
eeb1c0923d4f
(iswitchb-mode): Use define-minor-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41273
diff
changeset
|
1397 (set (make-local-variable 'iswitchb-use-mycompletion) t) |
eeb1c0923d4f
(iswitchb-mode): Use define-minor-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41273
diff
changeset
|
1398 (add-hook 'pre-command-hook 'iswitchb-pre-command nil t) |
eeb1c0923d4f
(iswitchb-mode): Use define-minor-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41273
diff
changeset
|
1399 (add-hook 'post-command-hook 'iswitchb-post-command nil t) |
eeb1c0923d4f
(iswitchb-mode): Use define-minor-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41273
diff
changeset
|
1400 (run-hooks 'iswitchb-minibuffer-setup-hook))) |
17616 | 1401 |
1402 (defun iswitchb-pre-command () | |
17617 | 1403 "Run before command in `iswitchb-buffer'." |
17616 | 1404 (iswitchb-tidy)) |
1405 | |
1406 (defun iswitchb-post-command () | |
17617 | 1407 "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>
parents:
21326
diff
changeset
|
1408 (iswitchb-exhibit)) |
17616 | 1409 |
1410 (defun iswitchb-tidy () | |
1411 "Remove completions display, if any, prior to new user input. | |
1412 Copied from `icomplete-tidy'." | |
1413 | |
1414 (if (and (boundp 'iswitchb-eoinput) | |
1415 iswitchb-eoinput) | |
49597
e88404e8f2cf
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47622
diff
changeset
|
1416 |
17616 | 1417 (if (> iswitchb-eoinput (point-max)) |
1418 ;; Oops, got rug pulled out from under us - reinit: | |
1419 (setq iswitchb-eoinput (point-max)) | |
1420 (let ((buffer-undo-list buffer-undo-list )) ; prevent entry | |
1421 (delete-region iswitchb-eoinput (point-max)))) | |
49597
e88404e8f2cf
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47622
diff
changeset
|
1422 |
17616 | 1423 ;; Reestablish the local variable 'cause minibuffer-setup is weird: |
1424 (make-local-variable 'iswitchb-eoinput) | |
1425 (setq iswitchb-eoinput 1))) | |
1426 | |
1427 (defun iswitchb-entryfn-p () | |
30527
876c0335dead
(iswitchb-entryfn-p): Test this-command instead
Gerd Moellmann <gerd@gnu.org>
parents:
28859
diff
changeset
|
1428 "Return non-nil if we are using `iswitchb-buffer'." |
33818
42ed3c6a1d89
(iswitchb-minibuf-depth): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
32288
diff
changeset
|
1429 (eq iswitchb-minibuf-depth (minibuffer-depth))) |
20470
4d8e07123564
(iswitchb-completion-help): Multiple TAB presses
Karl Heuer <kwzh@gnu.org>
parents:
18929
diff
changeset
|
1430 |
17616 | 1431 (defun iswitchb-summaries-to-end () |
17617 | 1432 "Move the summaries to the end of the list. |
1433 This is an example function which can be hooked on to | |
1434 `iswitchb-make-buflist-hook'. Any buffer matching the regexps | |
1435 `Summary' or `output\*$'are put to the end of the list." | |
31797 | 1436 (let ((summaries (delq nil |
1437 (mapcar | |
1438 (lambda (x) | |
1439 (if (string-match "Summary\\|output\\*$" x) | |
1440 x)) | |
1441 iswitchb-temp-buflist)))) | |
18776
61751ba33c8f
All user variables now converted to custom.
Richard M. Stallman <rms@gnu.org>
parents:
17619
diff
changeset
|
1442 (iswitchb-to-end summaries))) |
17616 | 1443 |
28619
79fd94833204
(iswitchb-case): New function. If the user input
Gerd Moellmann <gerd@gnu.org>
parents:
27497
diff
changeset
|
1444 (defun iswitchb-case () |
79fd94833204
(iswitchb-case): New function. If the user input
Gerd Moellmann <gerd@gnu.org>
parents:
27497
diff
changeset
|
1445 "Return non-nil iff we should ignore case when matching. |
79fd94833204
(iswitchb-case): New function. If the user input
Gerd Moellmann <gerd@gnu.org>
parents:
27497
diff
changeset
|
1446 See the variable `iswitchb-case' for details." |
79fd94833204
(iswitchb-case): New function. If the user input
Gerd Moellmann <gerd@gnu.org>
parents:
27497
diff
changeset
|
1447 (if iswitchb-case |
51660
a7765f7f8c9e
(iswitchb-read-buffer): Remove redudant variable
Stephen Eglen <stephen@gnu.org>
parents:
51366
diff
changeset
|
1448 (if (featurep 'xemacs) |
28619
79fd94833204
(iswitchb-case): New function. If the user input
Gerd Moellmann <gerd@gnu.org>
parents:
27497
diff
changeset
|
1449 (isearch-no-upper-case-p iswitchb-text) |
79fd94833204
(iswitchb-case): New function. If the user input
Gerd Moellmann <gerd@gnu.org>
parents:
27497
diff
changeset
|
1450 (isearch-no-upper-case-p iswitchb-text t)))) |
79fd94833204
(iswitchb-case): New function. If the user input
Gerd Moellmann <gerd@gnu.org>
parents:
27497
diff
changeset
|
1451 |
31797 | 1452 ;;;###autoload |
41287
eeb1c0923d4f
(iswitchb-mode): Use define-minor-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41273
diff
changeset
|
1453 (define-minor-mode iswitchb-mode |
31797 | 1454 "Toggle Iswitchb global minor mode. |
1455 With arg, turn Iswitchb mode on if and only iff ARG is positive. | |
1456 This mode enables switching between buffers using substrings. See | |
1457 `iswitchb' for details." | |
41287
eeb1c0923d4f
(iswitchb-mode): Use define-minor-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41273
diff
changeset
|
1458 nil nil iswitchb-global-map :global t :group 'iswitchb |
31797 | 1459 (if iswitchb-mode |
1460 (add-hook 'minibuffer-setup-hook 'iswitchb-minibuffer-setup) | |
41287
eeb1c0923d4f
(iswitchb-mode): Use define-minor-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41273
diff
changeset
|
1461 (remove-hook 'minibuffer-setup-hook 'iswitchb-minibuffer-setup))) |
31797 | 1462 |
17616 | 1463 (provide 'iswitchb) |
1464 | |
63436
eca4e949db45
(iswitchb-to-end): Replace mapcar with dolist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63075
diff
changeset
|
1465 ;; arch-tag: d74198ae-753f-44f2-b34f-0c515398d90a |
17617 | 1466 ;;; iswitchb.el ends here |