(bs-kill): Fix typo in docstring.
[bpt/emacs.git] / lisp / bs.el
1 ;;; bs.el --- menu for selecting and displaying buffers
2
3 ;; Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004,
4 ;; 2005, 2006, 2007 Free Software Foundation, Inc.
5 ;; Author: Olaf Sylvester <Olaf.Sylvester@netsurf.de>
6 ;; Maintainer: Olaf Sylvester <Olaf.Sylvester@netsurf.de>
7 ;; Keywords: convenience
8
9 ;; This file is part of GNU Emacs.
10
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 3, or (at your option)
14 ;; any later version.
15
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
20
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24 ;; Boston, MA 02110-1301, USA.
25
26 ;;; Commentary:
27
28 ;; Version: 1.17
29 ;; X-URL: http://www.geekware.de/software/emacs
30 ;;
31 ;; The bs-package contains a main function bs-show for poping up a
32 ;; buffer in a way similar to `list-buffers' and `electric-buffer-list':
33 ;; The new buffer offers a Buffer Selection Menu for manipulating
34 ;; the buffer list and buffers.
35 ;;
36 ;; -----------------------------------------------------------------------
37 ;; | MR Buffer Size Mode File |
38 ;; | -- ------ ---- ---- ---- |
39 ;; |. bs.el 14690 Emacs-Lisp /home/sun/sylvester/el/bs.e$|
40 ;; | % executable.el 9429 Emacs-Lisp /usr/share/emacs/19.34/lisp$|
41 ;; | % vc.el 104893 Emacs-Lisp /usr/share/emacs/19.34/lisp$|
42 ;; | % test_vc.el 486 Emacs-Lisp /home/sun/sylvester/el/test$|
43 ;; | % vc-hooks.el 43605 Emacs-Lisp /usr/share/emacs/19.34/lisp$|
44 ;; -----------------------------------------------------------------------
45
46 ;;; Quick Installation und Customization:
47
48 ;; Use
49 ;; M-x bs-show
50 ;; for buffer selection or optional bind a key to main function `bs-show'
51 ;; (global-set-key "\C-x\C-b" 'bs-show) ;; or another key
52 ;;
53 ;; For customization use
54 ;; M-x bs-customize
55
56
57 ;;; More Commentary:
58
59 ;; bs-show will generate a new buffer named *buffer-selection*, which shows
60 ;; all buffers or a subset of them, and has possibilities for deleting,
61 ;; saving and selecting buffers. For more details see docstring of
62 ;; function `bs-mode'. A current configuration describes which buffers appear
63 ;; in *buffer-selection*. See docstring of variable `bs-configurations' for
64 ;; more details.
65 ;;
66 ;; The package bs combines the advantages of the Emacs functions
67 ;; `list-buffers' and `electric-buffer-list'.
68 ;;
69 ;; Additional features for Buffer Selection Menu:
70 ;; - configurable list of buffers (show only files etc.).
71 ;; - comfortable way to change displayed subset of all buffers.
72 ;; - show sorted list of buffers.
73 ;; - cyclic navigation:
74 ;; - goes to top of buffer list if you are on last line and press down.
75 ;; - goes to end of buffer list if you are on first line and press up.
76 ;; - Offer an alternative buffer list by prefix key C-u.
77
78 ;;; Cycling through buffers
79
80 ;; This package offers two functions for buffer cycling. If you want to cycle
81 ;; through buffer list you can use `bs-cycle-next' or `bs-cycle-previous'.
82 ;; Bind these function to a key like
83 ;; (global-set-key [(f9)] 'bs-cycle-previous)
84 ;; (global-set-key [(f10)] 'bs-cycle-next)
85 ;;
86 ;; Both functions use a special subset of all buffers for cycling to avoid
87 ;; to go through internal buffers like *Messages*.
88 ;;
89 ;; Cycling through buffers ignores sorting because sorting destroys
90 ;; the logical buffer list. If buffer list is sorted by size you
91 ;; won't be able to cycle to the smallest buffer.
92
93 ;;; Customization:
94
95 ;; There is a customization group called `bs' in group `convenience'.
96 ;; Start customization by M-x bs-customize
97 ;;
98 ;; Buffer list
99 ;; -----------
100 ;; You can define your own configurations by extending variable
101 ;; `bs-configurations' (see docstring for details).
102 ;;
103 ;; `bs-default-configuration' contains the name of default configuration.
104 ;; The default value is "files" which means to show only files.
105 ;;
106 ;; If you always want to see all buffers, customize variable
107 ;; `bs-default-configuration' in customization group `bs'.
108 ;;
109 ;; Configure sorting
110 ;; -----------------
111 ;; You can define functions for sorting the buffer list.
112 ;; When selecting buffers, you can step through available sorting
113 ;; methods with key 'S'.
114 ;; To define a new way of sorting, customize variable `bs-sort-functions'.
115 ;;
116 ;; There are four basic functions for sorting:
117 ;; by buffer name, by mode, by size, or by filename
118 ;;
119 ;; Configure buffer cycling
120 ;; ------------------------
121 ;; When cycling through buffer list the functions for cycling will use
122 ;; the current configuration of bs to calculate the buffer list.
123 ;; If you want to use a different configuration for cycling you have to set
124 ;; the variable `bs-cycle-configuration-name'. You can customize this variable.
125 ;;
126 ;; For example: If you use the configuration called "files-and-scratch" you
127 ;; can cycle through all file buffers and *scratch* although your current
128 ;; configuration perhaps is "files" which ignores buffer *scratch*.
129
130 ;;; History:
131
132 ;;; Code:
133
134 ;; ----------------------------------------------------------------------
135 ;; Globals for customization
136 ;; ----------------------------------------------------------------------
137
138 (defgroup bs nil
139 "Buffer Selection: Maintaining buffers by buffer menu."
140 :version "21.1"
141 :link '(emacs-commentary-link "bs")
142 :link '(url-link "http://www.geekware.de/software/emacs")
143 :group 'convenience)
144
145 (defgroup bs-appearance nil
146 "Buffer Selection appearance: Appearance of bs buffer menu."
147 :group 'bs)
148
149 (defcustom bs-attributes-list
150 '(("" 1 1 left bs--get-marked-string)
151 ("M" 1 1 left bs--get-modified-string)
152 ("R" 2 2 left bs--get-readonly-string)
153 ("Buffer" bs--get-name-length 10 left bs--get-name)
154 ("" 1 1 left " ")
155 ("Size" 8 8 right bs--get-size-string)
156 ("" 1 1 left " ")
157 ("Mode" 12 12 right bs--get-mode-name)
158 ("" 2 2 left " ")
159 ("File" 12 12 left bs--get-file-name)
160 ("" 2 2 left " "))
161 "*List specifying the layout of a Buffer Selection Menu buffer.
162 Each entry specifies a column and is a list of the form of:
163 \(HEADER MINIMUM-LENGTH MAXIMUM-LENGTH ALIGNMENT FUN-OR-STRING)
164
165 HEADER : String for header for first line or a function
166 which calculates column title.
167 MINIMUM-LENGTH : Minimum width of column (number or name of function).
168 The function must return a positive integer.
169 MAXIMUM-LENGTH : Maximum width of column (number or name of function)
170 (currently ignored).
171 ALIGNMENT : Alignment of column (`left', `right', `middle').
172 FUN-OR-STRING : Name of a function for calculating the value or a
173 string for a constant value.
174
175 The function gets as parameter the buffer where we have started
176 buffer selection and the list of all buffers to show. The function must
177 return a string representing the column's value."
178 :group 'bs-appearance
179 :type '(repeat sexp))
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 (make-variable-frame-local 'bs--window-config-coming-from)
448
449 (defvar bs--intern-show-never "^ \\|\\*buffer-selection\\*"
450 "Regular expression specifying which buffers never to show.
451 A buffer whose name matches this regular expression will never be
452 included in the buffer list.")
453
454 (defvar bs-current-list nil
455 "List of buffers shown in Buffer Selection Menu.
456 Used internally, only.")
457
458 (defvar bs--marked-buffers nil
459 "Currently marked buffers in Buffer Selection Menu.")
460
461 (defvar bs-mode-map
462 (let ((map (make-sparse-keymap)))
463 (define-key map " " 'bs-select)
464 (define-key map "f" 'bs-select)
465 (define-key map "v" 'bs-view)
466 (define-key map "!" 'bs-select-in-one-window)
467 (define-key map [mouse-2] 'bs-mouse-select) ;; for GNU EMACS
468 (define-key map [button2] 'bs-mouse-select) ;; for XEmacs
469 (define-key map "F" 'bs-select-other-frame)
470 (let ((key ?1))
471 (while (<= key ?9)
472 (define-key map (char-to-string key) 'digit-argument)
473 (setq key (1+ key))))
474 (define-key map "-" 'negative-argument)
475 (define-key map "\e-" 'negative-argument)
476 (define-key map "o" 'bs-select-other-window)
477 (define-key map "\C-o" 'bs-tmp-select-other-window)
478 ;; for GNU EMACS
479 (define-key map [mouse-3] 'bs-mouse-select-other-frame)
480 ;; for XEmacs
481 (define-key map [button3] 'bs-mouse-select-other-frame)
482 (define-key map [up] 'bs-up)
483 (define-key map "n" 'bs-down)
484 (define-key map "p" 'bs-up)
485 (define-key map [down] 'bs-down)
486 (define-key map "\C-m" 'bs-select)
487 (define-key map "b" 'bs-bury-buffer)
488 (define-key map "s" 'bs-save)
489 (define-key map "S" 'bs-show-sorted)
490 (define-key map "a" 'bs-toggle-show-all)
491 (define-key map "d" 'bs-delete)
492 (define-key map "\C-d" 'bs-delete-backward)
493 (define-key map "k" 'bs-delete)
494 (define-key map "g" 'bs-refresh)
495 (define-key map "C" 'bs-set-configuration-and-refresh)
496 (define-key map "c" 'bs-select-next-configuration)
497 (define-key map "q" 'bs-kill)
498 ;; (define-key map "z" 'bs-kill)
499 (define-key map "\C-c\C-c" 'bs-kill)
500 (define-key map "\C-g" 'bs-abort)
501 (define-key map "\C-]" 'bs-abort)
502 (define-key map "%" 'bs-toggle-readonly)
503 (define-key map "~" 'bs-clear-modified)
504 (define-key map "M" 'bs-toggle-current-to-show)
505 (define-key map "+" 'bs-set-current-buffer-to-show-always)
506 ;;(define-key map "-" 'bs-set-current-buffer-to-show-never)
507 (define-key map "t" 'bs-visit-tags-table)
508 (define-key map "m" 'bs-mark-current)
509 (define-key map "u" 'bs-unmark-current)
510 (define-key map ">" 'scroll-right)
511 (define-key map "<" 'scroll-left)
512 (define-key map "?" 'bs-help)
513 map)
514 "Keymap of `bs-mode'.")
515
516 ;; ----------------------------------------------------------------------
517 ;; Functions
518 ;; ----------------------------------------------------------------------
519
520 (defun bs-buffer-list (&optional list sort-description)
521 "Return a list of buffers to be shown.
522 LIST is a list of buffers to test for appearance in Buffer Selection Menu.
523 The result list depends on the global variables `bs-dont-show-regexp',
524 `bs-must-show-regexp', `bs-dont-show-function', `bs-must-show-function'
525 and `bs-buffer-sort-function'.
526 If SORT-DESCRIPTION isn't nil the list will be sorted by
527 a special function. SORT-DESCRIPTION is an element of `bs-sort-functions'."
528 (setq sort-description (or sort-description bs--current-sort-function)
529 list (or list (buffer-list)))
530 (let ((result nil))
531 (while list
532 (let* ((buffername (buffer-name (car list)))
533 (int-show-never (string-match bs--intern-show-never buffername))
534 (ext-show-never (and bs-dont-show-regexp
535 (string-match bs-dont-show-regexp
536 buffername)))
537 (extern-must-show (or (and bs-must-always-show-regexp
538 (string-match
539 bs-must-always-show-regexp
540 buffername))
541 (and bs-must-show-regexp
542 (string-match bs-must-show-regexp
543 buffername))))
544 (extern-show-never-from-fun (and bs-dont-show-function
545 (funcall bs-dont-show-function
546 (car list))))
547 (extern-must-show-from-fun (and bs-must-show-function
548 (funcall bs-must-show-function
549 (car list))))
550 (show-flag (buffer-local-value 'bs-buffer-show-mark (car list))))
551 (if (or (eq show-flag 'always)
552 (and (or bs--show-all (not (eq show-flag 'never)))
553 (not int-show-never)
554 (or bs--show-all
555 extern-must-show
556 extern-must-show-from-fun
557 (and (not ext-show-never)
558 (not extern-show-never-from-fun)))))
559 (setq result (cons (car list)
560 result)))
561 (setq list (cdr list))))
562 (setq result (reverse result))
563 ;; The current buffer which was the start point of bs should be an element
564 ;; of result list, so that we can leave with space and be back in the
565 ;; buffer we started bs-show.
566 (if (and bs--buffer-coming-from
567 (buffer-live-p bs--buffer-coming-from)
568 (not (memq bs--buffer-coming-from result)))
569 (setq result (cons bs--buffer-coming-from result)))
570 ;; sorting
571 (if (and sort-description
572 (nth 1 sort-description))
573 (setq result (sort result (nth 1 sort-description)))
574 ;; else standard sorting
575 (bs-buffer-sort result))))
576
577 (defun bs-buffer-sort (buffer-list)
578 "Sort buffers in BUFFER-LIST according to `bs-buffer-sort-function'."
579 (if bs-buffer-sort-function
580 (sort buffer-list bs-buffer-sort-function)
581 buffer-list))
582
583 (defun bs--redisplay (&optional keep-line-p sort-description)
584 "Redisplay whole Buffer Selection Menu.
585 If KEEP-LINE-P is non-nil the point will stay on current line.
586 SORT-DESCRIPTION is an element of `bs-sort-functions'."
587 (let ((line (1+ (count-lines 1 (point)))))
588 (bs-show-in-buffer (bs-buffer-list nil sort-description))
589 (if keep-line-p
590 (goto-line line))
591 (beginning-of-line)))
592
593 (defun bs--goto-current-buffer ()
594 "Goto line which represents the current buffer;
595 actually the line which begins with character in `bs-string-current' or
596 `bs-string-current-marked'."
597 (let ((regexp (concat "^"
598 (regexp-quote bs-string-current)
599 "\\|^"
600 (regexp-quote bs-string-current-marked)))
601 point)
602 (save-excursion
603 (goto-char (point-min))
604 (if (search-forward-regexp regexp nil t)
605 (setq point (- (point) 1))))
606 (if point
607 (goto-char point))))
608
609 (defun bs--current-config-message ()
610 "Return a string describing the current `bs-mode' configuration."
611 (if bs--show-all
612 "Show all buffers."
613 (format "Show buffer by configuration %S"
614 bs-current-configuration)))
615
616 (defun bs-mode ()
617 "Major mode for editing a subset of Emacs' buffers.
618 \\<bs-mode-map>
619 Aside from two header lines each line describes one buffer.
620 Move to a line representing the buffer you want to edit and select
621 buffer by \\[bs-select] or SPC. Abort buffer list with \\[bs-kill].
622 There are many key commands similar to `Buffer-menu-mode' for
623 manipulating the buffer list and buffers.
624 For faster navigation each digit key is a digit argument.
625
626 \\[bs-select] or SPACE -- select current line's buffer and other marked buffers.
627 \\[bs-toggle-show-all] -- toggle between all buffers and a special subset.
628 \\[bs-select-other-window] -- select current line's buffer in other window.
629 \\[bs-tmp-select-other-window] -- make another window display that buffer and
630 remain in Buffer Selection Menu.
631 \\[bs-mouse-select] -- select current line's buffer and other marked buffers.
632 \\[bs-save] -- save current line's buffer immediately.
633 \\[bs-delete] -- kill current line's buffer immediately.
634 \\[bs-toggle-readonly] -- toggle read-only status of current line's buffer.
635 \\[bs-clear-modified] -- clear modified-flag on that buffer.
636 \\[bs-mark-current] -- mark current line's buffer to be displayed.
637 \\[bs-unmark-current] -- unmark current line's buffer to be displayed.
638 \\[bs-show-sorted] -- display buffer list sorted by next sort aspect.
639 \\[bs-set-configuration-and-refresh] -- ask user for a configuration and \
640 apply selected configuration.
641 \\[bs-select-next-configuration] -- select and apply next \
642 available Buffer Selection Menu configuration.
643 \\[bs-kill] -- leave Buffer Selection Menu without a selection.
644 \\[bs-toggle-current-to-show] -- toggle status of appearance.
645 \\[bs-set-current-buffer-to-show-always] -- mark current line's buffer \
646 to show always.
647 \\[bs-visit-tags-table] -- call `visit-tags-table' on current line's buffer.
648 \\[bs-help] -- display this help text."
649 (interactive)
650 (kill-all-local-variables)
651 (use-local-map bs-mode-map)
652 (make-local-variable 'font-lock-defaults)
653 (make-local-variable 'font-lock-verbose)
654 (buffer-disable-undo)
655 (setq major-mode 'bs-mode
656 mode-name "Buffer-Selection-Menu"
657 buffer-read-only t
658 truncate-lines t
659 show-trailing-whitespace nil
660 font-lock-defaults '(bs-mode-font-lock-keywords t)
661 font-lock-verbose nil)
662 (run-mode-hooks 'bs-mode-hook))
663
664 (defun bs--restore-window-config ()
665 "Restore window configuration on the current frame."
666 (when bs--window-config-coming-from
667 (set-window-configuration bs--window-config-coming-from)
668 (setq bs--window-config-coming-from nil)))
669
670 (defun bs-kill ()
671 "Let buffer disappear and reset window configuration."
672 (interactive)
673 (bury-buffer (current-buffer))
674 (bs--restore-window-config))
675
676 (defun bs-abort ()
677 "Ding and leave Buffer Selection Menu without a selection."
678 (interactive)
679 (ding)
680 (bs-kill))
681
682 (defun bs-set-configuration-and-refresh ()
683 "Ask user for a configuration and apply selected configuration.
684 Refresh whole Buffer Selection Menu."
685 (interactive)
686 (call-interactively 'bs-set-configuration)
687 (bs--redisplay t))
688
689 (defun bs-refresh ()
690 "Refresh whole Buffer Selection Menu."
691 (interactive)
692 (bs--redisplay t))
693
694 (defun bs--set-window-height ()
695 "Change the height of the selected window to suit the current buffer list."
696 (unless (one-window-p t)
697 (fit-window-to-buffer (selected-window) bs-max-window-height)))
698
699 (defun bs--current-buffer ()
700 "Return buffer on current line.
701 Raise an error if not on a buffer line."
702 (beginning-of-line)
703 (let ((line (+ (- bs-header-lines-length)
704 (count-lines 1 (point)))))
705 (if (< line 0)
706 (error "You are on a header row"))
707 (nth line bs-current-list)))
708
709 (defun bs--update-current-line ()
710 "Update the entry on current line for Buffer Selection Menu."
711 (let ((buffer (bs--current-buffer))
712 (inhibit-read-only t))
713 (beginning-of-line)
714 (delete-region (point) (line-end-position))
715 (bs--insert-one-entry buffer)
716 (beginning-of-line)))
717
718 (defun bs-view ()
719 "View current line's buffer in View mode.
720 Leave Buffer Selection Menu."
721 (interactive)
722 (view-buffer (bs--current-buffer)))
723
724 (defun bs-select ()
725 "Select current line's buffer and other marked buffers.
726 If there are no marked buffers the window configuration before starting
727 Buffer Selectin Menu will be restored.
728 If there are marked buffers each marked buffer and the current line's buffer
729 will be selected in a window.
730 Leave Buffer Selection Menu."
731 (interactive)
732 (let ((buffer (bs--current-buffer)))
733 (bury-buffer (current-buffer))
734 (bs--restore-window-config)
735 (switch-to-buffer buffer)
736 (if bs--marked-buffers
737 ;; Some marked buffers for selection
738 (let* ((all (delq buffer bs--marked-buffers))
739 (height (/ (1- (frame-height)) (1+ (length all)))))
740 (delete-other-windows)
741 (switch-to-buffer buffer)
742 (while all
743 (split-window nil height)
744 (other-window 1)
745 (switch-to-buffer (car all))
746 (setq all (cdr all)))
747 ;; goto window we have started bs.
748 (other-window 1)))))
749
750 (defun bs-select-other-window ()
751 "Select current line's buffer by `switch-to-buffer-other-window'.
752 The window configuration before starting Buffer Selectin Menu will be restored
753 unless there is no other window. In this case a new window will be created.
754 Leave Buffer Selection Menu."
755 (interactive)
756 (let ((buffer (bs--current-buffer)))
757 (bury-buffer (current-buffer))
758 (bs--restore-window-config)
759 (switch-to-buffer-other-window buffer)))
760
761 (defun bs-tmp-select-other-window ()
762 "Make the other window select this line's buffer.
763 The current window remains selected."
764 (interactive)
765 (let ((buffer (bs--current-buffer)))
766 (display-buffer buffer t)))
767
768 (defun bs-select-other-frame ()
769 "Select current line's buffer in new created frame.
770 Leave Buffer Selection Menu."
771 (interactive)
772 (let ((buffer (bs--current-buffer)))
773 (bury-buffer (current-buffer))
774 (bs--restore-window-config)
775 (switch-to-buffer-other-frame buffer)))
776
777 (defun bs-mouse-select-other-frame (event)
778 "Select selected line's buffer in new created frame.
779 Leave Buffer Selection Menu.
780 EVENT: a mouse click EVENT."
781 (interactive "e")
782 (mouse-set-point event)
783 (bs-select-other-frame))
784
785 (defun bs-mouse-select (event)
786 "Select buffer on mouse click EVENT.
787 Select buffer by `bs-select'."
788 (interactive "e")
789 (mouse-set-point event)
790 (bs-select))
791
792 (defun bs-select-in-one-window ()
793 "Select current line's buffer in one window and delete other windows.
794 Leave Buffer Selection Menu."
795 (interactive)
796 (bs-select)
797 (delete-other-windows))
798
799 (defun bs-bury-buffer ()
800 "Bury buffer on current line."
801 (interactive)
802 (bury-buffer (bs--current-buffer))
803 (bs--redisplay t))
804
805 (defun bs-save ()
806 "Save buffer on current line."
807 (interactive)
808 (let ((buffer (bs--current-buffer)))
809 (save-excursion
810 (set-buffer buffer)
811 (save-buffer))
812 (bs--update-current-line)))
813
814 (defun bs-visit-tags-table ()
815 "Visit the tags table in the buffer on this line.
816 See `visit-tags-table'."
817 (interactive)
818 (let ((file (buffer-file-name (bs--current-buffer))))
819 (if file
820 (visit-tags-table file)
821 (error "Specified buffer has no file"))))
822
823 (defun bs-toggle-current-to-show ()
824 "Toggle status of showing flag for buffer in current line."
825 (interactive)
826 (let ((buffer (bs--current-buffer))
827 res)
828 (save-excursion
829 (set-buffer buffer)
830 (setq res (cond ((null bs-buffer-show-mark)
831 'never)
832 ((eq bs-buffer-show-mark 'never)
833 'always)
834 (t nil)))
835 (setq bs-buffer-show-mark res))
836 (bs--update-current-line)
837 (bs--set-window-height)
838 (bs--show-config-message res)))
839
840 (defun bs-set-current-buffer-to-show-always (&optional not-to-show-p)
841 "Toggle status of buffer on line to `always shown'.
842 NOT-TO-SHOW-P: prefix argument.
843 With no prefix argument the buffer on current line is marked to show
844 always. Otherwise it is marked to show never."
845 (interactive "P")
846 (if not-to-show-p
847 (bs-set-current-buffer-to-show-never)
848 (bs--set-toggle-to-show (bs--current-buffer) 'always)))
849
850 (defun bs-set-current-buffer-to-show-never ()
851 "Toggle status of buffer on line to `never shown'."
852 (interactive)
853 (bs--set-toggle-to-show (bs--current-buffer) 'never))
854
855 (defun bs--set-toggle-to-show (buffer what)
856 "Set value `bs-buffer-show-mark' of buffer BUFFER to WHAT.
857 Redisplay current line and display a message describing
858 the status of buffer on current line."
859 (with-current-buffer buffer (setq bs-buffer-show-mark what))
860 (bs--update-current-line)
861 (bs--set-window-height)
862 (bs--show-config-message what))
863
864 (defun bs-mark-current (count)
865 "Mark buffers.
866 COUNT is the number of buffers to mark.
867 Move cursor vertically down COUNT lines."
868 (interactive "p")
869 (let ((dir (if (> count 0) 1 -1))
870 (count (abs count)))
871 (while (> count 0)
872 (let ((buffer (bs--current-buffer)))
873 (if buffer
874 (setq bs--marked-buffers (cons buffer bs--marked-buffers)))
875 (bs--update-current-line)
876 (bs-down dir))
877 (setq count (1- count)))))
878
879 (defun bs-unmark-current (count)
880 "Unmark buffers.
881 COUNT is the number of buffers to unmark.
882 Move cursor vertically down COUNT lines."
883 (interactive "p")
884 (let ((dir (if (> count 0) 1 -1))
885 (count (abs count)))
886 (while (> count 0)
887 (let ((buffer (bs--current-buffer)))
888 (if buffer
889 (setq bs--marked-buffers (delq buffer bs--marked-buffers)))
890 (bs--update-current-line)
891 (bs-down dir))
892 (setq count (1- count)))))
893
894 (defun bs--show-config-message (what)
895 "Show message indicating the new showing status WHAT.
896 WHAT is a value of nil, `never', or `always'."
897 (bs-message-without-log (cond ((null what)
898 "Buffer will be shown normally.")
899 ((eq what 'never)
900 "Mark buffer to never be shown.")
901 (t "Mark buffer to show always."))))
902
903 (defun bs-delete ()
904 "Kill buffer on current line."
905 (interactive)
906 (let ((current (bs--current-buffer))
907 (inhibit-read-only t))
908 (unless (kill-buffer current)
909 (error "Buffer was not deleted"))
910 (setq bs-current-list (delq current bs-current-list))
911 (beginning-of-line)
912 (delete-region (point) (save-excursion
913 (end-of-line)
914 (if (eobp) (point) (1+ (point)))))
915 (if (eobp)
916 (progn
917 (backward-delete-char 1)
918 (beginning-of-line)
919 (recenter -1)))
920 (bs--set-window-height)))
921
922 (defun bs-delete-backward ()
923 "Like `bs-delete' but go to buffer in front of current."
924 (interactive)
925 (let ((on-last-line-p (save-excursion (end-of-line) (eobp))))
926 (bs-delete)
927 (unless on-last-line-p
928 (bs-up 1))))
929
930 (defun bs-show-sorted ()
931 "Show buffer list sorted by buffer name."
932 (interactive)
933 (setq bs--current-sort-function
934 (bs-next-config-aux (car bs--current-sort-function)
935 bs-sort-functions))
936 (bs--redisplay)
937 (bs--goto-current-buffer)
938 (bs-message-without-log "Sorted %s" (car bs--current-sort-function)))
939
940 (defun bs-apply-sort-faces (&optional sort-description)
941 "Set text properties for the sort described by SORT-DESCRIPTION.
942 SORT-DESCRIPTION is an element of `bs-sort-functions'.
943 Default is `bs--current-sort-function'."
944 (let ((sort-description (or sort-description
945 bs--current-sort-function)))
946 (save-excursion
947 (goto-char (point-min))
948 (if (and (nth 2 sort-description)
949 (search-forward-regexp (nth 2 sort-description) nil t))
950 (let ((inhibit-read-only t))
951 (put-text-property (match-beginning 0)
952 (match-end 0)
953 'face
954 (or (nth 3 sort-description)
955 'region)))))))
956
957 (defun bs-toggle-show-all ()
958 "Toggle show all buffers / show buffers with current configuration."
959 (interactive)
960 (setq bs--show-all (not bs--show-all))
961 (bs--redisplay)
962 (bs--goto-current-buffer)
963 (bs-message-without-log "%s" (bs--current-config-message)))
964
965 (defun bs-toggle-readonly ()
966 "Toggle read-only status for buffer on current line.
967 Uses function `vc-toggle-read-only'."
968 (interactive)
969 (let ((buffer (bs--current-buffer)))
970 (save-excursion
971 (set-buffer buffer)
972 (vc-toggle-read-only))
973 (bs--update-current-line)))
974
975 (defun bs-clear-modified ()
976 "Set modified flag for buffer on current line to nil."
977 (interactive)
978 (let ((buffer (bs--current-buffer)))
979 (save-excursion
980 (set-buffer buffer)
981 (set-buffer-modified-p nil)))
982 (bs--update-current-line))
983
984 (defun bs--nth-wrapper (count fun &rest args)
985 "Call COUNT times function FUN with arguments ARGS."
986 (setq count (or count 1))
987 (while (> count 0)
988 (apply fun args)
989 (setq count (1- count))))
990
991 (defun bs-up (arg)
992 "Move cursor vertically up ARG lines in Buffer Selection Menu."
993 (interactive "p")
994 (if (and arg (numberp arg) (< arg 0))
995 (bs--nth-wrapper (- arg) 'bs--down)
996 (bs--nth-wrapper arg 'bs--up)))
997
998 (defun bs--up ()
999 "Move cursor vertically up one line.
1000 If on top of buffer list go to last line."
1001 (if (> (count-lines 1 (point)) bs-header-lines-length)
1002 (forward-line -1)
1003 (goto-char (point-max))
1004 (beginning-of-line)
1005 (recenter -1)))
1006
1007 (defun bs-down (arg)
1008 "Move cursor vertically down ARG lines in Buffer Selection Menu."
1009 (interactive "p")
1010 (if (and arg (numberp arg) (< arg 0))
1011 (bs--nth-wrapper (- arg) 'bs--up)
1012 (bs--nth-wrapper arg 'bs--down)))
1013
1014 (defun bs--down ()
1015 "Move cursor vertically down one line.
1016 If at end of buffer list go to first line."
1017 (if (eq (line-end-position) (point-max))
1018 (goto-line (1+ bs-header-lines-length))
1019 (forward-line 1)))
1020
1021 (defun bs-visits-non-file (buffer)
1022 "Return t or nil whether BUFFER visits no file.
1023 A value of t means BUFFER belongs to no file.
1024 A value of nil means BUFFER belongs to a file."
1025 (not (buffer-file-name buffer)))
1026
1027 (defun bs-sort-buffer-interns-are-last (b1 b2)
1028 "Function for sorting internal buffers B1 and B2 at the end of all buffers."
1029 (string-match "^\\*" (buffer-name b2)))
1030
1031 ;; ----------------------------------------------------------------------
1032 ;; Configurations:
1033 ;; ----------------------------------------------------------------------
1034
1035 (defun bs-config-clear ()
1036 "Reset all variables which specify a configuration.
1037 These variables are `bs-dont-show-regexp', `bs-must-show-regexp',
1038 `bs-dont-show-function', `bs-must-show-function' and
1039 `bs-buffer-sort-function'."
1040 (setq bs-dont-show-regexp nil
1041 bs-must-show-regexp nil
1042 bs-dont-show-function nil
1043 bs-must-show-function nil
1044 bs-buffer-sort-function nil))
1045
1046 (defun bs-config--only-files ()
1047 "Define a configuration for showing only buffers visiting a file."
1048 (bs-config-clear)
1049 (setq ;; I want to see *-buffers at the end
1050 bs-buffer-sort-function 'bs-sort-buffer-interns-are-last
1051 ;; Don't show files who don't belong to a file
1052 bs-dont-show-function 'bs-visits-non-file))
1053
1054 (defun bs-config--files-and-scratch ()
1055 "Define a configuration for showing buffer *scratch* and file buffers."
1056 (bs-config-clear)
1057 (setq ;; I want to see *-buffers at the end
1058 bs-buffer-sort-function 'bs-sort-buffer-interns-are-last
1059 ;; Don't show files who don't belong to a file
1060 bs-dont-show-function 'bs-visits-non-file
1061 ;; Show *scratch* buffer.
1062 bs-must-show-regexp "^\\*scratch\\*$"))
1063
1064 (defun bs-config--all ()
1065 "Define a configuration for showing all buffers.
1066 Reset all according variables by `bs-config-clear'."
1067 (bs-config-clear))
1068
1069 (defun bs-config--all-intern-last ()
1070 "Define a configuration for showing all buffers.
1071 Internal buffers appear at end of all buffers."
1072 (bs-config-clear)
1073 ;; I want to see *-buffers at the end
1074 (setq bs-buffer-sort-function 'bs-sort-buffer-interns-are-last))
1075
1076 (defun bs-set-configuration (name)
1077 "Set configuration to the one saved under string NAME in `bs-configurations'.
1078 When called interactively ask user for a configuration and apply selected
1079 configuration."
1080 (interactive (list (completing-read "Use configuration: "
1081 bs-configurations
1082 nil
1083 t)))
1084 (let ((list (assoc name bs-configurations)))
1085 (if list
1086 (if (listp list)
1087 (setq bs-current-configuration name
1088 bs-must-show-regexp (nth 1 list)
1089 bs-must-show-function (nth 2 list)
1090 bs-dont-show-regexp (nth 3 list)
1091 bs-dont-show-function (nth 4 list)
1092 bs-buffer-sort-function (nth 5 list))
1093 ;; for backward compability
1094 (funcall (cdr list)))
1095 ;; else
1096 (ding)
1097 (bs-message-without-log "No bs-configuration named %S." name))))
1098
1099 (defun bs-help ()
1100 "Help for `bs-show'."
1101 (interactive)
1102 (describe-function 'bs-mode))
1103
1104 (defun bs-next-config-aux (start-name list)
1105 "Get the next assoc after START-NAME in list LIST.
1106 Will return the first if START-NAME is at end."
1107 (let ((assocs list)
1108 (length (length list))
1109 pos)
1110 (while (and assocs (not pos))
1111 (if (string= (car (car assocs)) start-name)
1112 (setq pos (- length (length assocs))))
1113 (setq assocs (cdr assocs)))
1114 (setq pos (1+ pos))
1115 (if (eq pos length)
1116 (car list)
1117 (nth pos list))))
1118
1119 (defun bs-next-config (name)
1120 "Return next configuration with respect to configuration with name NAME."
1121 (bs-next-config-aux name bs-configurations))
1122
1123 (defun bs-select-next-configuration (&optional start-name)
1124 "Apply next configuration START-NAME and refresh buffer list.
1125 If START-NAME is nil the current configuration `bs-current-configuration'
1126 will be used."
1127 (interactive)
1128 (let ((config (bs-next-config (or start-name bs-current-configuration))))
1129 (bs-set-configuration (car config))
1130 (setq bs-default-configuration bs-current-configuration)
1131 (bs--redisplay t)
1132 (bs--set-window-height)
1133 (bs-message-without-log "Selected configuration: %s" (car config))))
1134
1135 (defun bs-show-in-buffer (list)
1136 "Display buffer list LIST in buffer *buffer-selection*.
1137 Select buffer *buffer-selection* and display buffers according to current
1138 configuration `bs-current-configuration'. Set window height, fontify buffer
1139 and move point to current buffer."
1140 (setq bs-current-list list)
1141 (switch-to-buffer (get-buffer-create "*buffer-selection*"))
1142 (bs-mode)
1143 (let* ((inhibit-read-only t)
1144 (map-fun (lambda (entry)
1145 (length (buffer-name entry))))
1146 (max-length-of-names (apply 'max
1147 (cons 0 (mapcar map-fun list))))
1148 (name-entry-length (min bs-maximal-buffer-name-column
1149 (max bs-minimal-buffer-name-column
1150 max-length-of-names))))
1151 (erase-buffer)
1152 (setq bs--name-entry-length name-entry-length)
1153 (bs--show-header)
1154 (while list
1155 (bs--insert-one-entry (car list))
1156 (insert "\n")
1157 (setq list (cdr list)))
1158 (delete-backward-char 1)
1159 (bs--set-window-height)
1160 (bs--goto-current-buffer)
1161 (font-lock-fontify-buffer)
1162 (bs-apply-sort-faces)
1163 (set-buffer-modified-p nil)))
1164
1165 (defun bs-next-buffer (&optional buffer-list sorting-p)
1166 "Return next buffer and buffer list for buffer cycling in BUFFER-LIST.
1167 Ignore sorting when SORTING-P is nil.
1168 If BUFFER-LIST is nil the result of `bs-buffer-list' will be used as
1169 buffer list. The result is a cons of normally the second element of
1170 BUFFER-LIST and the buffer list used for buffer cycling."
1171 (let* ((bs--current-sort-function (if sorting-p
1172 bs--current-sort-function))
1173 (bs-buffer-list (or buffer-list (bs-buffer-list))))
1174 (cons (or (car (cdr bs-buffer-list))
1175 (car bs-buffer-list)
1176 (current-buffer))
1177 bs-buffer-list)))
1178
1179 (defun bs-previous-buffer (&optional buffer-list sorting-p)
1180 "Return previous buffer and buffer list for buffer cycling in BUFFER-LIST.
1181 Ignore sorting when SORTING-P is nil.
1182 If BUFFER-LIST is nil the result of `bs-buffer-list' will be used as
1183 buffer list. The result is a cons of last element of BUFFER-LIST and the
1184 buffer list used for buffer cycling."
1185 (let* ((bs--current-sort-function (if sorting-p
1186 bs--current-sort-function))
1187 (bs-buffer-list (or buffer-list (bs-buffer-list))))
1188 (cons (or (car (last bs-buffer-list))
1189 (current-buffer))
1190 bs-buffer-list)))
1191
1192 (defun bs-message-without-log (&rest args)
1193 "Like `message' but don't log it on the message log.
1194 All arguments ARGS are transferred to function `message'."
1195 (let ((message-log-max nil))
1196 (apply 'message args)))
1197
1198 (defvar bs--cycle-list nil
1199 "Current buffer list used for cycling.")
1200
1201 ;;;###autoload
1202 (defun bs-cycle-next ()
1203 "Select next buffer defined by buffer cycling.
1204 The buffers taking part in buffer cycling are defined
1205 by buffer configuration `bs-cycle-configuration-name'."
1206 (interactive)
1207 (let ((bs--buffer-coming-from (current-buffer))
1208 (bs-dont-show-regexp bs-dont-show-regexp)
1209 (bs-must-show-regexp bs-must-show-regexp)
1210 (bs-dont-show-function bs-dont-show-function)
1211 (bs-must-show-function bs-must-show-function)
1212 (bs--show-all nil))
1213 (bs-set-configuration (or bs-cycle-configuration-name bs-default-configuration))
1214 (let ((bs-buffer-sort-function nil)
1215 (bs--current-sort-function nil))
1216 (let* ((tupel (bs-next-buffer (if (or (eq last-command
1217 'bs-cycle-next)
1218 (eq last-command
1219 'bs-cycle-previous))
1220 bs--cycle-list)))
1221 (next (car tupel))
1222 (cycle-list (cdr tupel)))
1223 (unless (window-dedicated-p (selected-window))
1224 ;; We don't want the frame iconified if the only window in the frame
1225 ;; happens to be dedicated; let's get the error from switch-to-buffer
1226 (bury-buffer))
1227 (switch-to-buffer next)
1228 (setq bs--cycle-list (append (cdr cycle-list)
1229 (list (car cycle-list))))
1230 (bs-message-without-log "Next buffers: %s"
1231 (or (cdr bs--cycle-list)
1232 "this buffer"))))))
1233
1234 ;;;###autoload
1235 (defun bs-cycle-previous ()
1236 "Select previous buffer defined by buffer cycling.
1237 The buffers taking part in buffer cycling are defined
1238 by buffer configuration `bs-cycle-configuration-name'."
1239 (interactive)
1240 (let ((bs--buffer-coming-from (current-buffer))
1241 (bs-dont-show-regexp bs-dont-show-regexp)
1242 (bs-must-show-regexp bs-must-show-regexp)
1243 (bs-dont-show-function bs-dont-show-function)
1244 (bs-must-show-function bs-must-show-function)
1245 (bs--show-all nil))
1246 (bs-set-configuration (or bs-cycle-configuration-name bs-default-configuration))
1247 (let ((bs-buffer-sort-function nil)
1248 (bs--current-sort-function nil))
1249 (let* ((tupel (bs-previous-buffer (if (or (eq last-command
1250 'bs-cycle-next)
1251 (eq last-command
1252 'bs-cycle-previous))
1253 bs--cycle-list)))
1254 (prev-buffer (car tupel))
1255 (cycle-list (cdr tupel)))
1256 (switch-to-buffer prev-buffer)
1257 (setq bs--cycle-list (append (last cycle-list)
1258 (reverse (cdr (reverse cycle-list)))))
1259 (bs-message-without-log "Previous buffers: %s"
1260 (or (reverse (cdr bs--cycle-list))
1261 "this buffer"))))))
1262
1263 (defun bs--get-value (fun &optional args)
1264 "Apply function FUN with arguments ARGS.
1265 Return result of evaluation. Will return FUN if FUN is a number
1266 or a string."
1267 (cond ((numberp fun)
1268 fun)
1269 ((stringp fun)
1270 fun)
1271 (t (apply fun args))))
1272
1273 (defun bs--get-marked-string (start-buffer all-buffers)
1274 "Return a string which describes whether current buffer is marked.
1275 START-BUFFER is the buffer where we started buffer selection.
1276 ALL-BUFFERS is the list of buffer appearing in Buffer Selection Menu.
1277 The result string is one of `bs-string-current', `bs-string-current-marked',
1278 `bs-string-marked', `bs-string-show-normally', `bs-string-show-never', or
1279 `bs-string-show-always'."
1280 (cond ;; current buffer is the buffer we started buffer selection.
1281 ((eq (current-buffer) start-buffer)
1282 (if (memq (current-buffer) bs--marked-buffers)
1283 bs-string-current-marked ; buffer is marked
1284 bs-string-current))
1285 ;; current buffer is marked
1286 ((memq (current-buffer) bs--marked-buffers)
1287 bs-string-marked)
1288 ;; current buffer hasn't a special mark.
1289 ((null bs-buffer-show-mark)
1290 bs-string-show-normally)
1291 ;; current buffer has a mark not to show itself.
1292 ((eq bs-buffer-show-mark 'never)
1293 bs-string-show-never)
1294 ;; otherwise current buffer is marked to show always.
1295 (t
1296 bs-string-show-always)))
1297
1298 (defun bs--get-modified-string (start-buffer all-buffers)
1299 "Return a string which describes whether current buffer is modified.
1300 START-BUFFER is the buffer where we started buffer selection.
1301 ALL-BUFFERS is the list of buffer appearing in Buffer Selection Menu."
1302 (if (buffer-modified-p) "*" " "))
1303
1304 (defun bs--get-readonly-string (start-buffer all-buffers)
1305 "Return a string which describes whether current buffer is read only.
1306 START-BUFFER is the buffer where we started buffer selection.
1307 ALL-BUFFERS is the list of buffer appearing in Buffer Selection Menu."
1308 (if buffer-read-only "%" " "))
1309
1310 (defun bs--get-size-string (start-buffer all-buffers)
1311 "Return a string which describes the size of current buffer.
1312 START-BUFFER is the buffer where we started buffer selection.
1313 ALL-BUFFERS is the list of buffer appearing in Buffer Selection Menu."
1314 (int-to-string (buffer-size)))
1315
1316 (defun bs--get-name (start-buffer all-buffers)
1317 "Return name of current buffer for Buffer Selection Menu.
1318 The name of current buffer gets additional text properties
1319 for mouse highlighting.
1320 START-BUFFER is the buffer where we started buffer selection.
1321 ALL-BUFFERS is the list of buffer appearing in Buffer Selection Menu."
1322 (propertize (buffer-name)
1323 'help-echo "mouse-2: select this buffer, mouse-3: select in other frame"
1324 'mouse-face 'highlight))
1325
1326 (defun bs--get-mode-name (start-buffer all-buffers)
1327 "Return the name of mode of current buffer for Buffer Selection Menu.
1328 START-BUFFER is the buffer where we started buffer selection.
1329 ALL-BUFFERS is the list of buffer appearing in Buffer Selection Menu."
1330 mode-name)
1331
1332 (defun bs--get-file-name (start-buffer all-buffers)
1333 "Return string for column 'File' in Buffer Selection Menu.
1334 This is the variable `buffer-file-name' of current buffer.
1335 If current mode is `dired-mode' or `shell-mode' it returns the
1336 default directory.
1337 START-BUFFER is the buffer where we started buffer selection.
1338 ALL-BUFFERS is the list of buffer appearing in Buffer Selection Menu."
1339 (propertize (if (member major-mode '(shell-mode dired-mode))
1340 default-directory
1341 (or buffer-file-name ""))
1342 'mouse-face 'highlight
1343 'help-echo "mouse-2: select this buffer, mouse-3: select in other frame"))
1344
1345 (defun bs--insert-one-entry (buffer)
1346 "Generate one entry for buffer BUFFER in Buffer Selection Menu.
1347 It goes over all columns described in `bs-attributes-list'
1348 and evaluates corresponding string. Inserts string in current buffer;
1349 normally *buffer-selection*."
1350 (let ((string "")
1351 (columns bs-attributes-list)
1352 (to-much 0)
1353 (apply-args (append (list bs--buffer-coming-from bs-current-list))))
1354 (save-excursion
1355 (while columns
1356 (set-buffer buffer)
1357 (let ((min (bs--get-value (nth 1 (car columns))))
1358 ;;(max (bs--get-value (nth 2 (car columns)))) refered no more
1359 (align (nth 3 (car columns)))
1360 (fun (nth 4 (car columns)))
1361 (val nil)
1362 new-string)
1363 (setq val (bs--get-value fun apply-args))
1364 (setq new-string (bs--format-aux val align (- min to-much)))
1365 (setq string (concat string new-string))
1366 (if (> (length new-string) min)
1367 (setq to-much (- (length new-string) min)))
1368 ) ; let
1369 (setq columns (cdr columns))))
1370 (insert string)
1371 string))
1372
1373 (defun bs--format-aux (string align len)
1374 "Generate a string with STRING with alignment ALIGN and length LEN.
1375 ALIGN is one of the symbols `left', `middle', or `right'."
1376 (let* ((width (length string))
1377 (len (max len width)))
1378 (format (format "%%%s%ds" (if (eq align 'right) "" "-") len)
1379 (if (eq align 'middle)
1380 (concat (make-string (/ (- len width) 2) ?\s) string)
1381 string))))
1382
1383 (defun bs--show-header ()
1384 "Insert header for Buffer Selection Menu in current buffer."
1385 (dolist (string (bs--create-header))
1386 (insert string "\n")))
1387
1388 (defun bs--get-name-length ()
1389 "Return value of `bs--name-entry-length'."
1390 bs--name-entry-length)
1391
1392 (defun bs--create-header ()
1393 "Return all header lines used in Buffer Selection Menu as a list of strings."
1394 (list (mapconcat (lambda (column)
1395 (bs--format-aux (bs--get-value (car column))
1396 (nth 3 column) ; align
1397 (bs--get-value (nth 1 column))))
1398 bs-attributes-list
1399 "")
1400 (mapconcat (lambda (column)
1401 (let ((length (length (bs--get-value (car column)))))
1402 (bs--format-aux (make-string length ?-)
1403 (nth 3 column) ; align
1404 (bs--get-value (nth 1 column)))))
1405 bs-attributes-list
1406 "")))
1407
1408 (defun bs--show-with-configuration (name &optional arg)
1409 "Display buffer list of configuration with name NAME.
1410 Set configuration NAME and determine window for Buffer Selection Menu.
1411 Unless current buffer is buffer *buffer-selection* we have to save
1412 the buffer we started Buffer Selection Menu and the current window
1413 configuration to restore buffer and window configuration after a
1414 selection. If there is already a window displaying *buffer-selection*
1415 select this window for Buffer Selection Menu. Otherwise open a new
1416 window.
1417 The optional argument ARG is the prefix argument when calling a function
1418 for buffer selection."
1419 (bs-set-configuration name)
1420 (let ((bs--show-all (or bs--show-all arg)))
1421 (unless (string= "*buffer-selection*" (buffer-name))
1422 ;; Only when not in buffer *buffer-selection*
1423 ;; we have to set the buffer we started the command
1424 (setq bs--buffer-coming-from (current-buffer)))
1425 (let ((liste (bs-buffer-list))
1426 (active-window (get-window-with-predicate
1427 (lambda (w)
1428 (string= (buffer-name (window-buffer w))
1429 "*buffer-selection*")))))
1430 (if active-window
1431 (select-window active-window)
1432 (modify-frame-parameters nil
1433 (list (cons 'bs--window-config-coming-from
1434 (current-window-configuration))))
1435 (when (> (window-height (selected-window)) 7)
1436 (split-window-vertically)
1437 (other-window 1)))
1438 (bs-show-in-buffer liste)
1439 (bs-message-without-log "%s" (bs--current-config-message)))))
1440
1441 (defun bs--configuration-name-for-prefix-arg (prefix-arg)
1442 "Convert prefix argument PREFIX-ARG to a name of a buffer configuration.
1443 If PREFIX-ARG is nil return `bs-default-configuration'.
1444 If PREFIX-ARG is an integer return PREFIX-ARG element of `bs-configurations'.
1445 Otherwise return `bs-alternative-configuration'."
1446 (cond ;; usually activation
1447 ((null prefix-arg)
1448 bs-default-configuration)
1449 ;; call with integer as prefix argument
1450 ((integerp prefix-arg)
1451 (if (and (< 0 prefix-arg) (<= prefix-arg (length bs-configurations)))
1452 (car (nth (1- prefix-arg) bs-configurations))
1453 bs-default-configuration))
1454 ;; call by prefix argument C-u
1455 (t bs-alternative-configuration)))
1456
1457 ;; ----------------------------------------------------------------------
1458 ;; Main function bs-customize and bs-show
1459 ;; ----------------------------------------------------------------------
1460
1461 ;;;###autoload
1462 (defun bs-customize ()
1463 "Customization of group bs for Buffer Selection Menu."
1464 (interactive)
1465 (customize-group "bs"))
1466
1467 ;;;###autoload
1468 (defun bs-show (arg)
1469 "Make a menu of buffers so you can manipulate buffers or the buffer list.
1470 \\<bs-mode-map>
1471 There are many key commands similar to `Buffer-menu-mode' for
1472 manipulating buffer list and buffers itself.
1473 User can move with [up] or [down], select a buffer
1474 by \\[bs-select] or [SPC]\n
1475 Type \\[bs-kill] to leave Buffer Selection Menu without a selection.
1476 Type \\[bs-help] after invocation to get help on commands available.
1477 With prefix argument ARG show a different buffer list. Function
1478 `bs--configuration-name-for-prefix-arg' determine accordingly
1479 name of buffer configuration."
1480 (interactive "P")
1481 (setq bs--marked-buffers nil)
1482 (bs--show-with-configuration (bs--configuration-name-for-prefix-arg arg)))
1483
1484 ;; Now provide feature bs
1485 (provide 'bs)
1486
1487 ;;; arch-tag: c0d9ab34-bf06-4368-ae9d-af88878e6802
1488 ;;; bs.el ends here