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