comparison lisp/bs.el @ 27016:62cd5f1749cc

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