]> code.delx.au - gnu-emacs/blob - lisp/bs.el
(compilation-mode-map): Bind TAB to `compilation-next-error'
[gnu-emacs] / lisp / bs.el
1 ;;; bs.el --- menu for selecting and displaying buffers
2
3 ;; Copyright (C) 1998, 1999, 2000, 2001, 2004 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., 51 Franklin Street, Fifth Floor,
23 ;; Boston, MA 02110-1301, USA.
24
25 ;;; Commentary:
26
27 ;; Version: 1.17
28 ;; X-URL: http://www.geekware.de/software/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://www.geekware.de/software/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
164 HEADER : String for header for first line or a function
165 which calculates column title.
166 MINIMUM-LENGTH : Minimum width of column (number or name of function).
167 The function must return a positive integer.
168 MAXIMUM-LENGTH : Maximum width of column (number or name of function)
169 (currently ignored).
170 ALIGNMENT : Alignment of column (`left', `right', `middle').
171 FUN-OR-STRING : Name of a function for calculating the value or a
172 string for a constant value.
173
174 The function gets as parameter the buffer where we have started
175 buffer selection and the list of all buffers to show. The function must
176 return a string representing the column's value."
177 :group 'bs-appearance
178 :type '(repeat sexp))
179
180 (defvar bs--running-in-xemacs (string-match "XEmacs" (emacs-version))
181 "Non-nil when running under XEmacs.")
182
183 (defun bs--make-header-match-string ()
184 "Return a regexp matching the first line of a Buffer Selection Menu buffer."
185 (let ((res "^\\(")
186 (ele bs-attributes-list))
187 (while ele
188 (setq res (concat res (car (car ele)) " *"))
189 (setq ele (cdr ele)))
190 (concat res "$\\)")))
191
192 ;; Font-Lock-Settings
193 (defvar bs-mode-font-lock-keywords
194 (list ;; header in font-lock-type-face
195 (list (bs--make-header-match-string)
196 '(1 font-lock-type-face append) '(1 'bold append))
197 ;; Buffername embedded by *
198 (list "^\\(.*\\*.*\\*.*\\)$"
199 1
200 ;; problem in XEmacs with font-lock-constant-face
201 (if (facep 'font-lock-constant-face)
202 'font-lock-constant-face
203 'font-lock-comment-face))
204 ;; Dired-Buffers
205 '("^..\\(.*Dired by .*\\)$" 1 font-lock-function-name-face)
206 ;; the star for modified buffers
207 '("^.\\(\\*\\) +[^\\*]" 1 font-lock-comment-face))
208 "Default font lock expressions for Buffer Selection Menu.")
209
210 (defcustom bs-max-window-height 20
211 "*Maximal window height of Buffer Selection Menu."
212 :group 'bs-appearance
213 :type 'integer)
214
215 (defvar bs-dont-show-regexp nil
216 "Regular expression specifying which buffers not to show.
217 A buffer whose name matches this regular expression will not be
218 included in the buffer list.")
219
220 (defvar bs-must-show-regexp nil
221 "Regular expression for specifying buffers which must be shown.
222 A buffer whose name matches this regular expression will be
223 included in the buffer list.
224 Note that this variable is temporary: if the configuration is changed
225 it is reset to nil. Use `bs-must-always-show-regexp' to specify buffers
226 that must always be shown regardless of the configuration.")
227
228 (defcustom bs-must-always-show-regexp nil
229 "*Regular expression for specifying buffers to show always.
230 A buffer whose name matches this regular expression will
231 be shown regardless of current configuration of Buffer Selection Menu."
232 :group 'bs
233 :type '(choice (const :tag "Nothing at all" nil) regexp))
234
235 (defvar bs-dont-show-function nil
236 "Function for specifying buffers not to show.
237 The function gets one argument - the buffer to test. The function must
238 return a value different from nil to ignore the buffer in
239 Buffer Selection Menu.")
240
241 (defvar bs-must-show-function nil
242 "Function for specifying buffers which must be shown.
243 The function gets one argument - the buffer to test.")
244
245 (defvar bs-buffer-sort-function nil
246 "Sort function to sort the buffers that appear in Buffer Selection Menu.
247 The function gets two arguments - the buffers to compare.")
248
249 (defcustom bs-maximal-buffer-name-column 45
250 "*Maximum column width for buffer names.
251 The column for buffer names has dynamic width. The width depends on
252 maximal and minimal length of names of buffers to show. The maximal
253 width is bounded by `bs-maximal-buffer-name-column'.
254 See also `bs-minimal-buffer-name-column'."
255 :group 'bs-appearance
256 :type 'integer)
257
258 (defcustom bs-minimal-buffer-name-column 15
259 "*Minimum column width for buffer names.
260 The column for buffer names has dynamic width. The width depends on
261 maximal and minimal length of names of buffers to show. The minimal
262 width is bounded by `bs-minimal-buffer-name-column'.
263 See also `bs-maximal-buffer-name-column'."
264 :group 'bs-appearance
265 :type 'integer)
266
267 (defconst bs-header-lines-length 2
268 "Number of lines for headers in Buffer Selection Menu.")
269
270 (defcustom bs-configurations
271 '(("all" nil nil nil nil nil)
272 ("files" nil nil nil bs-visits-non-file bs-sort-buffer-interns-are-last)
273 ("files-and-scratch" "^\\*scratch\\*$" nil nil bs-visits-non-file
274 bs-sort-buffer-interns-are-last)
275 ("all-intern-last" nil nil nil nil bs-sort-buffer-interns-are-last))
276 "*List of all configurations you can use in the Buffer Selection Menu.
277 A configuration describes which buffers appear in Buffer Selection Menu
278 and also the order of buffers. A configuration is a list with
279 six elements. The first element is a string and describes the configuration.
280 The following five elements represent the values for Buffer Selection Menu
281 configuration variables `bs-must-show-regexp', `bs-must-show-function',
282 `bs-dont-show-regexp', `bs-dont-show-function' and `bs-buffer-sort-function'.
283 By setting these variables you define a configuration."
284 :group 'bs-appearance
285 :type '(repeat sexp))
286
287 (defcustom bs-default-configuration "files"
288 "*Name of default configuration used by the Buffer Selection Menu.
289 \\<bs-mode-map>
290 Will be changed using key \\[bs-select-next-configuration].
291 Must be a string used in `bs-configurations' for naming a configuration."
292 :group 'bs
293 :type 'string)
294
295 (defcustom bs-alternative-configuration "all"
296 "*Name of configuration used when calling `bs-show' with \
297 \\[universal-argument] as prefix key.
298 Must be a string used in `bs-configurations' for naming a configuration."
299 :group 'bs
300 :type 'string)
301
302 (defvar bs-current-configuration bs-default-configuration
303 "Name of current configuration.
304 Must be a string used in `bs-configurations' for naming a configuration.")
305
306 (defcustom bs-cycle-configuration-name nil
307 "*Name of configuration used when cycling through the buffer list.
308 A value of nil means to use current configuration `bs-default-configuration'.
309 Must be a string used in `bs-configurations' for naming a configuration."
310 :group 'bs
311 :type '(choice (const :tag "like current configuration" nil)
312 string))
313
314 (defcustom bs-string-show-always "+"
315 "*String added in column 1 indicating a buffer will always be shown."
316 :group 'bs-appearance
317 :type 'string)
318
319 (defcustom bs-string-show-never "-"
320 "*String added in column 1 indicating a buffer will never be shown."
321 :group 'bs-appearance
322 :type 'string)
323
324 (defcustom bs-string-current "."
325 "*String added in column 1 indicating the current buffer."
326 :group 'bs-appearance
327 :type 'string)
328
329 (defcustom bs-string-current-marked "#"
330 "*String added in column 1 indicating the current buffer when it is marked."
331 :group 'bs-appearance
332 :type 'string)
333
334 (defcustom bs-string-marked ">"
335 "*String added in column 1 indicating a marked buffer."
336 :group 'bs-appearance
337 :type 'string)
338
339 (defcustom bs-string-show-normally " "
340 "*String added in column 1 indicating a unmarked buffer."
341 :group 'bs-appearance
342 :type 'string)
343
344 (defvar bs--name-entry-length 20
345 "Maximum length of all displayed buffer names.
346 Used internally, only.")
347
348 ;; ----------------------------------------------------------------------
349 ;; Internal globals
350 ;; ----------------------------------------------------------------------
351
352 (defvar bs-buffer-show-mark nil
353 "Flag for the current mode for showing this buffer.
354 A value of nil means buffer will be shown depending on the current
355 configuration.
356 A value of `never' means to never show the buffer.
357 A value of `always' means to show buffer regardless of the configuration.")
358
359 (make-variable-buffer-local 'bs-buffer-show-mark)
360
361 ;; Make face named region (for XEmacs)
362 (unless (facep 'region)
363 (make-face 'region)
364 (set-face-background 'region "gray75"))
365
366 (defun bs--sort-by-name (b1 b2)
367 "Compare buffers B1 and B2 by buffer name."
368 (string< (buffer-name b1)
369 (buffer-name b2)))
370
371 (defun bs--sort-by-filename (b1 b2)
372 "Compare buffers B1 and B2 by file name."
373 (string< (or (buffer-file-name b1) "")
374 (or (buffer-file-name b2) "")))
375
376 (defun bs--sort-by-mode (b1 b2)
377 "Compare buffers B1 and B2 by mode name."
378 (save-excursion
379 (string< (progn (set-buffer b1) (format "%s" mode-name))
380 (progn (set-buffer b2) (format "%s" mode-name)))))
381
382 (defun bs--sort-by-size (b1 b2)
383 "Compare buffers B1 and B2 by buffer size."
384 (save-excursion
385 (< (progn (set-buffer b1) (buffer-size))
386 (progn (set-buffer b2) (buffer-size)))))
387
388 (defcustom bs-sort-functions
389 '(("by name" bs--sort-by-name "Buffer" region)
390 ("by size" bs--sort-by-size "Size" region)
391 ("by mode" bs--sort-by-mode "Mode" region)
392 ("by filename" bs--sort-by-filename "File" region)
393 ("by nothing" nil nil nil))
394 "*List of all possible sorting aspects for Buffer Selection Menu.
395 You can add a new entry with a call to `bs-define-sort-function'.
396 Each element is a list of four elements (NAME FUNCTION REGEXP-FOR-SORTING FACE)
397 NAME specifies the sort order defined by function FUNCTION.
398 FUNCTION nil means don't sort the buffer list. Otherwise the functions
399 must have two parameters - the buffers to compare.
400 REGEXP-FOR-SORTING is a regular expression which describes the
401 column title to highlight.
402 FACE is a face used to fontify the sorted column title. A value of nil means
403 don't highlight."
404 :group 'bs
405 :type '(repeat sexp))
406
407 (defun bs-define-sort-function (name fun &optional regexp-for-sorting face)
408 "Define a new function for buffer sorting in Buffer Selection Menu.
409 NAME specifies the sort order defined by function FUN.
410 A value of nil for FUN means don't sort the buffer list. Otherwise the
411 functions must have two parameters - the buffers to compare.
412 REGEXP-FOR-SORTING is a regular expression which describes the
413 column title to highlight.
414 FACE is a face used to fontify the sorted column title. A value of nil means
415 don't highlight.
416 The new sort aspect will be inserted into list `bs-sort-functions'."
417 (let ((tupel (assoc name bs-sort-functions)))
418 (if tupel
419 (setcdr tupel (list fun regexp-for-sorting face))
420 (setq bs-sort-functions
421 (cons (list name fun regexp-for-sorting face)
422 bs-sort-functions)))))
423
424 (defvar bs--current-sort-function nil
425 "Description of the current function for sorting the buffer list.
426 This is an element of `bs-sort-functions'.")
427
428 (defcustom bs-default-sort-name "by nothing"
429 "*Name of default sort behavior.
430 Must be \"by nothing\" or a string used in `bs-sort-functions' for
431 naming a sort behavior. Default is \"by nothing\" which means no sorting."
432 :group 'bs
433 :type 'string
434 :set (lambda (var-name value)
435 (set var-name value)
436 (setq bs--current-sort-function
437 (assoc value bs-sort-functions))))
438
439 (defvar bs--buffer-coming-from nil
440 "The buffer in which the user started the current Buffer Selection Menu.")
441
442 (defvar bs--show-all nil
443 "Flag whether showing all buffers regardless of current configuration.
444 Non nil means to show all buffers. Otherwise show buffers
445 defined by current configuration `bs-current-configuration'.")
446
447 (defvar bs--window-config-coming-from nil
448 "Window configuration before starting Buffer Selection Menu.")
449
450 (defvar bs--intern-show-never "^ \\|\\*buffer-selection\\*"
451 "Regular expression specifying which buffers never to show.
452 A buffer whose name matches this regular expression will never be
453 included in the buffer list.")
454
455 (defvar bs-current-list nil
456 "List of buffers shown in Buffer Selection Menu.
457 Used internally, only.")
458
459 (defvar bs--marked-buffers nil
460 "Currently marked buffers in Buffer Selection Menu.")
461
462 (defvar bs-mode-map
463 (let ((map (make-sparse-keymap)))
464 (define-key map " " 'bs-select)
465 (define-key map "f" 'bs-select)
466 (define-key map "v" 'bs-view)
467 (define-key map "!" 'bs-select-in-one-window)
468 (define-key map [mouse-2] 'bs-mouse-select) ;; for GNU EMACS
469 (define-key map [button2] 'bs-mouse-select) ;; for XEmacs
470 (define-key map "F" 'bs-select-other-frame)
471 (let ((key ?1))
472 (while (<= key ?9)
473 (define-key map (char-to-string key) 'digit-argument)
474 (setq key (1+ key))))
475 (define-key map "-" 'negative-argument)
476 (define-key map "\e-" 'negative-argument)
477 (define-key map "o" 'bs-select-other-window)
478 (define-key map "\C-o" 'bs-tmp-select-other-window)
479 ;; for GNU EMACS
480 (define-key map [mouse-3] 'bs-mouse-select-other-frame)
481 ;; for XEmacs
482 (define-key map [button3] 'bs-mouse-select-other-frame)
483 (define-key map [up] 'bs-up)
484 (define-key map "n" 'bs-down)
485 (define-key map "p" 'bs-up)
486 (define-key map [down] 'bs-down)
487 (define-key map "\C-m" 'bs-select)
488 (define-key map "b" 'bs-bury-buffer)
489 (define-key map "s" 'bs-save)
490 (define-key map "S" 'bs-show-sorted)
491 (define-key map "a" 'bs-toggle-show-all)
492 (define-key map "d" 'bs-delete)
493 (define-key map "\C-d" 'bs-delete-backward)
494 (define-key map "k" 'bs-delete)
495 (define-key map "g" 'bs-refresh)
496 (define-key map "C" 'bs-set-configuration-and-refresh)
497 (define-key map "c" 'bs-select-next-configuration)
498 (define-key map "q" 'bs-kill)
499 ;; (define-key map "z" 'bs-kill)
500 (define-key map "\C-c\C-c" 'bs-kill)
501 (define-key map "\C-g" 'bs-abort)
502 (define-key map "\C-]" 'bs-abort)
503 (define-key map "%" 'bs-toggle-readonly)
504 (define-key map "~" 'bs-clear-modified)
505 (define-key map "M" 'bs-toggle-current-to-show)
506 (define-key map "+" 'bs-set-current-buffer-to-show-always)
507 ;;(define-key map "-" 'bs-set-current-buffer-to-show-never)
508 (define-key map "t" 'bs-visit-tags-table)
509 (define-key map "m" 'bs-mark-current)
510 (define-key map "u" 'bs-unmark-current)
511 (define-key map ">" 'scroll-right)
512 (define-key map "<" 'scroll-left)
513 (define-key map "?" 'bs-help)
514 map)
515 "Keymap of `bs-mode'.")
516
517 ;; ----------------------------------------------------------------------
518 ;; Functions
519 ;; ----------------------------------------------------------------------
520
521 (defun bs-buffer-list (&optional list sort-description)
522 "Return a list of buffers to be shown.
523 LIST is a list of buffers to test for appearance in Buffer Selection Menu.
524 The result list depends on the global variables `bs-dont-show-regexp',
525 `bs-must-show-regexp', `bs-dont-show-function', `bs-must-show-function'
526 and `bs-buffer-sort-function'.
527 If SORT-DESCRIPTION isn't nil the list will be sorted by
528 a special function. SORT-DESCRIPTION is an element of `bs-sort-functions'."
529 (setq sort-description (or sort-description bs--current-sort-function)
530 list (or list (buffer-list)))
531 (let ((result nil))
532 (while list
533 (let* ((buffername (buffer-name (car list)))
534 (int-show-never (string-match bs--intern-show-never buffername))
535 (ext-show-never (and bs-dont-show-regexp
536 (string-match bs-dont-show-regexp
537 buffername)))
538 (extern-must-show (or (and bs-must-always-show-regexp
539 (string-match
540 bs-must-always-show-regexp
541 buffername))
542 (and bs-must-show-regexp
543 (string-match bs-must-show-regexp
544 buffername))))
545 (extern-show-never-from-fun (and bs-dont-show-function
546 (funcall bs-dont-show-function
547 (car list))))
548 (extern-must-show-from-fun (and bs-must-show-function
549 (funcall bs-must-show-function
550 (car list))))
551 (show-flag (buffer-local-value 'bs-buffer-show-mark (car list))))
552 (if (or (eq show-flag 'always)
553 (and (or bs--show-all (not (eq show-flag 'never)))
554 (not int-show-never)
555 (or bs--show-all
556 extern-must-show
557 extern-must-show-from-fun
558 (and (not ext-show-never)
559 (not extern-show-never-from-fun)))))
560 (setq result (cons (car list)
561 result)))
562 (setq list (cdr list))))
563 (setq result (reverse result))
564 ;; The current buffer which was the start point of bs should be an element
565 ;; of result list, so that we can leave with space and be back in the
566 ;; buffer we started bs-show.
567 (if (and bs--buffer-coming-from
568 (buffer-live-p bs--buffer-coming-from)
569 (not (memq bs--buffer-coming-from result)))
570 (setq result (cons bs--buffer-coming-from result)))
571 ;; sorting
572 (if (and sort-description
573 (nth 1 sort-description))
574 (setq result (sort result (nth 1 sort-description)))
575 ;; else standard sorting
576 (bs-buffer-sort result))))
577
578 (defun bs-buffer-sort (buffer-list)
579 "Sort buffers in BUFFER-LIST according to `bs-buffer-sort-function'."
580 (if bs-buffer-sort-function
581 (sort buffer-list bs-buffer-sort-function)
582 buffer-list))
583
584 (defun bs--redisplay (&optional keep-line-p sort-description)
585 "Redisplay whole Buffer Selection Menu.
586 If KEEP-LINE-P is non nil the point will stay on current line.
587 SORT-DESCRIPTION is an element of `bs-sort-functions'"
588 (let ((line (1+ (count-lines 1 (point)))))
589 (bs-show-in-buffer (bs-buffer-list nil sort-description))
590 (if keep-line-p
591 (goto-line line))
592 (beginning-of-line)))
593
594 (defun bs--goto-current-buffer ()
595 "Goto line which represents the current buffer;
596 actually the line which begins with character in `bs-string-current' or
597 `bs-string-current-marked'."
598 (let ((regexp (concat "^"
599 (regexp-quote bs-string-current)
600 "\\|^"
601 (regexp-quote bs-string-current-marked)))
602 point)
603 (save-excursion
604 (goto-char (point-min))
605 (if (search-forward-regexp regexp nil t)
606 (setq point (- (point) 1))))
607 (if point
608 (goto-char point))))
609
610 (defun bs--current-config-message ()
611 "Return a string describing the current `bs-mode' configuration."
612 (if bs--show-all
613 "Show all buffers."
614 (format "Show buffer by configuration %S"
615 bs-current-configuration)))
616
617 (defun bs-mode ()
618 "Major mode for editing a subset of Emacs' buffers.
619 \\<bs-mode-map>
620 Aside from two header lines each line describes one buffer.
621 Move to a line representing the buffer you want to edit and select
622 buffer by \\[bs-select] or SPC. Abort buffer list with \\[bs-kill].
623 There are many key commands similar to `Buffer-menu-mode' for
624 manipulating the buffer list and buffers.
625 For faster navigation each digit key is a digit argument.
626
627 \\[bs-select] or SPACE -- select current line's buffer and other marked buffers.
628 \\[bs-toggle-show-all] -- toggle between all buffers and a special subset.
629 \\[bs-select-other-window] -- select current line's buffer in other window.
630 \\[bs-tmp-select-other-window] -- make another window display that buffer and
631 remain in Buffer Selection Menu.
632 \\[bs-mouse-select] -- select current line's buffer and other marked buffers.
633 \\[bs-save] -- save current line's buffer immediately.
634 \\[bs-delete] -- kill current line's buffer immediately.
635 \\[bs-toggle-readonly] -- toggle read-only status of current line's buffer.
636 \\[bs-clear-modified] -- clear modified-flag on that buffer.
637 \\[bs-mark-current] -- mark current line's buffer to be displayed.
638 \\[bs-unmark-current] -- unmark current line's buffer to be displayed.
639 \\[bs-show-sorted] -- display buffer list sorted by next sort aspect.
640 \\[bs-set-configuration-and-refresh] -- ask user for a configuration and \
641 apply selected configuration.
642 \\[bs-select-next-configuration] -- select and apply next \
643 available Buffer Selection Menu configuration.
644 \\[bs-kill] -- leave Buffer Selection Menu without a selection.
645 \\[bs-toggle-current-to-show] -- toggle status of appearance.
646 \\[bs-set-current-buffer-to-show-always] -- mark current line's buffer \
647 to show always.
648 \\[bs-visit-tags-table] -- call `visit-tags-table' on current line's buffer.
649 \\[bs-help] -- display this help text."
650 (interactive)
651 (kill-all-local-variables)
652 (use-local-map bs-mode-map)
653 (make-local-variable 'font-lock-defaults)
654 (make-local-variable 'font-lock-verbose)
655 (setq major-mode 'bs-mode
656 mode-name "Buffer-Selection-Menu"
657 buffer-read-only t
658 truncate-lines t
659 font-lock-defaults '(bs-mode-font-lock-keywords t)
660 font-lock-verbose nil)
661 (run-mode-hooks 'bs-mode-hook))
662
663 (defun bs-kill ()
664 "Let buffer disappear and reset window-configuration."
665 (interactive)
666 (bury-buffer (current-buffer))
667 (set-window-configuration bs--window-config-coming-from))
668
669 (defun bs-abort ()
670 "Ding and leave Buffer Selection Menu without a selection."
671 (interactive)
672 (ding)
673 (bs-kill))
674
675 (defun bs-set-configuration-and-refresh ()
676 "Ask user for a configuration and apply selected configuration.
677 Refresh whole Buffer Selection Menu."
678 (interactive)
679 (call-interactively 'bs-set-configuration)
680 (bs--redisplay t))
681
682 (defun bs-refresh ()
683 "Refresh whole Buffer Selection Menu."
684 (interactive)
685 (bs--redisplay t))
686
687 (defun bs--window-for-buffer (buffer-name)
688 "Return a window showing a buffer with name BUFFER-NAME.
689 Take only windows of current frame into account.
690 Return nil if there is no such buffer."
691 (let ((window nil))
692 (walk-windows (lambda (wind)
693 (if (string= (buffer-name (window-buffer wind))
694 buffer-name)
695 (setq window wind))))
696 window))
697
698 (defun bs--set-window-height ()
699 "Change the height of the selected window to suit the current buffer list."
700 (unless (one-window-p t)
701 (shrink-window (- (window-height (selected-window))
702 ;; window-height in xemacs includes mode-line
703 (+ (if bs--running-in-xemacs 3 1)
704 bs-header-lines-length
705 (min (length bs-current-list)
706 bs-max-window-height))))))
707
708 (defun bs--current-buffer ()
709 "Return buffer on current line.
710 Raise an error if not on a buffer line."
711 (beginning-of-line)
712 (let ((line (+ (- bs-header-lines-length)
713 (count-lines 1 (point)))))
714 (if (< line 0)
715 (error "You are on a header row"))
716 (nth line bs-current-list)))
717
718 (defun bs--update-current-line ()
719 "Update the entry on current line for Buffer Selection Menu."
720 (let ((buffer (bs--current-buffer))
721 (inhibit-read-only t))
722 (beginning-of-line)
723 (delete-region (point) (line-end-position))
724 (bs--insert-one-entry buffer)
725 (beginning-of-line)))
726
727 (defun bs-view ()
728 "View current line's buffer in View mode.
729 Leave Buffer Selection Menu."
730 (interactive)
731 (view-buffer (bs--current-buffer)))
732
733 (defun bs-select ()
734 "Select current line's buffer and other marked buffers.
735 If there are no marked buffers the window configuration before starting
736 Buffer Selectin Menu will be restored.
737 If there are marked buffers each marked buffer and the current line's buffer
738 will be selected in a window.
739 Leave Buffer Selection Menu."
740 (interactive)
741 (let ((buffer (bs--current-buffer)))
742 (bury-buffer (current-buffer))
743 (set-window-configuration bs--window-config-coming-from)
744 (switch-to-buffer buffer)
745 (if bs--marked-buffers
746 ;; Some marked buffers for selection
747 (let* ((all (delq buffer bs--marked-buffers))
748 (height (/ (1- (frame-height)) (1+ (length all)))))
749 (delete-other-windows)
750 (switch-to-buffer buffer)
751 (while all
752 (split-window nil height)
753 (other-window 1)
754 (switch-to-buffer (car all))
755 (setq all (cdr all)))
756 ;; goto window we have started bs.
757 (other-window 1)))))
758
759 (defun bs-select-other-window ()
760 "Select current line's buffer by `switch-to-buffer-other-window'.
761 The window configuration before starting Buffer Selectin Menu will be restored
762 unless there is no other window. In this case a new window will be created.
763 Leave Buffer Selection Menu."
764 (interactive)
765 (let ((buffer (bs--current-buffer)))
766 (bury-buffer (current-buffer))
767 (set-window-configuration bs--window-config-coming-from)
768 (switch-to-buffer-other-window buffer)))
769
770 (defun bs-tmp-select-other-window ()
771 "Make the other window select this line's buffer.
772 The current window remains selected."
773 (interactive)
774 (let ((buffer (bs--current-buffer)))
775 (display-buffer buffer t)))
776
777 (defun bs-select-other-frame ()
778 "Select current line's buffer in new created frame.
779 Leave Buffer Selection Menu."
780 (interactive)
781 (let ((buffer (bs--current-buffer)))
782 (bury-buffer (current-buffer))
783 (set-window-configuration bs--window-config-coming-from)
784 (switch-to-buffer-other-frame buffer)))
785
786 (defun bs-mouse-select-other-frame (event)
787 "Select selected line's buffer in new created frame.
788 Leave Buffer Selection Menu.
789 EVENT: a mouse click EVENT."
790 (interactive "e")
791 (mouse-set-point event)
792 (bs-select-other-frame))
793
794 (defun bs-mouse-select (event)
795 "Select buffer on mouse click EVENT.
796 Select buffer by `bs-select'."
797 (interactive "e")
798 (mouse-set-point event)
799 (bs-select))
800
801 (defun bs-select-in-one-window ()
802 "Select current line's buffer in one window and delete other windows.
803 Leave Buffer Selection Menu."
804 (interactive)
805 (bs-select)
806 (delete-other-windows))
807
808 (defun bs-bury-buffer ()
809 "Bury buffer on current line."
810 (interactive)
811 (bury-buffer (bs--current-buffer))
812 (bs--redisplay t))
813
814 (defun bs-save ()
815 "Save buffer on current line."
816 (interactive)
817 (let ((buffer (bs--current-buffer)))
818 (save-excursion
819 (set-buffer buffer)
820 (save-buffer))
821 (bs--update-current-line)))
822
823 (defun bs-visit-tags-table ()
824 "Visit the tags table in the buffer on this line.
825 See `visit-tags-table'."
826 (interactive)
827 (let ((file (buffer-file-name (bs--current-buffer))))
828 (if file
829 (visit-tags-table file)
830 (error "Specified buffer has no file"))))
831
832 (defun bs-toggle-current-to-show ()
833 "Toggle status of showing flag for buffer in current line."
834 (interactive)
835 (let ((buffer (bs--current-buffer))
836 res)
837 (save-excursion
838 (set-buffer buffer)
839 (setq res (cond ((null bs-buffer-show-mark)
840 'never)
841 ((eq bs-buffer-show-mark 'never)
842 'always)
843 (t nil)))
844 (setq bs-buffer-show-mark res))
845 (bs--update-current-line)
846 (bs--set-window-height)
847 (bs--show-config-message res)))
848
849 (defun bs-set-current-buffer-to-show-always (&optional not-to-show-p)
850 "Toggle status of buffer on line to `always shown'.
851 NOT-TO-SHOW-P: prefix argument.
852 With no prefix argument the buffer on current line is marked to show
853 always. Otherwise it is marked to show never."
854 (interactive "P")
855 (if not-to-show-p
856 (bs-set-current-buffer-to-show-never)
857 (bs--set-toggle-to-show (bs--current-buffer) 'always)))
858
859 (defun bs-set-current-buffer-to-show-never ()
860 "Toggle status of buffer on line to `never shown'."
861 (interactive)
862 (bs--set-toggle-to-show (bs--current-buffer) 'never))
863
864 (defun bs--set-toggle-to-show (buffer what)
865 "Set value `bs-buffer-show-mark' of buffer BUFFER to WHAT.
866 Redisplay current line and display a message describing
867 the status of buffer on current line."
868 (with-current-buffer buffer (setq bs-buffer-show-mark what))
869 (bs--update-current-line)
870 (bs--set-window-height)
871 (bs--show-config-message what))
872
873 (defun bs-mark-current (count)
874 "Mark buffers.
875 COUNT is the number of buffers to mark.
876 Move cursor vertically down COUNT lines."
877 (interactive "p")
878 (let ((dir (if (> count 0) 1 -1))
879 (count (abs count)))
880 (while (> count 0)
881 (let ((buffer (bs--current-buffer)))
882 (if buffer
883 (setq bs--marked-buffers (cons buffer bs--marked-buffers)))
884 (bs--update-current-line)
885 (bs-down dir))
886 (setq count (1- count)))))
887
888 (defun bs-unmark-current (count)
889 "Unmark buffers.
890 COUNT is the number of buffers to unmark.
891 Move cursor vertically down COUNT lines."
892 (interactive "p")
893 (let ((dir (if (> count 0) 1 -1))
894 (count (abs count)))
895 (while (> count 0)
896 (let ((buffer (bs--current-buffer)))
897 (if buffer
898 (setq bs--marked-buffers (delq buffer bs--marked-buffers)))
899 (bs--update-current-line)
900 (bs-down dir))
901 (setq count (1- count)))))
902
903 (defun bs--show-config-message (what)
904 "Show message indicating the new showing status WHAT.
905 WHAT is a value of nil, `never', or `always'."
906 (bs-message-without-log (cond ((null what)
907 "Buffer will be shown normally.")
908 ((eq what 'never)
909 "Mark buffer to never be shown.")
910 (t "Mark buffer to show always."))))
911
912 (defun bs-delete ()
913 "Kill buffer on current line."
914 (interactive)
915 (let ((current (bs--current-buffer))
916 (inhibit-read-only t))
917 (unless (kill-buffer current)
918 (error "Buffer was not deleted"))
919 (setq bs-current-list (delq current bs-current-list))
920 (beginning-of-line)
921 (delete-region (point) (save-excursion
922 (end-of-line)
923 (if (eobp) (point) (1+ (point)))))
924 (if (eobp)
925 (progn
926 (backward-delete-char 1)
927 (beginning-of-line)
928 (recenter -1)))
929 (bs--set-window-height)))
930
931 (defun bs-delete-backward ()
932 "Like `bs-delete' but go to buffer in front of current."
933 (interactive)
934 (let ((on-last-line-p (save-excursion (end-of-line) (eobp))))
935 (bs-delete)
936 (unless on-last-line-p
937 (bs-up 1))))
938
939 (defun bs-show-sorted ()
940 "Show buffer list sorted by buffer name."
941 (interactive)
942 (setq bs--current-sort-function
943 (bs-next-config-aux (car bs--current-sort-function)
944 bs-sort-functions))
945 (bs--redisplay)
946 (bs--goto-current-buffer)
947 (bs-message-without-log "Sorted %s" (car bs--current-sort-function)))
948
949 (defun bs-apply-sort-faces (&optional sort-description)
950 "Set text properties for the sort described by SORT-DESCRIPTION.
951 SORT-DESCRIPTION is an element of `bs-sort-functions'.
952 Default is `bs--current-sort-function'."
953 (let ((sort-description (or sort-description
954 bs--current-sort-function)))
955 (save-excursion
956 (goto-char (point-min))
957 (if (and (nth 2 sort-description)
958 (search-forward-regexp (nth 2 sort-description) nil t))
959 (let ((inhibit-read-only t))
960 (put-text-property (match-beginning 0)
961 (match-end 0)
962 'face
963 (or (nth 3 sort-description)
964 'region)))))))
965
966 (defun bs-toggle-show-all ()
967 "Toggle show all buffers / show buffers with current configuration."
968 (interactive)
969 (setq bs--show-all (not bs--show-all))
970 (bs--redisplay)
971 (bs--goto-current-buffer)
972 (bs-message-without-log "%s" (bs--current-config-message)))
973
974 (defun bs-toggle-readonly ()
975 "Toggle read-only status for buffer on current line.
976 Uses function `vc-toggle-read-only'."
977 (interactive)
978 (let ((buffer (bs--current-buffer)))
979 (save-excursion
980 (set-buffer buffer)
981 (vc-toggle-read-only))
982 (bs--update-current-line)))
983
984 (defun bs-clear-modified ()
985 "Set modified flag for buffer on current line to nil."
986 (interactive)
987 (let ((buffer (bs--current-buffer)))
988 (save-excursion
989 (set-buffer buffer)
990 (set-buffer-modified-p nil)))
991 (bs--update-current-line))
992
993 (defun bs--nth-wrapper (count fun &rest args)
994 "Call COUNT times function FUN with arguments ARGS."
995 (setq count (or count 1))
996 (while (> count 0)
997 (apply fun args)
998 (setq count (1- count))))
999
1000 (defun bs-up (arg)
1001 "Move cursor vertically up ARG lines in Buffer Selection Menu."
1002 (interactive "p")
1003 (if (and arg (numberp arg) (< arg 0))
1004 (bs--nth-wrapper (- arg) 'bs--down)
1005 (bs--nth-wrapper arg 'bs--up)))
1006
1007 (defun bs--up ()
1008 "Move cursor vertically up one line.
1009 If on top of buffer list go to last line."
1010 (interactive "p")
1011 (previous-line 1)
1012 (if (<= (count-lines 1 (point)) (1- bs-header-lines-length))
1013 (progn
1014 (goto-char (point-max))
1015 (beginning-of-line)
1016 (recenter -1))
1017 (beginning-of-line)))
1018
1019 (defun bs-down (arg)
1020 "Move cursor vertically down ARG lines in Buffer Selection Menu."
1021 (interactive "p")
1022 (if (and arg (numberp arg) (< arg 0))
1023 (bs--nth-wrapper (- arg) 'bs--up)
1024 (bs--nth-wrapper arg 'bs--down)))
1025
1026 (defun bs--down ()
1027 "Move cursor vertically down one line.
1028 If at end of buffer list go to first line."
1029 (let ((last (line-end-position)))
1030 (if (eq last (point-max))
1031 (goto-line (1+ bs-header-lines-length))
1032 (next-line 1))))
1033
1034 (defun bs-visits-non-file (buffer)
1035 "Return t or nil whether BUFFER visits no file.
1036 A value of t means BUFFER belongs to no file.
1037 A value of nil means BUFFER belongs to a file."
1038 (not (buffer-file-name buffer)))
1039
1040 (defun bs-sort-buffer-interns-are-last (b1 b2)
1041 "Function for sorting internal buffers B1 and B2 at the end of all buffers."
1042 (string-match "^\\*" (buffer-name b2)))
1043
1044 ;; ----------------------------------------------------------------------
1045 ;; Configurations:
1046 ;; ----------------------------------------------------------------------
1047
1048 (defun bs-config-clear ()
1049 "*Reset all variables which specify a configuration.
1050 These variables are `bs-dont-show-regexp', `bs-must-show-regexp',
1051 `bs-dont-show-function', `bs-must-show-function' and
1052 `bs-buffer-sort-function'."
1053 (setq bs-dont-show-regexp nil
1054 bs-must-show-regexp nil
1055 bs-dont-show-function nil
1056 bs-must-show-function nil
1057 bs-buffer-sort-function nil))
1058
1059 (defun bs-config--only-files ()
1060 "Define a configuration for showing only buffers visiting a file."
1061 (bs-config-clear)
1062 (setq ;; I want to see *-buffers at the end
1063 bs-buffer-sort-function 'bs-sort-buffer-interns-are-last
1064 ;; Don't show files who don't belong to a file
1065 bs-dont-show-function 'bs-visits-non-file))
1066
1067 (defun bs-config--files-and-scratch ()
1068 "Define a configuration for showing buffer *scratch* and file buffers."
1069 (bs-config-clear)
1070 (setq ;; I want to see *-buffers at the end
1071 bs-buffer-sort-function 'bs-sort-buffer-interns-are-last
1072 ;; Don't show files who don't belong to a file
1073 bs-dont-show-function 'bs-visits-non-file
1074 ;; Show *scratch* buffer.
1075 bs-must-show-regexp "^\\*scratch\\*$"))
1076
1077 (defun bs-config--all ()
1078 "Define a configuration for showing all buffers.
1079 Reset all according variables by `bs-config-clear'."
1080 (bs-config-clear))
1081
1082 (defun bs-config--all-intern-last ()
1083 "Define a configuration for showing all buffers.
1084 Internal buffers appear at end of all buffers."
1085 (bs-config-clear)
1086 ;; I want to see *-buffers at the end
1087 (setq bs-buffer-sort-function 'bs-sort-buffer-interns-are-last))
1088
1089 (defun bs-set-configuration (name)
1090 "Set configuration to the one saved under string NAME in `bs-configurations'.
1091 When called interactively ask user for a configuration and apply selected
1092 configuration."
1093 (interactive (list (completing-read "Use configuration: "
1094 bs-configurations
1095 nil
1096 t)))
1097 (let ((list (assoc name bs-configurations)))
1098 (if list
1099 (if (listp list)
1100 (setq bs-current-configuration name
1101 bs-must-show-regexp (nth 1 list)
1102 bs-must-show-function (nth 2 list)
1103 bs-dont-show-regexp (nth 3 list)
1104 bs-dont-show-function (nth 4 list)
1105 bs-buffer-sort-function (nth 5 list))
1106 ;; for backward compability
1107 (funcall (cdr list)))
1108 ;; else
1109 (ding)
1110 (bs-message-without-log "No bs-configuration named %S." name))))
1111
1112 (defun bs-help ()
1113 "Help for `bs-show'."
1114 (interactive)
1115 (describe-function 'bs-mode))
1116
1117 (defun bs-next-config-aux (start-name list)
1118 "Get the next assoc after START-NAME in list LIST.
1119 Will return the first if START-NAME is at end."
1120 (let ((assocs list)
1121 (length (length list))
1122 pos)
1123 (while (and assocs (not pos))
1124 (if (string= (car (car assocs)) start-name)
1125 (setq pos (- length (length assocs))))
1126 (setq assocs (cdr assocs)))
1127 (setq pos (1+ pos))
1128 (if (eq pos length)
1129 (car list)
1130 (nth pos list))))
1131
1132 (defun bs-next-config (name)
1133 "Return next configuration with respect to configuration with name NAME."
1134 (bs-next-config-aux name bs-configurations))
1135
1136 (defun bs-select-next-configuration (&optional start-name)
1137 "Apply next configuration START-NAME and refresh buffer list.
1138 If START-NAME is nil the current configuration `bs-current-configuration'
1139 will be used."
1140 (interactive)
1141 (let ((config (bs-next-config (or start-name bs-current-configuration))))
1142 (bs-set-configuration (car config))
1143 (setq bs-default-configuration bs-current-configuration)
1144 (bs--redisplay t)
1145 (bs--set-window-height)
1146 (bs-message-without-log "Selected configuration: %s" (car config))))
1147
1148 (defun bs-show-in-buffer (list)
1149 "Display buffer list LIST in buffer *buffer-selection*.
1150 Select buffer *buffer-selection* and display buffers according to current
1151 configuration `bs-current-configuration'. Set window height, fontify buffer
1152 and move point to current buffer."
1153 (setq bs-current-list list)
1154 (switch-to-buffer (get-buffer-create "*buffer-selection*"))
1155 (bs-mode)
1156 (let* ((inhibit-read-only t)
1157 (map-fun (lambda (entry)
1158 (length (buffer-name entry))))
1159 (max-length-of-names (apply 'max
1160 (cons 0 (mapcar map-fun list))))
1161 (name-entry-length (min bs-maximal-buffer-name-column
1162 (max bs-minimal-buffer-name-column
1163 max-length-of-names))))
1164 (erase-buffer)
1165 (setq bs--name-entry-length name-entry-length)
1166 (bs--show-header)
1167 (while list
1168 (bs--insert-one-entry (car list))
1169 (insert "\n")
1170 (setq list (cdr list)))
1171 (delete-backward-char 1)
1172 (bs--set-window-height)
1173 (bs--goto-current-buffer)
1174 (font-lock-fontify-buffer)
1175 (bs-apply-sort-faces)))
1176
1177 (defun bs-next-buffer (&optional buffer-list sorting-p)
1178 "Return next buffer and buffer list for buffer cycling in BUFFER-LIST.
1179 Ignore sorting when SORTING-P is nil.
1180 If BUFFER-LIST is nil the result of `bs-buffer-list' will be used as
1181 buffer list. The result is a cons of normally the second element of
1182 BUFFER-LIST and the buffer list used for buffer cycling."
1183 (let* ((bs--current-sort-function (if sorting-p
1184 bs--current-sort-function))
1185 (bs-buffer-list (or buffer-list (bs-buffer-list))))
1186 (cons (or (car (cdr bs-buffer-list))
1187 (car bs-buffer-list)
1188 (current-buffer))
1189 bs-buffer-list)))
1190
1191 (defun bs-previous-buffer (&optional buffer-list sorting-p)
1192 "Return previous buffer and buffer list for buffer cycling in BUFFER-LIST.
1193 Ignore sorting when SORTING-P is nil.
1194 If BUFFER-LIST is nil the result of `bs-buffer-list' will be used as
1195 buffer list. The result is a cons of last element of BUFFER-LIST and the
1196 buffer list used for buffer cycling."
1197 (let* ((bs--current-sort-function (if sorting-p
1198 bs--current-sort-function))
1199 (bs-buffer-list (or buffer-list (bs-buffer-list))))
1200 (cons (or (car (last bs-buffer-list))
1201 (current-buffer))
1202 bs-buffer-list)))
1203
1204 (defun bs-message-without-log (&rest args)
1205 "Like `message' but don't log it on the message log.
1206 All arguments ARGS are transferred to function `message'."
1207 (let ((message-log-max nil))
1208 (apply 'message args)))
1209
1210 (defvar bs--cycle-list nil
1211 "Current buffer list used for cycling.")
1212
1213 ;;;###autoload
1214 (defun bs-cycle-next ()
1215 "Select next buffer defined by buffer cycling.
1216 The buffers taking part in buffer cycling are defined
1217 by buffer configuration `bs-cycle-configuration-name'."
1218 (interactive)
1219 (let ((bs--buffer-coming-from (current-buffer))
1220 (bs-dont-show-regexp bs-dont-show-regexp)
1221 (bs-must-show-regexp bs-must-show-regexp)
1222 (bs-dont-show-function bs-dont-show-function)
1223 (bs-must-show-function bs-must-show-function)
1224 (bs--show-all nil))
1225 (bs-set-configuration (or bs-cycle-configuration-name bs-default-configuration))
1226 (let ((bs-buffer-sort-function nil)
1227 (bs--current-sort-function nil))
1228 (let* ((tupel (bs-next-buffer (if (or (eq last-command
1229 'bs-cycle-next)
1230 (eq last-command
1231 'bs-cycle-previous))
1232 bs--cycle-list)))
1233 (next (car tupel))
1234 (cycle-list (cdr tupel)))
1235 (setq bs--cycle-list (append (cdr cycle-list)
1236 (list (car cycle-list))))
1237 (bury-buffer)
1238 (switch-to-buffer next)
1239 (bs-message-without-log "Next buffers: %s"
1240 (or (cdr bs--cycle-list)
1241 "this buffer"))))))
1242
1243
1244 ;;;###autoload
1245 (defun bs-cycle-previous ()
1246 "Select previous buffer defined by buffer cycling.
1247 The buffers taking part in buffer cycling are defined
1248 by buffer configuration `bs-cycle-configuration-name'."
1249 (interactive)
1250 (let ((bs--buffer-coming-from (current-buffer))
1251 (bs-dont-show-regexp bs-dont-show-regexp)
1252 (bs-must-show-regexp bs-must-show-regexp)
1253 (bs-dont-show-function bs-dont-show-function)
1254 (bs-must-show-function bs-must-show-function)
1255 (bs--show-all nil))
1256 (bs-set-configuration (or bs-cycle-configuration-name bs-default-configuration))
1257 (let ((bs-buffer-sort-function nil)
1258 (bs--current-sort-function nil))
1259 (let* ((tupel (bs-previous-buffer (if (or (eq last-command
1260 'bs-cycle-next)
1261 (eq last-command
1262 'bs-cycle-previous))
1263 bs--cycle-list)))
1264 (prev-buffer (car tupel))
1265 (cycle-list (cdr tupel)))
1266 (setq bs--cycle-list (append (last cycle-list)
1267 (reverse (cdr (reverse cycle-list)))))
1268 (switch-to-buffer prev-buffer)
1269 (bs-message-without-log "Previous buffers: %s"
1270 (or (reverse (cdr bs--cycle-list))
1271 "this buffer"))))))
1272
1273 (defun bs--get-value (fun &optional args)
1274 "Apply function FUN with arguments ARGS.
1275 Return result of evaluation. Will return FUN if FUN is a number
1276 or a string."
1277 (cond ((numberp fun)
1278 fun)
1279 ((stringp fun)
1280 fun)
1281 (t (apply fun args))))
1282
1283 (defun bs--get-marked-string (start-buffer all-buffers)
1284 "Return a string which describes whether current buffer is marked.
1285 START-BUFFER is the buffer where we started buffer selection.
1286 ALL-BUFFERS is the list of buffer appearing in Buffer Selection Menu.
1287 The result string is one of `bs-string-current', `bs-string-current-marked',
1288 `bs-string-marked', `bs-string-show-normally', `bs-string-show-never', or
1289 `bs-string-show-always'."
1290 (cond ;; current buffer is the buffer we started buffer selection.
1291 ((eq (current-buffer) start-buffer)
1292 (if (memq (current-buffer) bs--marked-buffers)
1293 bs-string-current-marked ; buffer is marked
1294 bs-string-current))
1295 ;; current buffer is marked
1296 ((memq (current-buffer) bs--marked-buffers)
1297 bs-string-marked)
1298 ;; current buffer hasn't a special mark.
1299 ((null bs-buffer-show-mark)
1300 bs-string-show-normally)
1301 ;; current buffer has a mark not to show itself.
1302 ((eq bs-buffer-show-mark 'never)
1303 bs-string-show-never)
1304 ;; otherwise current buffer is marked to show always.
1305 (t
1306 bs-string-show-always)))
1307
1308 (defun bs--get-modified-string (start-buffer all-buffers)
1309 "Return a string which describes whether current buffer is modified.
1310 START-BUFFER is the buffer where we started buffer selection.
1311 ALL-BUFFERS is the list of buffer appearing in Buffer Selection Menu."
1312 (if (buffer-modified-p) "*" " "))
1313
1314 (defun bs--get-readonly-string (start-buffer all-buffers)
1315 "Return a string which describes whether current buffer is read only.
1316 START-BUFFER is the buffer where we started buffer selection.
1317 ALL-BUFFERS is the list of buffer appearing in Buffer Selection Menu."
1318 (if buffer-read-only "%" " "))
1319
1320 (defun bs--get-size-string (start-buffer all-buffers)
1321 "Return a string which describes the size of current buffer.
1322 START-BUFFER is the buffer where we started buffer selection.
1323 ALL-BUFFERS is the list of buffer appearing in Buffer Selection Menu."
1324 (int-to-string (buffer-size)))
1325
1326 (defun bs--get-name (start-buffer all-buffers)
1327 "Return name of current buffer for Buffer Selection Menu.
1328 The name of current buffer gets additional text properties
1329 for mouse highlighting.
1330 START-BUFFER is the buffer where we started buffer selection.
1331 ALL-BUFFERS is the list of buffer appearing in Buffer Selection Menu."
1332 (let ((name (copy-sequence (buffer-name))))
1333 (add-text-properties
1334 0 (length name)
1335 '(mouse-face highlight
1336 help-echo
1337 "mouse-2: select this buffer, mouse-3: select in other frame")
1338 name)
1339 (if (< (length name) bs--name-entry-length)
1340 (concat name
1341 (make-string (- bs--name-entry-length (length name)) ? ))
1342 name)))
1343
1344 (defun bs--get-mode-name (start-buffer all-buffers)
1345 "Return the name of mode of current buffer for Buffer Selection Menu.
1346 START-BUFFER is the buffer where we started buffer selection.
1347 ALL-BUFFERS is the list of buffer appearing in Buffer Selection Menu."
1348 mode-name)
1349
1350 (defun bs--get-file-name (start-buffer all-buffers)
1351 "Return string for column 'File' in Buffer Selection Menu.
1352 This is the variable `buffer-file-name' of current buffer.
1353 If current mode is `dired-mode' or `shell-mode' it returns the
1354 default directory.
1355 START-BUFFER is the buffer where we started buffer selection.
1356 ALL-BUFFERS is the list of buffer appearing in Buffer Selection Menu."
1357 (let ((string (copy-sequence (if (member major-mode
1358 '(shell-mode dired-mode))
1359 default-directory
1360 (or buffer-file-name "")))))
1361 (add-text-properties
1362 0 (length string)
1363 '(mouse-face highlight
1364 help-echo "mouse-2: select this buffer, mouse-3: select in other frame")
1365 string)
1366 string))
1367
1368 (defun bs--insert-one-entry (buffer)
1369 "Generate one entry for buffer BUFFER in Buffer Selection Menu.
1370 It goes over all columns described in `bs-attributes-list'
1371 and evaluates corresponding string. Inserts string in current buffer;
1372 normally *buffer-selection*."
1373 (let ((string "")
1374 (columns bs-attributes-list)
1375 (to-much 0)
1376 (apply-args (append (list bs--buffer-coming-from bs-current-list))))
1377 (save-excursion
1378 (while columns
1379 (set-buffer buffer)
1380 (let ((min (bs--get-value (nth 1 (car columns))))
1381 ;;(max (bs--get-value (nth 2 (car columns)))) refered no more
1382 (align (nth 3 (car columns)))
1383 (fun (nth 4 (car columns)))
1384 (val nil)
1385 new-string)
1386 (setq val (bs--get-value fun apply-args))
1387 (setq new-string (bs--format-aux val align (- min to-much)))
1388 (setq string (concat string new-string))
1389 (if (> (length new-string) min)
1390 (setq to-much (- (length new-string) min)))
1391 ) ; let
1392 (setq columns (cdr columns))))
1393 (insert string)
1394 string))
1395
1396 (defun bs--format-aux (string align len)
1397 "Generate a string with STRING with alignment ALIGN and length LEN.
1398 ALIGN is one of the symbols `left', `middle', or `right'."
1399 (let ((length (length string)))
1400 (if (>= length len)
1401 string
1402 (if (eq 'right align)
1403 (concat (make-string (- len length) ? ) string)
1404 (concat string (make-string (- len length) ? ))))))
1405
1406 (defun bs--show-header ()
1407 "Insert header for Buffer Selection Menu in current buffer."
1408 (mapcar '(lambda (string)
1409 (insert string "\n"))
1410 (bs--create-header)))
1411
1412 (defun bs--get-name-length ()
1413 "Return value of `bs--name-entry-length'."
1414 bs--name-entry-length)
1415
1416 (defun bs--create-header ()
1417 "Return all header lines used in Buffer Selection Menu as a list of strings."
1418 (list (mapconcat (lambda (column)
1419 (bs--format-aux (bs--get-value (car column))
1420 (nth 3 column) ; align
1421 (bs--get-value (nth 1 column))))
1422 bs-attributes-list
1423 "")
1424 (mapconcat (lambda (column)
1425 (let ((length (length (bs--get-value (car column)))))
1426 (bs--format-aux (make-string length ?-)
1427 (nth 3 column) ; align
1428 (bs--get-value (nth 1 column)))))
1429 bs-attributes-list
1430 "")))
1431
1432 (defun bs--show-with-configuration (name &optional arg)
1433 "Display buffer list of configuration with name NAME.
1434 Set configuration NAME and determine window for Buffer Selection Menu.
1435 Unless current buffer is buffer *buffer-selection* we have to save
1436 the buffer we started Buffer Selection Menu and the current window
1437 configuration to restore buffer and window configuration after a
1438 selection. If there is already a window displaying *buffer-selection*
1439 select this window for Buffer Selection Menu. Otherwise open a new
1440 window.
1441 The optional argument ARG is the prefix argument when calling a function
1442 for buffer selection."
1443 (bs-set-configuration name)
1444 (let ((bs--show-all (or bs--show-all arg)))
1445 (unless (string= "*buffer-selection*" (buffer-name))
1446 ;; Only when not in buffer *buffer-selection*
1447 ;; we have to set the buffer we started the command
1448 (progn
1449 (setq bs--buffer-coming-from (current-buffer))
1450 (setq bs--window-config-coming-from (current-window-configuration))))
1451 (let ((liste (bs-buffer-list))
1452 (active-window (bs--window-for-buffer "*buffer-selection*")))
1453 (if active-window
1454 (select-window active-window)
1455 (if (> (window-height (selected-window)) 7)
1456 (progn
1457 (split-window-vertically)
1458 (other-window 1))))
1459 (bs-show-in-buffer liste)
1460 (bs-message-without-log "%s" (bs--current-config-message)))))
1461
1462 (defun bs--configuration-name-for-prefix-arg (prefix-arg)
1463 "Convert prefix argument PREFIX-ARG to a name of a buffer configuration.
1464 If PREFIX-ARG is nil return `bs-default-configuration'.
1465 If PREFIX-ARG is an integer return PREFIX-ARG element of `bs-configurations'.
1466 Otherwise return `bs-alternative-configuration'."
1467 (cond ;; usually activation
1468 ((null prefix-arg)
1469 bs-default-configuration)
1470 ;; call with integer as prefix argument
1471 ((integerp prefix-arg)
1472 (if (and (< 0 prefix-arg) (<= prefix-arg (length bs-configurations)))
1473 (car (nth (1- prefix-arg) bs-configurations))
1474 bs-default-configuration))
1475 ;; call by prefix argument C-u
1476 (t bs-alternative-configuration)))
1477
1478 ;; ----------------------------------------------------------------------
1479 ;; Main function bs-customize and bs-show
1480 ;; ----------------------------------------------------------------------
1481
1482 ;;;###autoload
1483 (defun bs-customize ()
1484 "Customization of group bs for Buffer Selection Menu."
1485 (interactive)
1486 (customize-group "bs"))
1487
1488 ;;;###autoload
1489 (defun bs-show (arg)
1490 "Make a menu of buffers so you can manipulate buffers or the buffer list.
1491 \\<bs-mode-map>
1492 There are many key commands similar to `Buffer-menu-mode' for
1493 manipulating buffer list and buffers itself.
1494 User can move with [up] or [down], select a buffer
1495 by \\[bs-select] or [SPC]\n
1496 Type \\[bs-kill] to leave Buffer Selection Menu without a selection.
1497 Type \\[bs-help] after invocation to get help on commands available.
1498 With prefix argument ARG show a different buffer list. Function
1499 `bs--configuration-name-for-prefix-arg' determine accordingly
1500 name of buffer configuration."
1501 (interactive "P")
1502 (setq bs--marked-buffers nil)
1503 (bs--show-with-configuration (bs--configuration-name-for-prefix-arg arg)))
1504
1505 ;; Now provide feature bs
1506 (provide 'bs)
1507
1508 ;;; arch-tag: c0d9ab34-bf06-4368-ae9d-af88878e6802
1509 ;;; bs.el ends here