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