root/branches/2.1/lisp/bs.el

Revision 3212, 55.4 kB (checked in by miyoshi, 5 years ago)

Sync up with Emacs-21.3.

  • Property svn:eol-style set to LF
Line 
1 ;;; bs.el --- menu for selecting and displaying buffers
2
3 ;; Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
4 ;; Author: Olaf Sylvester <Olaf.Sylvester@netsurf.de>
5 ;; Maintainer: Olaf Sylvester <Olaf.Sylvester@netsurf.de>
6 ;; Keywords: convenience
7
8 ;; This file is part of GNU Emacs.
9
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
13 ;; any later version.
14
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 ;; GNU General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
24
25 ;;; Commentary:
26
27 ;; Version: 1.17
28 ;; X-URL: http://home.netsurf.de/olaf.sylvester/emacs
29 ;;
30 ;; The bs-package contains a main function bs-show for poping up a
31 ;; buffer in a way similar to `list-buffers' and `electric-buffer-list':
32 ;; The new buffer offers a Buffer Selection Menu for manipulating
33 ;; the buffer list and buffers.
34 ;;
35 ;; -----------------------------------------------------------------------
36 ;; | MR Buffer          Size  Mode          File                         |
37 ;; | -- ------          ----  ----          ----                         |
38 ;; |.   bs.el           14690  Emacs-Lisp    /home/sun/sylvester/el/bs.e$|
39 ;; |  % executable.el    9429  Emacs-Lisp    /usr/share/emacs/19.34/lisp$|
40 ;; |  % vc.el          104893  Emacs-Lisp    /usr/share/emacs/19.34/lisp$|
41 ;; |  % test_vc.el        486  Emacs-Lisp    /home/sun/sylvester/el/test$|
42 ;; |  % vc-hooks.el     43605  Emacs-Lisp    /usr/share/emacs/19.34/lisp$|
43 ;; -----------------------------------------------------------------------
44
45 ;;; Quick Installation und Customization:
46
47 ;; Use
48 ;;   M-x bs-show
49 ;; for buffer selection or optional bind a key to main function `bs-show'
50 ;;   (global-set-key "\C-x\C-b" 'bs-show)    ;; or another key
51 ;;
52 ;; For customization use
53 ;; M-x bs-customize
54
55
56 ;;; More Commentary:
57
58 ;; bs-show will generate a new buffer named *buffer-selection*, which shows
59 ;; all buffers or a subset of them, and has possibilities for deleting,
60 ;; saving and selecting buffers. For more details see docstring of
61 ;; function `bs-mode'. A current configuration describes which buffers appear
62 ;; in *buffer-selection*. See docstring of variable `bs-configurations' for
63 ;; more details.
64 ;;
65 ;; The package bs combines the advantages of the Emacs functions
66 ;; `list-buffers' and `electric-buffer-list'.
67 ;;
68 ;; Additional features for Buffer Selection Menu:
69 ;;  - configurable list of buffers (show only files etc.).
70 ;;  - comfortable way to change displayed subset of all buffers.
71 ;;  - show sorted list of buffers.
72 ;;  - cyclic navigation:
73 ;;     - goes to top of buffer list if you are on last line and press down.
74 ;;     - goes to end of buffer list if you are on first line and press up.
75 ;;  - Offer an alternative buffer list by prefix key C-u.
76
77 ;;; Cycling through buffers
78
79 ;; This package offers two functions for buffer cycling. If you want to cycle
80 ;; through buffer list you can use `bs-cycle-next' or `bs-cycle-previous'.
81 ;; Bind these function to a key like
82 ;;   (global-set-key [(f9)]   'bs-cycle-previous)
83 ;;   (global-set-key [(f10)]  'bs-cycle-next)
84 ;;
85 ;; Both functions use a special subset of all buffers for cycling to avoid
86 ;; to go through internal buffers like *Messages*.
87 ;;
88 ;; Cycling through buffers ignores sorting because sorting destroys
89 ;; the logical buffer list. If buffer list is sorted by size you
90 ;; won't be able to cycle to the smallest buffer.
91
92 ;;; Customization:
93
94 ;; There is a customization group called `bs' in group `convenience'.
95 ;; Start customization by M-x bs-customize
96 ;;
97 ;; Buffer list
98 ;; -----------
99 ;; You can define your own configurations by extending variable
100 ;; `bs-configurations' (see docstring for details).
101 ;;
102 ;; `bs-default-configuration' contains the name of default configuration.
103 ;; The default value is "files" which means to show only files.
104 ;;
105 ;; If you always want to see all buffers, customize variable
106 ;; `bs-default-configuration' in customization group `bs'.
107 ;;
108 ;; Configure sorting
109 ;; -----------------
110 ;; You can define functions for sorting the buffer list.
111 ;; When selecting buffers, you can step through available sorting
112 ;; methods with key 'S'.
113 ;; To define a new way of sorting, customize variable `bs-sort-functions'.
114 ;;
115 ;; There are four basic functions for sorting:
116 ;;   by buffer name, by mode, by size, or by filename
117 ;;
118 ;; Configure buffer cycling
119 ;; ------------------------
120 ;; When cycling through buffer list the functions for cycling will use
121 ;; the current configuration of bs to calculate the buffer list.
122 ;; If you want to use a different configuration for cycling you have to set
123 ;; the variable `bs-cycle-configuration-name'. You can customize this variable.
124 ;;
125 ;; For example: If you use the configuration called "files-and-scratch" you
126 ;; can cycle through all file buffers and *scratch* although your current
127 ;; configuration perhaps is "files" which ignores buffer *scratch*.
128
129 ;;; History:
130
131 ;;; Code:
132
133 ;; ----------------------------------------------------------------------
134 ;; Globals for customization
135 ;; ----------------------------------------------------------------------
136
137 (defgroup bs nil
138   "Buffer Selection: Maintaining buffers by buffer menu."
139   :version "21.1"
140   :link '(emacs-commentary-link "bs")
141   :link '(url-link "http://home.netsurf.de/olaf.sylvester/emacs")
142   :group 'convenience)
143
144 (defgroup bs-appearance nil
145   "Buffer Selection appearance: Appearance of bs buffer menu."
146   :group 'bs)
147
148 (defcustom bs-attributes-list
149   '((""       1   1 left  bs--get-marked-string)
150     ("M"      1   1 left  bs--get-modified-string)
151     ("R"      2   2 left  bs--get-readonly-string)
152     ("Buffer" bs--get-name-length 10 left  bs--get-name)
153     (""       1   1 left  " ")
154     ("Size"   8   8 right bs--get-size-string)
155     (""       1   1 left  " ")
156     ("Mode"   12 12 right bs--get-mode-name)
157     (""       2   2 left  "  ")
158     ("File"   12 12 left  bs--get-file-name)
159     (""       2   2 left  "  "))
160   "*List specifying the layout of a Buffer Selection Menu buffer.
161 Each entry specifies a column and is a list of the form of:
162 \(HEADER MINIMUM-LENGTH MAXIMUM-LENGTH ALIGNMENT FUN-OR-STRING)
163 HEADER         : string for header for first line or a function
164   which calculates column title.
165 MINIMUM-LENGTH : minimum width of column (number or name of function).
166   The function must return a positive integer.
167 MAXIMUM-LENGTH : maximum width of column (number or name of function)
168                  (currently ignored)
169 ALIGNMENT      : alignment of column: (`left' `right' `middle')
170 FUN-OR-STRING  : Name of a function for calculating the value or
171 a string for a constant value.
172 The function gets as parameter the buffer where we have started
173 buffer selection and the list of all buffers to show.  The function must
174 return a string representing the column's value."
175   :group 'bs-appearance
176   :type '(repeat sexp))
177
178 (defvar bs--running-in-xemacs (string-match "XEmacs" (emacs-version))
179   "Non-nil when running under XEmacs.")
180
181 (defun bs--make-header-match-string ()
182   "Return a regexp matching the first line of a Buffer Selection Menu buffer."
183   (let ((res "^\\(")
184         (ele bs-attributes-list))
185     (while ele
186       (setq res (concat res (car (car ele)) " *"))
187       (setq ele (cdr ele)))
188     (concat res "$\\)")))
189
190 ;;; Font-Lock-Settings
191 (defvar bs-mode-font-lock-keywords
192   (list ;; header in font-lock-type-face
193    (list (bs--make-header-match-string)
194          '(1 font-lock-type-face append) '(1 'bold append))
195    ;; Buffername embedded by *
196    (list "^\\(.*\\*.*\\*.*\\)$"
197          1
198          ;; problem in XEmacs with font-lock-constant-face
199          (if (facep 'font-lock-constant-face)
200              'font-lock-constant-face
201            'font-lock-comment-face))
202    ;; Dired-Buffers
203    '("^..\\(.*Dired by .*\\)$" 1 font-lock-function-name-face)
204    ;; the star for modified buffers
205    '("^.\\(\\*\\) +[^\\*]"     1 font-lock-comment-face))
206   "Default font lock expressions for Buffer Selection Menu.")
207
208 (defcustom bs-max-window-height 20
209   "*Maximal window height of Buffer Selection Menu."
210   :group 'bs-appearance
211   :type 'integer)
212
213 (defvar bs-dont-show-regexp nil
214   "Regular expression specifying which buffers not to show.
215 A buffer whose name matches this regular expression will not be
216 included in the buffer list.")
217
218 (defvar bs-must-show-regexp nil
219   "Regular expression for specifying buffers which must be shown.
220 A buffer whose name matches this regular expression will be
221 included in the buffer list.
222 Note that this variable is temporary: if the configuration is changed
223 it is reset to nil.  Use `bs-must-always-show-regexp' to specify buffers
224 that must always be shown regardless of the configuration.")
225
226 (defcustom bs-must-always-show-regexp nil
227   "*Regular expression for specifying buffers to show always.
228 A buffer whose name matches this regular expression will
229 be shown regardless of current configuration of Buffer Selection Menu."
230   :group 'bs
231   :type '(choice (const :tag "Nothing at all" nil) regexp))
232
233 (defvar bs-dont-show-function nil
234   "Function for specifying buffers not to show.
235 The function gets one argument - the buffer to test.  The function must
236 return a value different from nil to ignore the buffer in
237 Buffer Selection Menu.")
238
239 (defvar bs-must-show-function nil
240   "Function for specifying buffers which must be shown.
241 The function gets one argument - the buffer to test.")
242
243 (defvar bs-buffer-sort-function nil
244   "Sort function to sort the buffers that appear in Buffer Selection Menu.
245 The function gets two arguments - the buffers to compare.")
246
247 (defcustom bs-maximal-buffer-name-column 45
248   "*Maximum column width for buffer names.
249 The column for buffer names has dynamic width.  The width depends on
250 maximal and minimal length of names of buffers to show.  The maximal
251 width is bounded by `bs-maximal-buffer-name-column'.
252 See also `bs-minimal-buffer-name-column'."
253   :group 'bs-appearance
254   :type 'integer)
255
256 (defcustom bs-minimal-buffer-name-column 15
257   "*Minimum column width for buffer names.
258 The column for buffer names has dynamic width.  The width depends on
259 maximal and minimal length of names of buffers to show.  The minimal
260 width is bounded by `bs-minimal-buffer-name-column'.
261 See also `bs-maximal-buffer-name-column'."
262   :group 'bs-appearance
263   :type 'integer)
264
265 (defconst bs-header-lines-length 2
266   "Number of lines for headers in Buffer Selection Menu.")
267
268 (defcustom bs-configurations
269   '(("all" nil nil nil nil nil)
270     ("files" nil nil nil bs-visits-non-file bs-sort-buffer-interns-are-last)
271     ("files-and-scratch" "^\\*scratch\\*$" nil nil bs-visits-non-file
272      bs-sort-buffer-interns-are-last)
273     ("all-intern-last" nil nil nil nil bs-sort-buffer-interns-are-last))
274   "*List of all configurations you can use in the Buffer Selection Menu.
275 A configuration describes which buffers appear in Buffer Selection Menu
276 and also the order of buffers.  A configuration is a list with
277 six elements.  The first element is a string and describes the configuration.
278 The following five elements represent the values for Buffer Selection Menu
279 configuration variables `bs-must-show-regexp', `bs-must-show-function',
280 `bs-dont-show-regexp', `bs-dont-show-function' and `bs-buffer-sort-function'.
281 By setting these variables you define a configuration."
282   :group 'bs-appearance
283   :type '(repeat sexp))
284
285 (defcustom bs-default-configuration "files"
286   "*Name of default configuration used by the Buffer Selection Menu.
287 \\<bs-mode-map>
288 Will be changed using key \\[bs-select-next-configuration].
289 Must be a string used in `bs-configurations' for naming a configuration."
290   :group 'bs
291   :type 'string)
292
293 (defcustom bs-alternative-configuration "all"
294   "*Name of configuration used when calling `bs-show' with \
295 \\[universal-argument] as prefix key.
296 Must be a string used in `bs-configurations' for naming a configuration."
297   :group 'bs
298   :type  'string)
299
300 (defvar bs-current-configuration bs-default-configuration
301   "Name of current configuration.
302 Must be a string used in `bs-configurations' for naming a configuration.")
303
304 (defcustom bs-cycle-configuration-name nil
305   "*Name of configuration used when cycling through the buffer list.
306 A value of nil means to use current configuration `bs-default-configuration'.
307 Must be a string used in `bs-configurations' for naming a configuration."
308   :group 'bs
309   :type '(choice (const :tag "like current configuration" nil)
310    string))
311
312 (defcustom bs-string-show-always "+"
313   "*String added in column 1 indicating a buffer will always be shown."
314   :group 'bs-appearance
315   :type 'string)
316
317 (defcustom bs-string-show-never "-"
318   "*String added in column 1 indicating a buffer will never be shown."
319   :group 'bs-appearance
320   :type 'string)
321
322 (defcustom bs-string-current "."
323   "*String added in column 1 indicating the current buffer."
324   :group 'bs-appearance
325   :type 'string)
326
327 (defcustom bs-string-current-marked "#"
328   "*String added in column 1 indicating the current buffer when it is marked."
329   :group 'bs-appearance
330   :type 'string)
331
332 (defcustom bs-string-marked ">"
333   "*String added in column 1 indicating a marked buffer."
334   :group 'bs-appearance
335   :type 'string)
336
337 (defcustom bs-string-show-normally  " "
338   "*String added in column 1 indicating a unmarked buffer."
339   :group 'bs-appearance
340   :type 'string)
341
342 (defvar bs--name-entry-length 20
343   "Maximum length of all displayed buffer names.
344 Used internally, only.")
345
346 ;; ----------------------------------------------------------------------
347 ;; Internal globals
348 ;; ----------------------------------------------------------------------
349
350 (defvar bs-buffer-show-mark nil
351   "Flag for the current mode for showing this buffer.
352 A value of nil means buffer will be shown depending on the current
353 configuration.
354 A value of `never' means to never show the buffer.
355 A value of `always' means to show buffer regardless of the configuration.")
356
357 (make-variable-buffer-local 'bs-buffer-show-mark)
358
359 ;; Make face named region (for XEmacs)
360 (unless (facep 'region)
361   (make-face 'region)
362   (set-face-background 'region "gray75"))
363
364 (defun bs--sort-by-name (b1 b2)
365   "Compare buffers B1 and B2 by buffer name."
366   (string< (buffer-name b1)
367            (buffer-name b2)))
368
369 (defun bs--sort-by-filename (b1 b2)
370   "Compare buffers B1 and B2 by file name."
371   (string< (or (buffer-file-name b1) "")
372            (or (buffer-file-name b2) "")))
373
374 (defun bs--sort-by-mode (b1 b2)
375   "Compare buffers B1 and B2 by mode name."
376   (save-excursion
377     (string< (progn (set-buffer b1) (format "%s" mode-name))
378              (progn (set-buffer b2) (format "%s" mode-name)))))
379
380 (defun bs--sort-by-size (b1 b2)
381   "Compare buffers B1 and B2 by buffer size."
382   (save-excursion
383     (< (progn (set-buffer b1) (buffer-size))
384        (progn (set-buffer b2) (buffer-size)))))
385
386 (defcustom bs-sort-functions
387   '(("by name"     bs--sort-by-name     "Buffer" region)
388     ("by size"     bs--sort-by-size     "Size"   region)
389     ("by mode"     bs--sort-by-mode     "Mode"   region)
390     ("by filename" bs--sort-by-filename "File"   region)
391     ("by nothing"  nil                  nil      nil))
392   "*List of all possible sorting aspects for Buffer Selection Menu.
393 You can add a new entry with a call to `bs-define-sort-function'.
394 Each element is a list of four elements (NAME FUNCTION REGEXP-FOR-SORTING FACE)
395 NAME specifies the sort order defined by function FUNCTION.
396 FUNCTION nil means don't sort the buffer list.  Otherwise the functions
397 must have two parameters - the buffers to compare.
398 REGEXP-FOR-SORTING is a regular expression which describes the
399 column title to highlight.
400 FACE is a face used to fontify the sorted column title.  A value of nil means
401 don't highlight."
402   :group 'bs
403   :type '(repeat sexp))
404
405 (defun bs-define-sort-function (name fun &optional regexp-for-sorting face)
406   "Define a new function for buffer sorting in Buffer Selection Menu.
407 NAME specifies the sort order defined by function FUN.
408 A value of nil for FUN means don't sort the buffer list.  Otherwise the
409 functions must have two parameters - the buffers to compare.
410 REGEXP-FOR-SORTING is a regular expression which describes the
411 column title to highlight.
412 FACE is a face used to fontify the sorted column title.  A value of nil means
413 don't highlight.
414 The new sort aspect will be inserted into list `bs-sort-functions'."
415   (let ((tupel (assoc name bs-sort-functions)))
416     (if tupel
417         (setcdr tupel (list fun regexp-for-sorting face))
418       (setq bs-sort-functions
419             (cons (list name fun regexp-for-sorting face)
420                   bs-sort-functions)))))
421
422 (defvar bs--current-sort-function nil
423   "Description of the current function for sorting the buffer list.
424 This is an element of `bs-sort-functions'.")
425
426 (defcustom bs-default-sort-name "by nothing"
427   "*Name of default sort behavior.
428 Must be \"by nothing\" or a string used in `bs-sort-functions' for
429 naming a sort behavior.  Default is \"by nothing\" which means no sorting."
430   :group 'bs
431   :type  'string
432   :set (lambda (var-name value)
433          (set var-name value)
434          (setq bs--current-sort-function
435                (assoc value bs-sort-functions))))
436
437 (defvar bs--buffer-coming-from nil
438   "The buffer in which the user started the current Buffer Selection Menu.")
439
440 (defvar bs--show-all nil
441   "Flag whether showing all buffers regardless of current configuration.
442 Non nil means to show all buffers.  Otherwise show buffers
443 defined by current configuration `bs-current-configuration'.")
444
445 (defvar bs--window-config-coming-from nil
446   "Window configuration before starting Buffer Selection Menu.")
447
448 (defvar bs--intern-show-never "^ \\|\\*buffer-selection\\*"
449   "Regular expression specifying which buffers never to show.
450 A buffer whose name matches this regular expression will never be
451 included in the buffer list.")
452
453 (defvar bs-current-list nil
454   "List of buffers shown in Buffer Selection Menu.
455 Used internally, only.")
456
457 (defvar bs--marked-buffers nil
458   "Currently marked buffers in Buffer Selection Menu.")
459
460 (defvar bs-mode-map ()
461   "Keymap of `bs-mode'.")
462
463 (if bs-mode-map
464     ()
465   (setq bs-mode-map (make-sparse-keymap))
466   (define-key bs-mode-map " "       'bs-select)
467   (define-key bs-mode-map "f"       'bs-select)
468   (define-key bs-mode-map "v"       'bs-view)
469   (define-key bs-mode-map "!"       'bs-select-in-one-window)
470   (define-key bs-mode-map [mouse-2] 'bs-mouse-select) ;; for GNU EMACS
471   (define-key bs-mode-map [button2] 'bs-mouse-select) ;; for XEmacs
472   (define-key bs-mode-map "F"       'bs-select-other-frame)
473
474   (let ((key ?1))
475     (while (<= key ?9)
476       (define-key bs-mode-map (char-to-string key) 'digit-argument)
477       (setq key (1+ key))))
478
479   (define-key bs-mode-map "-"       'negative-argument)
480   (define-key bs-mode-map "\e-"     'negative-argument)
481
482   (define-key bs-mode-map "o"       'bs-select-other-window)
483   (define-key bs-mode-map "\C-o"    'bs-tmp-select-other-window)
484   ;; for GNU EMACS
485   (define-key bs-mode-map [mouse-3] 'bs-mouse-select-other-frame)
486   ;; for XEmacs
487   (define-key bs-mode-map [button3] 'bs-mouse-select-other-frame)
488   (define-key bs-mode-map [up]      'bs-up)
489   (define-key bs-mode-map "n"       'bs-down)
490   (define-key bs-mode-map "p"       'bs-up)
491   (define-key bs-mode-map [down]    'bs-down)
492   (define-key bs-mode-map "\C-m"    'bs-select)
493   (define-key bs-mode-map "b"       'bs-bury-buffer)
494   (define-key bs-mode-map "s"       'bs-save)
495   (define-key bs-mode-map "S"       'bs-show-sorted)
496   (define-key bs-mode-map "a"       'bs-toggle-show-all)
497   (define-key bs-mode-map "d"       'bs-delete)
498   (define-key bs-mode-map "\C-d"    'bs-delete-backward)
499   (define-key bs-mode-map "k"       'bs-delete)
500   (define-key bs-mode-map "g"       'bs-refresh)
501   (define-key bs-mode-map "C"       'bs-set-configuration-and-refresh)
502   (define-key bs-mode-map "c"       'bs-select-next-configuration)
503   (define-key bs-mode-map "q"       'bs-kill)
504   ;; (define-key bs-mode-map "z"       'bs-kill)
505   (define-key bs-mode-map "\C-c\C-c" 'bs-kill)
506   (define-key bs-mode-map "\C-g"    'bs-abort)
507   (define-key bs-mode-map "\C-]"    'bs-abort)
508   (define-key bs-mode-map "%"       'bs-toggle-readonly)
509   (define-key bs-mode-map "~"       'bs-clear-modified)
510   (define-key bs-mode-map "M"       'bs-toggle-current-to-show)
511   (define-key bs-mode-map "+"       'bs-set-current-buffer-to-show-always)
512   ;;(define-key bs-mode-map "-"       'bs-set-current-buffer-to-show-never)
513   (define-key bs-mode-map "t"       'bs-visit-tags-table)
514   (define-key bs-mode-map "m"       'bs-mark-current)
515   (define-key bs-mode-map "u"       'bs-unmark-current)
516   (define-key bs-mode-map ">"       'scroll-right)
517   (define-key bs-mode-map "<"       'scroll-left)
518   (define-key bs-mode-map "\e\e"    nil)
519   (define-key bs-mode-map "\e\e\e"  'bs-kill)
520   (define-key bs-mode-map [escape escape escape] 'bs-kill)
521   (define-key bs-mode-map "?"       'bs-help))
522
523 ;; ----------------------------------------------------------------------
524 ;; Functions
525 ;; ----------------------------------------------------------------------
526
527 (defun bs-buffer-list (&optional list sort-description)
528   "Return a list of buffers to be shown.
529 LIST is a list of buffers to test for appearance in Buffer Selection Menu.
530 The result list depends on the global variables `bs-dont-show-regexp',
531 `bs-must-show-regexp', `bs-dont-show-function', `bs-must-show-function'
532 and `bs-buffer-sort-function'.
533 If SORT-DESCRIPTION isn't nil the list will be sorted by
534 a special function.  SORT-DESCRIPTION is an element of `bs-sort-functions'."
535   (setq sort-description (or sort-description bs--current-sort-function)
536         list (or list (buffer-list)))
537   (let ((result nil))
538     (while list
539       (let* ((buffername (buffer-name (car list)))
540              (int-show-never (string-match bs--intern-show-never buffername))
541              (ext-show-never (and bs-dont-show-regexp
542                                   (string-match bs-dont-show-regexp
543                                                 buffername)))
544              (extern-must-show (or (and bs-must-always-show-regexp
545                                         (string-match
546                                          bs-must-always-show-regexp
547                                          buffername))
548                                    (and bs-must-show-regexp
549                                         (string-match bs-must-show-regexp
550                                                       buffername))))
551              (extern-show-never-from-fun (and bs-dont-show-function
552                                               (funcall bs-dont-show-function
553                                                        (car list))))
554              (extern-must-show-from-fun (and bs-must-show-function
555                                              (funcall bs-must-show-function
556                                                       (car list))))
557              (show-flag (save-excursion
558                           (set-buffer (car list))
559                           bs-buffer-show-mark)))
560         (if (or (eq show-flag 'always)
561                 (and (or bs--show-all (not (eq show-flag 'never)))
562                      (not int-show-never)
563                      (or bs--show-all
564                          extern-must-show
565                          extern-must-show-from-fun
566                          (and (not ext-show-never)
567                               (not extern-show-never-from-fun)))))
568             (setq result (cons (car list)
569                                result)))
570         (setq list (cdr list))))
571     (setq result (reverse result))
572     ;; The current buffer which was the start point of bs should be an element
573     ;; of result list, so that we can leave with space and be back in the
574     ;; buffer we started bs-show.
575     (if (and bs--buffer-coming-from
576              (buffer-live-p bs--buffer-coming-from)
577              (not (memq bs--buffer-coming-from result)))
578         (setq result (cons bs--buffer-coming-from result)))
579     ;; sorting
580     (if (and sort-description
581              (nth 1 sort-description))
582         (setq result (sort result (nth 1 sort-description)))
583       ;; else standard sorting
584       (bs-buffer-sort result))))
585
586 (defun bs-buffer-sort (buffer-list)
587   "Sort buffers in BUFFER-LIST according to `bs-buffer-sort-function'."
588   (if bs-buffer-sort-function
589       (sort buffer-list bs-buffer-sort-function)
590     buffer-list))
591
592 (defun bs--redisplay (&optional keep-line-p sort-description)
593   "Redisplay whole Buffer Selection Menu.
594 If KEEP-LINE-P is non nil the point will stay on current line.
595 SORT-DESCRIPTION is an element of `bs-sort-functions'"
596   (let ((line (1+ (count-lines 1 (point)))))
597     (bs-show-in-buffer (bs-buffer-list nil sort-description))
598     (if keep-line-p
599         (goto-line line))
600     (beginning-of-line)))
601
602 (defun bs--goto-current-buffer ()
603   "Goto line which represents the current buffer;
604 actually the line which begins with character in `bs-string-current' or
605 `bs-string-current-marked'."
606   (let ((regexp (concat "^"
607                         (regexp-quote bs-string-current)
608                         "\\|^"
609                         (regexp-quote bs-string-current-marked)))
610         point)
611     (save-excursion
612       (goto-char (point-min))
613       (if (search-forward-regexp regexp nil t)
614           (setq point (- (point) 1))))
615     (if point
616         (goto-char point))))
617
618 (defun bs--current-config-message ()
619   "Return a string describing the current `bs-mode' configuration."
620   (if bs--show-all
621       "Show all buffers."
622     (format "Show buffer by configuration %S"
623             bs-current-configuration)))
624
625 (defun bs-mode ()
626   "Major mode for editing a subset of Emacs' buffers.
627 \\<bs-mode-map>
628 Aside from two header lines each line describes one buffer.
629 Move to a line representing the buffer you want to edit and select
630 buffer by \\[bs-select] or SPC. Abort buffer list with \\[bs-kill].
631 There are many key commands similar to `Buffer-menu-mode' for
632 manipulating the buffer list and buffers.
633 For faster navigation each digit key is a digit argument.
634
635 \\[bs-select] or SPACE -- select current line's buffer and other marked buffers.
636 \\[bs-toggle-show-all]  -- toggle between all buffers and a special subset.
637 \\[bs-select-other-window] -- select current line's buffer in other window.
638 \\[bs-tmp-select-other-window] -- make another window display that buffer and
639     remain in Buffer Selection Menu.
640 \\[bs-mouse-select] -- select current line's buffer and other marked buffers.
641 \\[bs-save] -- save current line's buffer immediatly.
642 \\[bs-delete] -- kill current line's buffer immediatly.
643 \\[bs-toggle-readonly] -- toggle read-only status of current line's buffer.
644 \\[bs-clear-modified] -- clear modified-flag on that buffer.
645 \\[bs-mark-current] -- mark current line's buffer to be displayed.
646 \\[bs-unmark-current] -- unmark current line's buffer to be displayed.
647 \\[bs-show-sorted] -- display buffer list sorted by next sort aspect.
648 \\[bs-set-configuration-and-refresh] -- ask user for a configuration and \
649 apply selected configuration.
650 \\[bs-select-next-configuration] -- select and apply next \
651 available Buffer Selection Menu configuration.
652 \\[bs-kill] -- leave Buffer Selection Menu without a selection.
653 \\[bs-toggle-current-to-show] -- toggle status of appearance.
654 \\[bs-set-current-buffer-to-show-always] -- mark current line's buffer \
655 to show always.
656 \\[bs-visit-tags-table] -- call `visit-tags-table' on current line's buffer.
657 \\[bs-help] -- display this help text."
658   (interactive)
659   (kill-all-local-variables)
660   (use-local-map bs-mode-map)
661   (make-local-variable 'font-lock-defaults)
662   (make-local-variable 'font-lock-verbose)
663   (setq major-mode 'bs-mode
664         mode-name "Buffer-Selection-Menu"
665         buffer-read-only t
666         truncate-lines t
667         font-lock-defaults '(bs-mode-font-lock-keywords t)
668         font-lock-verbose nil)
669   (run-hooks 'bs-mode-hook))
670
671 (defun bs-kill ()
672   "Let buffer disappear and reset window-configuration."
673   (interactive)
674   (bury-buffer (current-buffer))
675   (set-window-configuration bs--window-config-coming-from))
676
677 (defun bs-abort ()
678   "Ding and leave Buffer Selection Menu without a selection."
679   (interactive)
680   (ding)
681   (bs-kill))
682
683 (defun bs-set-configuration-and-refresh ()
684   "Ask user for a configuration and apply selected configuration.
685 Refresh whole Buffer Selection Menu."
686   (interactive)
687   (call-interactively 'bs-set-configuration)
688   (bs--redisplay t))
689
690 (defun bs-refresh ()
691   "Refresh whole Buffer Selection Menu."
692   (interactive)
693   (bs--redisplay t))
694
695 (defun bs--window-for-buffer (buffer-name)
696   "Return a window showing a buffer with name BUFFER-NAME.
697 Take only windows of current frame into account.
698 Return nil if there is no such buffer."
699   (let ((window nil))
700     (walk-windows (lambda (wind)
701                     (if (string= (buffer-name (window-buffer wind))
702                                  buffer-name)
703                         (setq window wind))))
704     window))
705
706 (defun bs--set-window-height ()
707   "Change the height of the selected window to suit the current buffer list."
708   (unless (one-window-p t)
709     (shrink-window (- (window-height (selected-window))
710                       ;; window-height in xemacs includes mode-line
711                       (+ (if bs--running-in-xemacs 3 1)
712                          bs-header-lines-length
713                          (min (length bs-current-list)
714                               bs-max-window-height))))))
715
716 (defun bs--current-buffer ()
717   "Return buffer on current line.
718 Raise an error if not on a buffer line."
719   (beginning-of-line)
720   (let ((line (+ (- bs-header-lines-length)
721                  (count-lines 1 (point)))))
722     (if (< line 0)
723         (error "You are on a header row"))
724     (nth line bs-current-list)))
725
726 (defun bs--update-current-line ()
727   "Update the entry on current line for Buffer Selection Menu."
728   (let ((buffer (bs--current-buffer))
729         (inhibit-read-only t))
730     (beginning-of-line)
731     (delete-region (point) (line-end-position))
732     (bs--insert-one-entry buffer)
733     (beginning-of-line)))
734
735 (defun bs-view ()
736   "View current line's buffer in View mode.
737 Leave Buffer Selection Menu."
738   (interactive)
739   (view-buffer (bs--current-buffer)))
740
741 (defun bs-select ()
742   "Select current line's buffer and other marked buffers.
743 If there are no marked buffers the window configuration before starting
744 Buffer Selectin Menu will be restored.
745 If there are marked buffers each marked buffer and the current line's buffer
746 will be selected in a window.
747 Leave Buffer Selection Menu."
748   (interactive)
749   (let ((buffer (bs--current-buffer)))
750     (bury-buffer (current-buffer))
751     (set-window-configuration bs--window-config-coming-from)
752     (switch-to-buffer buffer)
753     (if bs--marked-buffers
754         ;; Some marked buffers for selection
755         (let* ((all (delq buffer bs--marked-buffers))
756                (height (/ (1- (frame-height)) (1+ (length all)))))
757           (delete-other-windows)
758           (switch-to-buffer buffer)
759           (while all
760             (split-window nil height)
761             (other-window 1)
762             (switch-to-buffer (car all))
763             (setq all (cdr all)))
764           ;; goto window we have started bs.
765           (other-window 1)))))
766
767 (defun bs-select-other-window ()
768   "Select current line's buffer by `switch-to-buffer-other-window'.
769 The window configuration before starting Buffer Selectin Menu will be restored
770 unless there is no other window.  In this case a new window will be created.
771 Leave Buffer Selection Menu."
772   (interactive)
773   (let ((buffer (bs--current-buffer)))
774     (bury-buffer (current-buffer))
775     (set-window-configuration bs--window-config-coming-from)
776     (switch-to-buffer-other-window buffer)))
777
778 (defun bs-tmp-select-other-window ()
779   "Make the other window select this line's buffer.
780 The current window remains selected."
781   (interactive)
782   (let ((buffer (bs--current-buffer)))
783     (display-buffer buffer t)))
784
785 (defun bs-select-other-frame ()
786   "Select current line's buffer in new created frame.
787 Leave Buffer Selection Menu."
788   (interactive)
789   (let ((buffer (bs--current-buffer)))
790     (bury-buffer (current-buffer))
791     (set-window-configuration bs--window-config-coming-from)
792     (switch-to-buffer-other-frame buffer)))
793
794 (defun bs-mouse-select-other-frame (event)
795   "Select selected line's buffer in new created frame.
796 Leave Buffer Selection Menu.
797 EVENT: a mouse click EVENT."
798   (interactive "e")
799   (mouse-set-point event)
800   (bs-select-other-frame))
801
802 (defun bs-mouse-select (event)
803   "Select buffer on mouse click EVENT.
804 Select buffer by `bs-select'."
805   (interactive "e")
806   (mouse-set-point event)
807   (bs-select))
808
809 (defun bs-select-in-one-window ()
810   "Select current line's buffer in one window and delete other windows.
811 Leave Buffer Selection Menu."
812   (interactive)
813   (bs-select)
814   (delete-other-windows))
815
816 (defun bs-bury-buffer ()
817   "Bury buffer on current line."
818   (interactive)
819   (bury-buffer (bs--current-buffer))
820   (bs--redisplay t))
821
822 (defun bs-save ()
823   "Save buffer on current line."
824   (interactive)
825   (let ((buffer (bs--current-buffer)))
826     (save-excursion
827       (set-buffer buffer)