Mercurial > emacs
annotate lisp/bs.el @ 95238:2763e6e1fbe8
Spelling fix.
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Fri, 23 May 2008 04:41:33 +0000 |
parents | ee5932bf781d |
children | 5f58c2a66de7 |
rev | line source |
---|---|
27016 | 1 ;;; bs.el --- menu for selecting and displaying buffers |
2 | |
64762
41bb365f41c4
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64676
diff
changeset
|
3 ;; Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, |
87567
4c3c683cdff8
* erc-ibuffer.el (erc-channel-modes):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85688
diff
changeset
|
4 ;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc. |
27016 | 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 | |
94678
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
87578
diff
changeset
|
11 ;; GNU Emacs is free software: you can redistribute it and/or modify |
27016 | 12 ;; it under the terms of the GNU General Public License as published by |
94678
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
87578
diff
changeset
|
13 ;; the Free Software Foundation, either version 3 of the License, or |
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
87578
diff
changeset
|
14 ;; (at your option) any later version. |
27016 | 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 | |
94678
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
87578
diff
changeset
|
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
27016 | 23 |
24 ;;; Commentary: | |
25 | |
26 ;; Version: 1.17 | |
64676
98420b62843f
(bs-attributes-list): Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
27 ;; X-URL: http://www.geekware.de/software/emacs |
27016 | 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 ;; | |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
67 ;; Additional features for Buffer Selection Menu: |
27016 | 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 ;; ---------------------------------------------------------------------- | |
133 ;; Globals for customization | |
134 ;; ---------------------------------------------------------------------- | |
135 | |
136 (defgroup bs nil | |
137 "Buffer Selection: Maintaining buffers by buffer menu." | |
27576 | 138 :version "21.1" |
30799 | 139 :link '(emacs-commentary-link "bs") |
64676
98420b62843f
(bs-attributes-list): Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
140 :link '(url-link "http://www.geekware.de/software/emacs") |
27016 | 141 :group 'convenience) |
142 | |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
143 (defgroup bs-appearance nil |
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
144 "Buffer Selection appearance: Appearance of bs buffer menu." |
27016 | 145 :group 'bs) |
146 | |
147 (defcustom bs-attributes-list | |
148 '(("" 1 1 left bs--get-marked-string) | |
149 ("M" 1 1 left bs--get-modified-string) | |
150 ("R" 2 2 left bs--get-readonly-string) | |
151 ("Buffer" bs--get-name-length 10 left bs--get-name) | |
152 ("" 1 1 left " ") | |
153 ("Size" 8 8 right bs--get-size-string) | |
154 ("" 1 1 left " ") | |
155 ("Mode" 12 12 right bs--get-mode-name) | |
156 ("" 2 2 left " ") | |
157 ("File" 12 12 left bs--get-file-name) | |
158 ("" 2 2 left " ")) | |
85325
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
159 "List specifying the layout of a Buffer Selection Menu buffer. |
27016 | 160 Each entry specifies a column and is a list of the form of: |
36415
55f2a0bdaf30
(bs-attributes-list): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents:
34048
diff
changeset
|
161 \(HEADER MINIMUM-LENGTH MAXIMUM-LENGTH ALIGNMENT FUN-OR-STRING) |
64676
98420b62843f
(bs-attributes-list): Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
162 |
98420b62843f
(bs-attributes-list): Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
163 HEADER : String for header for first line or a function |
98420b62843f
(bs-attributes-list): Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
164 which calculates column title. |
98420b62843f
(bs-attributes-list): Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
165 MINIMUM-LENGTH : Minimum width of column (number or name of function). |
98420b62843f
(bs-attributes-list): Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
166 The function must return a positive integer. |
98420b62843f
(bs-attributes-list): Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
167 MAXIMUM-LENGTH : Maximum width of column (number or name of function) |
98420b62843f
(bs-attributes-list): Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
168 (currently ignored). |
98420b62843f
(bs-attributes-list): Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
169 ALIGNMENT : Alignment of column (`left', `right', `middle'). |
98420b62843f
(bs-attributes-list): Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
170 FUN-OR-STRING : Name of a function for calculating the value or a |
98420b62843f
(bs-attributes-list): Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
171 string for a constant value. |
98420b62843f
(bs-attributes-list): Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
172 |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
173 The function gets as parameter the buffer where we have started |
27016 | 174 buffer selection and the list of all buffers to show. The function must |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
175 return a string representing the column's value." |
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
176 :group 'bs-appearance |
27016 | 177 :type '(repeat sexp)) |
178 | |
179 (defun bs--make-header-match-string () | |
180 "Return a regexp matching the first line of a Buffer Selection Menu buffer." | |
85325
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
181 (concat "^\\(" (mapconcat #'car bs-attributes-list " *") " *$\\)")) |
27016 | 182 |
39568
e67950065cf9
Change ;;; to ;; for outline-minor-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
38095
diff
changeset
|
183 ;; Font-Lock-Settings |
27016 | 184 (defvar bs-mode-font-lock-keywords |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
185 (list ;; header in font-lock-type-face |
30799 | 186 (list (bs--make-header-match-string) |
187 '(1 font-lock-type-face append) '(1 'bold append)) | |
188 ;; Buffername embedded by * | |
189 (list "^\\(.*\\*.*\\*.*\\)$" | |
30893
939272c1c28b
(bs-mode-font-lock-keywords): Avoid testing for XEmacs.
Dave Love <fx@gnu.org>
parents:
30799
diff
changeset
|
190 1 |
939272c1c28b
(bs-mode-font-lock-keywords): Avoid testing for XEmacs.
Dave Love <fx@gnu.org>
parents:
30799
diff
changeset
|
191 ;; problem in XEmacs with font-lock-constant-face |
939272c1c28b
(bs-mode-font-lock-keywords): Avoid testing for XEmacs.
Dave Love <fx@gnu.org>
parents:
30799
diff
changeset
|
192 (if (facep 'font-lock-constant-face) |
939272c1c28b
(bs-mode-font-lock-keywords): Avoid testing for XEmacs.
Dave Love <fx@gnu.org>
parents:
30799
diff
changeset
|
193 'font-lock-constant-face |
939272c1c28b
(bs-mode-font-lock-keywords): Avoid testing for XEmacs.
Dave Love <fx@gnu.org>
parents:
30799
diff
changeset
|
194 'font-lock-comment-face)) |
30799 | 195 ;; Dired-Buffers |
196 '("^..\\(.*Dired by .*\\)$" 1 font-lock-function-name-face) | |
197 ;; the star for modified buffers | |
198 '("^.\\(\\*\\) +[^\\*]" 1 font-lock-comment-face)) | |
27016 | 199 "Default font lock expressions for Buffer Selection Menu.") |
200 | |
201 (defcustom bs-max-window-height 20 | |
85325
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
202 "Maximal window height of Buffer Selection Menu." |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
203 :group 'bs-appearance |
27016 | 204 :type 'integer) |
205 | |
206 (defvar bs-dont-show-regexp nil | |
207 "Regular expression specifying which buffers not to show. | |
208 A buffer whose name matches this regular expression will not be | |
209 included in the buffer list.") | |
210 | |
211 (defvar bs-must-show-regexp nil | |
212 "Regular expression for specifying buffers which must be shown. | |
213 A buffer whose name matches this regular expression will be | |
214 included in the buffer list. | |
215 Note that this variable is temporary: if the configuration is changed | |
216 it is reset to nil. Use `bs-must-always-show-regexp' to specify buffers | |
217 that must always be shown regardless of the configuration.") | |
218 | |
219 (defcustom bs-must-always-show-regexp nil | |
85325
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
220 "Regular expression for specifying buffers to show always. |
27016 | 221 A buffer whose name matches this regular expression will |
222 be shown regardless of current configuration of Buffer Selection Menu." | |
223 :group 'bs | |
224 :type '(choice (const :tag "Nothing at all" nil) regexp)) | |
225 | |
226 (defvar bs-dont-show-function nil | |
227 "Function for specifying buffers not to show. | |
228 The function gets one argument - the buffer to test. The function must | |
229 return a value different from nil to ignore the buffer in | |
230 Buffer Selection Menu.") | |
231 | |
232 (defvar bs-must-show-function nil | |
233 "Function for specifying buffers which must be shown. | |
234 The function gets one argument - the buffer to test.") | |
235 | |
236 (defvar bs-buffer-sort-function nil | |
237 "Sort function to sort the buffers that appear in Buffer Selection Menu. | |
78954
fad130192ad9
(bs-string-show-normally, bs-sort-functions, bs--get-file-name):
Juanma Barranquero <lekktu@gmail.com>
parents:
78952
diff
changeset
|
238 The function gets two arguments - the buffers to compare. |
fad130192ad9
(bs-string-show-normally, bs-sort-functions, bs--get-file-name):
Juanma Barranquero <lekktu@gmail.com>
parents:
78952
diff
changeset
|
239 It must return non-nil if the first buffer should sort before the second.") |
27016 | 240 |
241 (defcustom bs-maximal-buffer-name-column 45 | |
85325
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
242 "Maximum column width for buffer names. |
27016 | 243 The column for buffer names has dynamic width. The width depends on |
244 maximal and minimal length of names of buffers to show. The maximal | |
245 width is bounded by `bs-maximal-buffer-name-column'. | |
246 See also `bs-minimal-buffer-name-column'." | |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
247 :group 'bs-appearance |
27016 | 248 :type 'integer) |
249 | |
250 (defcustom bs-minimal-buffer-name-column 15 | |
85325
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
251 "Minimum column width for buffer names. |
27016 | 252 The column for buffer names has dynamic width. The width depends on |
253 maximal and minimal length of names of buffers to show. The minimal | |
254 width is bounded by `bs-minimal-buffer-name-column'. | |
255 See also `bs-maximal-buffer-name-column'." | |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
256 :group 'bs-appearance |
27016 | 257 :type 'integer) |
258 | |
259 (defconst bs-header-lines-length 2 | |
260 "Number of lines for headers in Buffer Selection Menu.") | |
261 | |
262 (defcustom bs-configurations | |
263 '(("all" nil nil nil nil nil) | |
264 ("files" nil nil nil bs-visits-non-file bs-sort-buffer-interns-are-last) | |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
265 ("files-and-scratch" "^\\*scratch\\*$" nil nil bs-visits-non-file |
27016 | 266 bs-sort-buffer-interns-are-last) |
267 ("all-intern-last" nil nil nil nil bs-sort-buffer-interns-are-last)) | |
85325
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
268 "List of all configurations you can use in the Buffer Selection Menu. |
27016 | 269 A configuration describes which buffers appear in Buffer Selection Menu |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
270 and also the order of buffers. A configuration is a list with |
27016 | 271 six elements. The first element is a string and describes the configuration. |
272 The following five elements represent the values for Buffer Selection Menu | |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
273 configuration variables `bs-must-show-regexp', `bs-must-show-function', |
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
274 `bs-dont-show-regexp', `bs-dont-show-function' and `bs-buffer-sort-function'. |
27016 | 275 By setting these variables you define a configuration." |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
276 :group 'bs-appearance |
27016 | 277 :type '(repeat sexp)) |
278 | |
279 (defcustom bs-default-configuration "files" | |
85325
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
280 "Name of default configuration used by the Buffer Selection Menu. |
27016 | 281 \\<bs-mode-map> |
282 Will be changed using key \\[bs-select-next-configuration]. | |
283 Must be a string used in `bs-configurations' for naming a configuration." | |
284 :group 'bs | |
285 :type 'string) | |
286 | |
287 (defcustom bs-alternative-configuration "all" | |
85325
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
288 "Name of configuration used when calling `bs-show' with \ |
27016 | 289 \\[universal-argument] as prefix key. |
290 Must be a string used in `bs-configurations' for naming a configuration." | |
291 :group 'bs | |
292 :type 'string) | |
293 | |
294 (defvar bs-current-configuration bs-default-configuration | |
295 "Name of current configuration. | |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
296 Must be a string used in `bs-configurations' for naming a configuration.") |
27016 | 297 |
298 (defcustom bs-cycle-configuration-name nil | |
85325
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
299 "Name of configuration used when cycling through the buffer list. |
27016 | 300 A value of nil means to use current configuration `bs-default-configuration'. |
301 Must be a string used in `bs-configurations' for naming a configuration." | |
302 :group 'bs | |
303 :type '(choice (const :tag "like current configuration" nil) | |
304 string)) | |
305 | |
306 (defcustom bs-string-show-always "+" | |
85325
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
307 "String added in column 1 indicating a buffer will always be shown." |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
308 :group 'bs-appearance |
27016 | 309 :type 'string) |
310 | |
311 (defcustom bs-string-show-never "-" | |
85325
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
312 "String added in column 1 indicating a buffer will never be shown." |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
313 :group 'bs-appearance |
27016 | 314 :type 'string) |
315 | |
316 (defcustom bs-string-current "." | |
85325
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
317 "String added in column 1 indicating the current buffer." |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
318 :group 'bs-appearance |
27016 | 319 :type 'string) |
320 | |
321 (defcustom bs-string-current-marked "#" | |
85325
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
322 "String added in column 1 indicating the current buffer when it is marked." |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
323 :group 'bs-appearance |
27016 | 324 :type 'string) |
325 | |
326 (defcustom bs-string-marked ">" | |
85325
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
327 "String added in column 1 indicating a marked buffer." |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
328 :group 'bs-appearance |
27016 | 329 :type 'string) |
330 | |
331 (defcustom bs-string-show-normally " " | |
85325
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
332 "String added in column 1 indicating an unmarked buffer." |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
333 :group 'bs-appearance |
27016 | 334 :type 'string) |
335 | |
336 (defvar bs--name-entry-length 20 | |
337 "Maximum length of all displayed buffer names. | |
338 Used internally, only.") | |
339 | |
340 ;; ---------------------------------------------------------------------- | |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
341 ;; Internal globals |
27016 | 342 ;; ---------------------------------------------------------------------- |
343 | |
344 (defvar bs-buffer-show-mark nil | |
345 "Flag for the current mode for showing this buffer. | |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
346 A value of nil means buffer will be shown depending on the current |
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
347 configuration. |
27016 | 348 A value of `never' means to never show the buffer. |
349 A value of `always' means to show buffer regardless of the configuration.") | |
350 | |
351 (make-variable-buffer-local 'bs-buffer-show-mark) | |
352 | |
353 ;; Make face named region (for XEmacs) | |
354 (unless (facep 'region) | |
355 (make-face 'region) | |
356 (set-face-background 'region "gray75")) | |
357 | |
358 (defun bs--sort-by-name (b1 b2) | |
359 "Compare buffers B1 and B2 by buffer name." | |
360 (string< (buffer-name b1) | |
30799 | 361 (buffer-name b2))) |
27016 | 362 |
363 (defun bs--sort-by-filename (b1 b2) | |
364 "Compare buffers B1 and B2 by file name." | |
365 (string< (or (buffer-file-name b1) "") | |
30799 | 366 (or (buffer-file-name b2) ""))) |
27016 | 367 |
368 (defun bs--sort-by-mode (b1 b2) | |
369 "Compare buffers B1 and B2 by mode name." | |
87567
4c3c683cdff8
* erc-ibuffer.el (erc-channel-modes):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85688
diff
changeset
|
370 (save-current-buffer |
4c3c683cdff8
* erc-ibuffer.el (erc-channel-modes):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85688
diff
changeset
|
371 (string< (progn (set-buffer b1) (format-mode-line mode-name nil nil b1)) |
4c3c683cdff8
* erc-ibuffer.el (erc-channel-modes):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85688
diff
changeset
|
372 (progn (set-buffer b2) (format-mode-line mode-name nil nil b2))))) |
27016 | 373 |
374 (defun bs--sort-by-size (b1 b2) | |
375 "Compare buffers B1 and B2 by buffer size." | |
376 (save-excursion | |
377 (< (progn (set-buffer b1) (buffer-size)) | |
378 (progn (set-buffer b2) (buffer-size))))) | |
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)) | |
85325
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
386 "List of all possible sorting aspects for Buffer Selection Menu. |
27016 | 387 You can add a new entry with a call to `bs-define-sort-function'. |
78954
fad130192ad9
(bs-string-show-normally, bs-sort-functions, bs--get-file-name):
Juanma Barranquero <lekktu@gmail.com>
parents:
78952
diff
changeset
|
388 Each element is a list of four elements (NAME FUNCTION REGEXP-FOR-SORTING FACE). |
27016 | 389 NAME specifies the sort order defined by function FUNCTION. |
78954
fad130192ad9
(bs-string-show-normally, bs-sort-functions, bs--get-file-name):
Juanma Barranquero <lekktu@gmail.com>
parents:
78952
diff
changeset
|
390 FUNCTION nil means don't sort the buffer list. Otherwise the function |
27016 | 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 | |
30799 | 411 (setcdr tupel (list fun regexp-for-sorting face)) |
27016 | 412 (setq bs-sort-functions |
30799 | 413 (cons (list name fun regexp-for-sorting face) |
414 bs-sort-functions))))) | |
27016 | 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" | |
85325
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
421 "Name of default sort behavior. |
27016 | 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) | |
30799 | 427 (set var-name value) |
428 (setq bs--current-sort-function | |
429 (assoc value bs-sort-functions)))) | |
27016 | 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. | |
73642
d4b7bfddf3f5
(bs--show-all, bs--redisplay): Use "non-nil" in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents:
68924
diff
changeset
|
436 Non-nil means to show all buffers. Otherwise show buffers |
27016 | 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 | |
52243 | 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) | |
27016 | 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. | |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
515 LIST is a list of buffers to test for appearance in Buffer Selection Menu. |
27016 | 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) | |
30799 | 522 list (or list (buffer-list))) |
27016 | 523 (let ((result nil)) |
85325
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
524 (dolist (buf list) |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
525 (let* ((buffername (buffer-name buf)) |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
526 (int-show-never (string-match-p bs--intern-show-never buffername)) |
30799 | 527 (ext-show-never (and bs-dont-show-regexp |
85325
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
528 (string-match-p bs-dont-show-regexp |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
529 buffername))) |
30799 | 530 (extern-must-show (or (and bs-must-always-show-regexp |
85325
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
531 (string-match-p |
30799 | 532 bs-must-always-show-regexp |
533 buffername)) | |
534 (and bs-must-show-regexp | |
85325
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
535 (string-match-p bs-must-show-regexp |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
536 buffername)))) |
30799 | 537 (extern-show-never-from-fun (and bs-dont-show-function |
538 (funcall bs-dont-show-function | |
85325
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
539 buf))) |
30799 | 540 (extern-must-show-from-fun (and bs-must-show-function |
541 (funcall bs-must-show-function | |
85325
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
542 buf))) |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
543 (show-flag (buffer-local-value 'bs-buffer-show-mark buf))) |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
544 (when (or (eq show-flag 'always) |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
545 (and (or bs--show-all (not (eq show-flag 'never))) |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
546 (not int-show-never) |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
547 (or bs--show-all |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
548 extern-must-show |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
549 extern-must-show-from-fun |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
550 (and (not ext-show-never) |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
551 (not extern-show-never-from-fun))))) |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
552 (setq result (cons buf result))))) |
27016 | 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. | |
85325
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
557 (when (and bs--buffer-coming-from |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
558 (buffer-live-p bs--buffer-coming-from) |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
559 (not (memq bs--buffer-coming-from result))) |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
560 (setq result (cons bs--buffer-coming-from result))) |
27016 | 561 ;; sorting |
562 (if (and sort-description | |
30799 | 563 (nth 1 sort-description)) |
564 (setq result (sort result (nth 1 sort-description))) | |
27016 | 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. | |
73642
d4b7bfddf3f5
(bs--show-all, bs--redisplay): Use "non-nil" in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents:
68924
diff
changeset
|
576 If KEEP-LINE-P is non-nil the point will stay on current line. |
73850
c089b114a8ec
(bs--redisplay): Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
73642
diff
changeset
|
577 SORT-DESCRIPTION is an element of `bs-sort-functions'." |
27016 | 578 (let ((line (1+ (count-lines 1 (point))))) |
579 (bs-show-in-buffer (bs-buffer-list nil sort-description)) | |
85325
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
580 (when keep-line-p |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
581 (goto-line line)) |
27016 | 582 (beginning-of-line))) |
583 | |
584 (defun bs--goto-current-buffer () | |
585 "Goto line which represents the current buffer; | |
586 actually the line which begins with character in `bs-string-current' or | |
587 `bs-string-current-marked'." | |
30799 | 588 (let ((regexp (concat "^" |
589 (regexp-quote bs-string-current) | |
590 "\\|^" | |
591 (regexp-quote bs-string-current-marked))) | |
592 point) | |
27016 | 593 (save-excursion |
594 (goto-char (point-min)) | |
85325
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
595 (when (search-forward-regexp regexp nil t) |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
596 (setq point (1- (point))))) |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
597 (when point |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
598 (goto-char point)))) |
27016 | 599 |
600 (defun bs--current-config-message () | |
601 "Return a string describing the current `bs-mode' configuration." | |
602 (if bs--show-all | |
603 "Show all buffers." | |
604 (format "Show buffer by configuration %S" | |
30799 | 605 bs-current-configuration))) |
27016 | 606 |
79104
4801bb53c00e
(bs--window-config-coming-from): Revert 2006-11-09 change.
Juanma Barranquero <lekktu@gmail.com>
parents:
78976
diff
changeset
|
607 (defun bs--track-window-changes (frame) |
4801bb53c00e
(bs--window-config-coming-from): Revert 2006-11-09 change.
Juanma Barranquero <lekktu@gmail.com>
parents:
78976
diff
changeset
|
608 "Track window changes to refresh the buffer list. |
4801bb53c00e
(bs--window-config-coming-from): Revert 2006-11-09 change.
Juanma Barranquero <lekktu@gmail.com>
parents:
78976
diff
changeset
|
609 Used from `window-size-change-functions'." |
4801bb53c00e
(bs--window-config-coming-from): Revert 2006-11-09 change.
Juanma Barranquero <lekktu@gmail.com>
parents:
78976
diff
changeset
|
610 (let ((win (get-buffer-window "*buffer-selection*" frame))) |
4801bb53c00e
(bs--window-config-coming-from): Revert 2006-11-09 change.
Juanma Barranquero <lekktu@gmail.com>
parents:
78976
diff
changeset
|
611 (when win |
4801bb53c00e
(bs--window-config-coming-from): Revert 2006-11-09 change.
Juanma Barranquero <lekktu@gmail.com>
parents:
78976
diff
changeset
|
612 (with-selected-window win |
4801bb53c00e
(bs--window-config-coming-from): Revert 2006-11-09 change.
Juanma Barranquero <lekktu@gmail.com>
parents:
78976
diff
changeset
|
613 (bs--set-window-height))))) |
4801bb53c00e
(bs--window-config-coming-from): Revert 2006-11-09 change.
Juanma Barranquero <lekktu@gmail.com>
parents:
78976
diff
changeset
|
614 |
4801bb53c00e
(bs--window-config-coming-from): Revert 2006-11-09 change.
Juanma Barranquero <lekktu@gmail.com>
parents:
78976
diff
changeset
|
615 (defun bs--remove-hooks () |
4801bb53c00e
(bs--window-config-coming-from): Revert 2006-11-09 change.
Juanma Barranquero <lekktu@gmail.com>
parents:
78976
diff
changeset
|
616 "Remove `bs--track-window-changes' and auxiliary hooks." |
4801bb53c00e
(bs--window-config-coming-from): Revert 2006-11-09 change.
Juanma Barranquero <lekktu@gmail.com>
parents:
78976
diff
changeset
|
617 (remove-hook 'window-size-change-functions 'bs--track-window-changes) |
4801bb53c00e
(bs--window-config-coming-from): Revert 2006-11-09 change.
Juanma Barranquero <lekktu@gmail.com>
parents:
78976
diff
changeset
|
618 ;; Remove itself |
4801bb53c00e
(bs--window-config-coming-from): Revert 2006-11-09 change.
Juanma Barranquero <lekktu@gmail.com>
parents:
78976
diff
changeset
|
619 (remove-hook 'kill-buffer-hook 'bs--remove-hooks t) |
4801bb53c00e
(bs--window-config-coming-from): Revert 2006-11-09 change.
Juanma Barranquero <lekktu@gmail.com>
parents:
78976
diff
changeset
|
620 (remove-hook 'change-major-mode-hook 'bs--remove-hooks t)) |
4801bb53c00e
(bs--window-config-coming-from): Revert 2006-11-09 change.
Juanma Barranquero <lekktu@gmail.com>
parents:
78976
diff
changeset
|
621 |
79153
705ce9d99f0f
(bs-mode): Set mode-class property to special.
Juanma Barranquero <lekktu@gmail.com>
parents:
79151
diff
changeset
|
622 (put 'bs-mode 'mode-class 'special) |
705ce9d99f0f
(bs-mode): Set mode-class property to special.
Juanma Barranquero <lekktu@gmail.com>
parents:
79151
diff
changeset
|
623 |
85325
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
624 (define-derived-mode bs-mode nil "Buffer-Selection-Menu" |
27016 | 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 | |
78972
3ae0d15a80ab
(bs--get-marked-string, bs--get-modified-string, bs--get-readonly-string,
Juanma Barranquero <lekktu@gmail.com>
parents:
78954
diff
changeset
|
629 buffer by \\[bs-select] or SPC. Abort buffer list with \\[bs-kill]. |
27016 | 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. | |
56993 | 640 \\[bs-save] -- save current line's buffer immediately. |
641 \\[bs-delete] -- kill current line's buffer immediately. | |
27016 | 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. | |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
652 \\[bs-toggle-current-to-show] -- toggle status of appearance. |
27016 | 653 \\[bs-set-current-buffer-to-show-always] -- mark current line's buffer \ |
654 to show always. | |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
655 \\[bs-visit-tags-table] -- call `visit-tags-table' on current line's buffer. |
27016 | 656 \\[bs-help] -- display this help text." |
657 (make-local-variable 'font-lock-defaults) | |
658 (make-local-variable 'font-lock-verbose) | |
78976
467771c10c11
(bs-mode): Make sure global-font-lock-mode doesn't activate
Juanma Barranquero <lekktu@gmail.com>
parents:
78972
diff
changeset
|
659 (make-local-variable 'font-lock-global-modes) |
68924
526bb84288e1
(bs-mode): Use `buffer-disable-undo'.
Juanma Barranquero <lekktu@gmail.com>
parents:
68651
diff
changeset
|
660 (buffer-disable-undo) |
79104
4801bb53c00e
(bs--window-config-coming-from): Revert 2006-11-09 change.
Juanma Barranquero <lekktu@gmail.com>
parents:
78976
diff
changeset
|
661 (setq buffer-read-only t |
30799 | 662 truncate-lines t |
78950
569e6cbc4c70
Don't defvar `fontlock-verbose'.
Juanma Barranquero <lekktu@gmail.com>
parents:
78236
diff
changeset
|
663 show-trailing-whitespace nil |
78976
467771c10c11
(bs-mode): Make sure global-font-lock-mode doesn't activate
Juanma Barranquero <lekktu@gmail.com>
parents:
78972
diff
changeset
|
664 font-lock-global-modes '(not bs-mode) |
30799 | 665 font-lock-defaults '(bs-mode-font-lock-keywords t) |
79105
e091b0e7b0c7
(bs-mode): Set hooks (accidentally left out in the previous commit).
Juanma Barranquero <lekktu@gmail.com>
parents:
79104
diff
changeset
|
666 font-lock-verbose nil) |
e091b0e7b0c7
(bs-mode): Set hooks (accidentally left out in the previous commit).
Juanma Barranquero <lekktu@gmail.com>
parents:
79104
diff
changeset
|
667 (add-hook 'window-size-change-functions 'bs--track-window-changes) |
e091b0e7b0c7
(bs-mode): Set hooks (accidentally left out in the previous commit).
Juanma Barranquero <lekktu@gmail.com>
parents:
79104
diff
changeset
|
668 (add-hook 'kill-buffer-hook 'bs--remove-hooks nil t) |
e091b0e7b0c7
(bs-mode): Set hooks (accidentally left out in the previous commit).
Juanma Barranquero <lekktu@gmail.com>
parents:
79104
diff
changeset
|
669 (add-hook 'change-major-mode-hook 'bs--remove-hooks nil t)) |
27016 | 670 |
73850
c089b114a8ec
(bs--redisplay): Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
73642
diff
changeset
|
671 (defun bs--restore-window-config () |
c089b114a8ec
(bs--redisplay): Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
73642
diff
changeset
|
672 "Restore window configuration on the current frame." |
c089b114a8ec
(bs--redisplay): Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
73642
diff
changeset
|
673 (when bs--window-config-coming-from |
79104
4801bb53c00e
(bs--window-config-coming-from): Revert 2006-11-09 change.
Juanma Barranquero <lekktu@gmail.com>
parents:
78976
diff
changeset
|
674 (let ((frame (selected-frame))) |
4801bb53c00e
(bs--window-config-coming-from): Revert 2006-11-09 change.
Juanma Barranquero <lekktu@gmail.com>
parents:
78976
diff
changeset
|
675 (unwind-protect |
4801bb53c00e
(bs--window-config-coming-from): Revert 2006-11-09 change.
Juanma Barranquero <lekktu@gmail.com>
parents:
78976
diff
changeset
|
676 (set-window-configuration bs--window-config-coming-from) |
4801bb53c00e
(bs--window-config-coming-from): Revert 2006-11-09 change.
Juanma Barranquero <lekktu@gmail.com>
parents:
78976
diff
changeset
|
677 (select-frame frame))) |
73850
c089b114a8ec
(bs--redisplay): Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
73642
diff
changeset
|
678 (setq bs--window-config-coming-from nil))) |
c089b114a8ec
(bs--redisplay): Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
73642
diff
changeset
|
679 |
27016 | 680 (defun bs-kill () |
78952
e1da8e0b5ae2
(bs-kill): Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
78950
diff
changeset
|
681 "Let buffer disappear and reset window configuration." |
27016 | 682 (interactive) |
683 (bury-buffer (current-buffer)) | |
73850
c089b114a8ec
(bs--redisplay): Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
73642
diff
changeset
|
684 (bs--restore-window-config)) |
27016 | 685 |
686 (defun bs-abort () | |
687 "Ding and leave Buffer Selection Menu without a selection." | |
30799 | 688 (interactive) |
27016 | 689 (ding) |
690 (bs-kill)) | |
691 | |
692 (defun bs-set-configuration-and-refresh () | |
693 "Ask user for a configuration and apply selected configuration. | |
694 Refresh whole Buffer Selection Menu." | |
695 (interactive) | |
696 (call-interactively 'bs-set-configuration) | |
697 (bs--redisplay t)) | |
698 | |
699 (defun bs-refresh () | |
700 "Refresh whole Buffer Selection Menu." | |
701 (interactive) | |
702 (bs--redisplay t)) | |
703 | |
704 (defun bs--set-window-height () | |
705 "Change the height of the selected window to suit the current buffer list." | |
706 (unless (one-window-p t) | |
68502
6ede67948264
Allow non-default values of `bs-header-lines-length'.
Juanma Barranquero <lekktu@gmail.com>
parents:
68447
diff
changeset
|
707 (fit-window-to-buffer (selected-window) bs-max-window-height))) |
27016 | 708 |
709 (defun bs--current-buffer () | |
710 "Return buffer on current line. | |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
711 Raise an error if not on a buffer line." |
27016 | 712 (beginning-of-line) |
713 (let ((line (+ (- bs-header-lines-length) | |
30799 | 714 (count-lines 1 (point))))) |
85325
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
715 (when (< line 0) |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
716 (error "You are on a header row")) |
27016 | 717 (nth line bs-current-list))) |
718 | |
719 (defun bs--update-current-line () | |
720 "Update the entry on current line for Buffer Selection Menu." | |
721 (let ((buffer (bs--current-buffer)) | |
30799 | 722 (inhibit-read-only t)) |
27016 | 723 (beginning-of-line) |
724 (delete-region (point) (line-end-position)) | |
725 (bs--insert-one-entry buffer) | |
726 (beginning-of-line))) | |
727 | |
728 (defun bs-view () | |
729 "View current line's buffer in View mode. | |
730 Leave Buffer Selection Menu." | |
731 (interactive) | |
732 (view-buffer (bs--current-buffer))) | |
733 | |
734 (defun bs-select () | |
735 "Select current line's buffer and other marked buffers. | |
736 If there are no marked buffers the window configuration before starting | |
79188
89ec8c04410c
(bs-select, bs-select-other-window): Fix typos in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents:
79155
diff
changeset
|
737 Buffer Selection Menu will be restored. |
27016 | 738 If there are marked buffers each marked buffer and the current line's buffer |
739 will be selected in a window. | |
740 Leave Buffer Selection Menu." | |
741 (interactive) | |
742 (let ((buffer (bs--current-buffer))) | |
743 (bury-buffer (current-buffer)) | |
73850
c089b114a8ec
(bs--redisplay): Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
73642
diff
changeset
|
744 (bs--restore-window-config) |
27016 | 745 (switch-to-buffer buffer) |
85325
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
746 (when bs--marked-buffers |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
747 ;; Some marked buffers for selection |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
748 (let* ((all (delq buffer bs--marked-buffers)) |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
749 (height (/ (1- (frame-height)) (1+ (length all))))) |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
750 (delete-other-windows) |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
751 (switch-to-buffer buffer) |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
752 (dolist (buf all) |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
753 (split-window nil height) |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
754 (other-window 1) |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
755 (switch-to-buffer buf)) |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
756 ;; goto window we have started bs. |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
757 (other-window 1))))) |
27016 | 758 |
759 (defun bs-select-other-window () | |
760 "Select current line's buffer by `switch-to-buffer-other-window'. | |
79188
89ec8c04410c
(bs-select, bs-select-other-window): Fix typos in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents:
79155
diff
changeset
|
761 The window configuration before starting Buffer Selection Menu will be restored |
27016 | 762 unless there is no other window. In this case a new window will be created. |
763 Leave Buffer Selection Menu." | |
764 (interactive) | |
765 (let ((buffer (bs--current-buffer))) | |
766 (bury-buffer (current-buffer)) | |
73850
c089b114a8ec
(bs--redisplay): Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
73642
diff
changeset
|
767 (bs--restore-window-config) |
27016 | 768 (switch-to-buffer-other-window buffer))) |
769 | |
770 (defun bs-tmp-select-other-window () | |
771 "Make the other window select this line's buffer. | |
772 The current window remains selected." | |
773 (interactive) | |
774 (let ((buffer (bs--current-buffer))) | |
775 (display-buffer buffer t))) | |
776 | |
777 (defun bs-select-other-frame () | |
778 "Select current line's buffer in new created frame. | |
779 Leave Buffer Selection Menu." | |
780 (interactive) | |
781 (let ((buffer (bs--current-buffer))) | |
782 (bury-buffer (current-buffer)) | |
73850
c089b114a8ec
(bs--redisplay): Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
73642
diff
changeset
|
783 (bs--restore-window-config) |
27016 | 784 (switch-to-buffer-other-frame buffer))) |
785 | |
786 (defun bs-mouse-select-other-frame (event) | |
787 "Select selected line's buffer in new created frame. | |
788 Leave Buffer Selection Menu. | |
78954
fad130192ad9
(bs-string-show-normally, bs-sort-functions, bs--get-file-name):
Juanma Barranquero <lekktu@gmail.com>
parents:
78952
diff
changeset
|
789 EVENT: a mouse click event." |
27016 | 790 (interactive "e") |
791 (mouse-set-point event) | |
792 (bs-select-other-frame)) | |
793 | |
794 (defun bs-mouse-select (event) | |
795 "Select buffer on mouse click EVENT. | |
796 Select buffer by `bs-select'." | |
797 (interactive "e") | |
798 (mouse-set-point event) | |
799 (bs-select)) | |
800 | |
801 (defun bs-select-in-one-window () | |
802 "Select current line's buffer in one window and delete other windows. | |
803 Leave Buffer Selection Menu." | |
804 (interactive) | |
805 (bs-select) | |
806 (delete-other-windows)) | |
807 | |
808 (defun bs-bury-buffer () | |
809 "Bury buffer on current line." | |
810 (interactive) | |
811 (bury-buffer (bs--current-buffer)) | |
812 (bs--redisplay t)) | |
813 | |
814 (defun bs-save () | |
815 "Save buffer on current line." | |
816 (interactive) | |
817 (let ((buffer (bs--current-buffer))) | |
818 (save-excursion | |
819 (set-buffer buffer) | |
820 (save-buffer)) | |
821 (bs--update-current-line))) | |
822 | |
823 (defun bs-visit-tags-table () | |
824 "Visit the tags table in the buffer on this line. | |
825 See `visit-tags-table'." | |
826 (interactive) | |
827 (let ((file (buffer-file-name (bs--current-buffer)))) | |
828 (if file | |
30799 | 829 (visit-tags-table file) |
27016 | 830 (error "Specified buffer has no file")))) |
831 | |
832 (defun bs-toggle-current-to-show () | |
833 "Toggle status of showing flag for buffer in current line." | |
834 (interactive) | |
835 (let ((buffer (bs--current-buffer)) | |
30799 | 836 res) |
27016 | 837 (save-excursion |
838 (set-buffer buffer) | |
839 (setq res (cond ((null bs-buffer-show-mark) | |
30799 | 840 'never) |
841 ((eq bs-buffer-show-mark 'never) | |
842 'always) | |
843 (t nil))) | |
27016 | 844 (setq bs-buffer-show-mark res)) |
845 (bs--update-current-line) | |
846 (bs--set-window-height) | |
847 (bs--show-config-message res))) | |
848 | |
849 (defun bs-set-current-buffer-to-show-always (&optional not-to-show-p) | |
850 "Toggle status of buffer on line to `always shown'. | |
851 NOT-TO-SHOW-P: prefix argument. | |
852 With no prefix argument the buffer on current line is marked to show | |
853 always. Otherwise it is marked to show never." | |
854 (interactive "P") | |
855 (if not-to-show-p | |
856 (bs-set-current-buffer-to-show-never) | |
857 (bs--set-toggle-to-show (bs--current-buffer) 'always))) | |
858 | |
859 (defun bs-set-current-buffer-to-show-never () | |
860 "Toggle status of buffer on line to `never shown'." | |
861 (interactive) | |
862 (bs--set-toggle-to-show (bs--current-buffer) 'never)) | |
863 | |
864 (defun bs--set-toggle-to-show (buffer what) | |
865 "Set value `bs-buffer-show-mark' of buffer BUFFER to WHAT. | |
866 Redisplay current line and display a message describing | |
867 the status of buffer on current line." | |
54581
0a5e192bf05d
(bs-buffer-list): Use buffer-local-value.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
868 (with-current-buffer buffer (setq bs-buffer-show-mark what)) |
27016 | 869 (bs--update-current-line) |
870 (bs--set-window-height) | |
871 (bs--show-config-message what)) | |
872 | |
85170
000327e80fc2
(bs--mark-unmark): New function.
Juanma Barranquero <lekktu@gmail.com>
parents:
78976
diff
changeset
|
873 (defun bs--mark-unmark (count fun) |
000327e80fc2
(bs--mark-unmark): New function.
Juanma Barranquero <lekktu@gmail.com>
parents:
78976
diff
changeset
|
874 "Call FUN on COUNT consecutive buffers of *buffer-selection*." |
000327e80fc2
(bs--mark-unmark): New function.
Juanma Barranquero <lekktu@gmail.com>
parents:
78976
diff
changeset
|
875 (let ((dir (if (> count 0) 1 -1))) |
000327e80fc2
(bs--mark-unmark): New function.
Juanma Barranquero <lekktu@gmail.com>
parents:
78976
diff
changeset
|
876 (dotimes (i (abs count)) |
000327e80fc2
(bs--mark-unmark): New function.
Juanma Barranquero <lekktu@gmail.com>
parents:
78976
diff
changeset
|
877 (let ((buffer (bs--current-buffer))) |
000327e80fc2
(bs--mark-unmark): New function.
Juanma Barranquero <lekktu@gmail.com>
parents:
78976
diff
changeset
|
878 (when buffer (funcall fun buffer)) |
000327e80fc2
(bs--mark-unmark): New function.
Juanma Barranquero <lekktu@gmail.com>
parents:
78976
diff
changeset
|
879 (bs--update-current-line) |
000327e80fc2
(bs--mark-unmark): New function.
Juanma Barranquero <lekktu@gmail.com>
parents:
78976
diff
changeset
|
880 (bs-down dir))))) |
000327e80fc2
(bs--mark-unmark): New function.
Juanma Barranquero <lekktu@gmail.com>
parents:
78976
diff
changeset
|
881 |
27016 | 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") | |
85170
000327e80fc2
(bs--mark-unmark): New function.
Juanma Barranquero <lekktu@gmail.com>
parents:
78976
diff
changeset
|
887 (bs--mark-unmark count |
000327e80fc2
(bs--mark-unmark): New function.
Juanma Barranquero <lekktu@gmail.com>
parents:
78976
diff
changeset
|
888 (lambda (buf) |
000327e80fc2
(bs--mark-unmark): New function.
Juanma Barranquero <lekktu@gmail.com>
parents:
78976
diff
changeset
|
889 (add-to-list 'bs--marked-buffers buf)))) |
27016 | 890 |
891 (defun bs-unmark-current (count) | |
892 "Unmark buffers. | |
893 COUNT is the number of buffers to unmark. | |
894 Move cursor vertically down COUNT lines." | |
895 (interactive "p") | |
85170
000327e80fc2
(bs--mark-unmark): New function.
Juanma Barranquero <lekktu@gmail.com>
parents:
78976
diff
changeset
|
896 (bs--mark-unmark count |
000327e80fc2
(bs--mark-unmark): New function.
Juanma Barranquero <lekktu@gmail.com>
parents:
78976
diff
changeset
|
897 (lambda (buf) |
000327e80fc2
(bs--mark-unmark): New function.
Juanma Barranquero <lekktu@gmail.com>
parents:
78976
diff
changeset
|
898 (setq bs--marked-buffers (delq buf bs--marked-buffers))))) |
27016 | 899 |
900 (defun bs--show-config-message (what) | |
901 "Show message indicating the new showing status WHAT. | |
902 WHAT is a value of nil, `never', or `always'." | |
903 (bs-message-without-log (cond ((null what) | |
30799 | 904 "Buffer will be shown normally.") |
905 ((eq what 'never) | |
906 "Mark buffer to never be shown.") | |
907 (t "Mark buffer to show always.")))) | |
27016 | 908 |
909 (defun bs-delete () | |
910 "Kill buffer on current line." | |
911 (interactive) | |
912 (let ((current (bs--current-buffer)) | |
30799 | 913 (inhibit-read-only t)) |
41312
f78848439507
(bs-delete): Signal an error if the buffer cannot be deleted.
Eli Zaretskii <eliz@gnu.org>
parents:
39568
diff
changeset
|
914 (unless (kill-buffer current) |
f78848439507
(bs-delete): Signal an error if the buffer cannot be deleted.
Eli Zaretskii <eliz@gnu.org>
parents:
39568
diff
changeset
|
915 (error "Buffer was not deleted")) |
27016 | 916 (setq bs-current-list (delq current bs-current-list)) |
917 (beginning-of-line) | |
918 (delete-region (point) (save-excursion | |
30799 | 919 (end-of-line) |
920 (if (eobp) (point) (1+ (point))))) | |
85325
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
921 (when (eobp) |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
922 (backward-delete-char 1) |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
923 (beginning-of-line) |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
924 (recenter -1)) |
27016 | 925 (bs--set-window-height))) |
926 | |
927 (defun bs-delete-backward () | |
928 "Like `bs-delete' but go to buffer in front of current." | |
929 (interactive) | |
930 (let ((on-last-line-p (save-excursion (end-of-line) (eobp)))) | |
931 (bs-delete) | |
932 (unless on-last-line-p | |
30799 | 933 (bs-up 1)))) |
27016 | 934 |
935 (defun bs-show-sorted () | |
78976
467771c10c11
(bs-mode): Make sure global-font-lock-mode doesn't activate
Juanma Barranquero <lekktu@gmail.com>
parents:
78972
diff
changeset
|
936 "Show buffer list sorted by next sort aspect." |
27016 | 937 (interactive) |
938 (setq bs--current-sort-function | |
30799 | 939 (bs-next-config-aux (car bs--current-sort-function) |
940 bs-sort-functions)) | |
27016 | 941 (bs--redisplay) |
942 (bs--goto-current-buffer) | |
943 (bs-message-without-log "Sorted %s" (car bs--current-sort-function))) | |
944 | |
945 (defun bs-apply-sort-faces (&optional sort-description) | |
946 "Set text properties for the sort described by SORT-DESCRIPTION. | |
947 SORT-DESCRIPTION is an element of `bs-sort-functions'. | |
948 Default is `bs--current-sort-function'." | |
949 (let ((sort-description (or sort-description | |
30799 | 950 bs--current-sort-function))) |
27016 | 951 (save-excursion |
952 (goto-char (point-min)) | |
85325
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
953 (when (and (nth 2 sort-description) |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
954 (search-forward-regexp (nth 2 sort-description) nil t)) |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
955 (let ((inhibit-read-only t)) |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
956 (put-text-property (match-beginning 0) |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
957 (match-end 0) |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
958 'face |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
959 (or (nth 3 sort-description) |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
960 'region))))))) |
27016 | 961 |
962 (defun bs-toggle-show-all () | |
963 "Toggle show all buffers / show buffers with current configuration." | |
964 (interactive) | |
965 (setq bs--show-all (not bs--show-all)) | |
966 (bs--redisplay) | |
967 (bs--goto-current-buffer) | |
968 (bs-message-without-log "%s" (bs--current-config-message))) | |
969 | |
970 (defun bs-toggle-readonly () | |
971 "Toggle read-only status for buffer on current line. | |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
972 Uses function `vc-toggle-read-only'." |
27016 | 973 (interactive) |
974 (let ((buffer (bs--current-buffer))) | |
975 (save-excursion | |
976 (set-buffer buffer) | |
977 (vc-toggle-read-only)) | |
978 (bs--update-current-line))) | |
979 | |
980 (defun bs-clear-modified () | |
981 "Set modified flag for buffer on current line to nil." | |
982 (interactive) | |
983 (let ((buffer (bs--current-buffer))) | |
984 (save-excursion | |
985 (set-buffer buffer) | |
986 (set-buffer-modified-p nil))) | |
987 (bs--update-current-line)) | |
988 | |
989 (defun bs--nth-wrapper (count fun &rest args) | |
990 "Call COUNT times function FUN with arguments ARGS." | |
85325
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
991 (dotimes (i (or count 1)) |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
992 (apply fun args))) |
27016 | 993 |
994 (defun bs-up (arg) | |
995 "Move cursor vertically up ARG lines in Buffer Selection Menu." | |
996 (interactive "p") | |
997 (if (and arg (numberp arg) (< arg 0)) | |
998 (bs--nth-wrapper (- arg) 'bs--down) | |
999 (bs--nth-wrapper arg 'bs--up))) | |
1000 | |
1001 (defun bs--up () | |
1002 "Move cursor vertically up one line. | |
1003 If on top of buffer list go to last line." | |
68502
6ede67948264
Allow non-default values of `bs-header-lines-length'.
Juanma Barranquero <lekktu@gmail.com>
parents:
68447
diff
changeset
|
1004 (if (> (count-lines 1 (point)) bs-header-lines-length) |
6ede67948264
Allow non-default values of `bs-header-lines-length'.
Juanma Barranquero <lekktu@gmail.com>
parents:
68447
diff
changeset
|
1005 (forward-line -1) |
6ede67948264
Allow non-default values of `bs-header-lines-length'.
Juanma Barranquero <lekktu@gmail.com>
parents:
68447
diff
changeset
|
1006 (goto-char (point-max)) |
6ede67948264
Allow non-default values of `bs-header-lines-length'.
Juanma Barranquero <lekktu@gmail.com>
parents:
68447
diff
changeset
|
1007 (beginning-of-line) |
6ede67948264
Allow non-default values of `bs-header-lines-length'.
Juanma Barranquero <lekktu@gmail.com>
parents:
68447
diff
changeset
|
1008 (recenter -1))) |
27016 | 1009 |
1010 (defun bs-down (arg) | |
1011 "Move cursor vertically down ARG lines in Buffer Selection Menu." | |
1012 (interactive "p") | |
1013 (if (and arg (numberp arg) (< arg 0)) | |
1014 (bs--nth-wrapper (- arg) 'bs--up) | |
1015 (bs--nth-wrapper arg 'bs--down))) | |
1016 | |
1017 (defun bs--down () | |
1018 "Move cursor vertically down one line. | |
1019 If at end of buffer list go to first line." | |
68502
6ede67948264
Allow non-default values of `bs-header-lines-length'.
Juanma Barranquero <lekktu@gmail.com>
parents:
68447
diff
changeset
|
1020 (if (eq (line-end-position) (point-max)) |
6ede67948264
Allow non-default values of `bs-header-lines-length'.
Juanma Barranquero <lekktu@gmail.com>
parents:
68447
diff
changeset
|
1021 (goto-line (1+ bs-header-lines-length)) |
6ede67948264
Allow non-default values of `bs-header-lines-length'.
Juanma Barranquero <lekktu@gmail.com>
parents:
68447
diff
changeset
|
1022 (forward-line 1))) |
27016 | 1023 |
1024 (defun bs-visits-non-file (buffer) | |
78954
fad130192ad9
(bs-string-show-normally, bs-sort-functions, bs--get-file-name):
Juanma Barranquero <lekktu@gmail.com>
parents:
78952
diff
changeset
|
1025 "Return whether BUFFER visits no file. |
27016 | 1026 A value of t means BUFFER belongs to no file. |
1027 A value of nil means BUFFER belongs to a file." | |
1028 (not (buffer-file-name buffer))) | |
1029 | |
1030 (defun bs-sort-buffer-interns-are-last (b1 b2) | |
78954
fad130192ad9
(bs-string-show-normally, bs-sort-functions, bs--get-file-name):
Juanma Barranquero <lekktu@gmail.com>
parents:
78952
diff
changeset
|
1031 "Function for sorting internal buffers at the end of all buffers." |
85325
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
1032 (string-match-p "^\\*" (buffer-name b2))) |
27016 | 1033 |
1034 ;; ---------------------------------------------------------------------- | |
1035 ;; Configurations: | |
1036 ;; ---------------------------------------------------------------------- | |
1037 | |
1038 (defun bs-config-clear () | |
78950
569e6cbc4c70
Don't defvar `fontlock-verbose'.
Juanma Barranquero <lekktu@gmail.com>
parents:
78236
diff
changeset
|
1039 "Reset all variables which specify a configuration. |
27016 | 1040 These variables are `bs-dont-show-regexp', `bs-must-show-regexp', |
1041 `bs-dont-show-function', `bs-must-show-function' and | |
1042 `bs-buffer-sort-function'." | |
1043 (setq bs-dont-show-regexp nil | |
30799 | 1044 bs-must-show-regexp nil |
1045 bs-dont-show-function nil | |
1046 bs-must-show-function nil | |
1047 bs-buffer-sort-function nil)) | |
27016 | 1048 |
1049 (defun bs-config--only-files () | |
1050 "Define a configuration for showing only buffers visiting a file." | |
1051 (bs-config-clear) | |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
1052 (setq ;; I want to see *-buffers at the end |
30799 | 1053 bs-buffer-sort-function 'bs-sort-buffer-interns-are-last |
1054 ;; Don't show files who don't belong to a file | |
1055 bs-dont-show-function 'bs-visits-non-file)) | |
27016 | 1056 |
1057 (defun bs-config--files-and-scratch () | |
1058 "Define a configuration for showing buffer *scratch* and file buffers." | |
1059 (bs-config-clear) | |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
1060 (setq ;; I want to see *-buffers at the end |
30799 | 1061 bs-buffer-sort-function 'bs-sort-buffer-interns-are-last |
1062 ;; Don't show files who don't belong to a file | |
1063 bs-dont-show-function 'bs-visits-non-file | |
1064 ;; Show *scratch* buffer. | |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
1065 bs-must-show-regexp "^\\*scratch\\*$")) |
27016 | 1066 |
1067 (defun bs-config--all () | |
1068 "Define a configuration for showing all buffers. | |
1069 Reset all according variables by `bs-config-clear'." | |
1070 (bs-config-clear)) | |
1071 | |
1072 (defun bs-config--all-intern-last () | |
1073 "Define a configuration for showing all buffers. | |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
1074 Internal buffers appear at end of all buffers." |
27016 | 1075 (bs-config-clear) |
1076 ;; I want to see *-buffers at the end | |
1077 (setq bs-buffer-sort-function 'bs-sort-buffer-interns-are-last)) | |
1078 | |
1079 (defun bs-set-configuration (name) | |
1080 "Set configuration to the one saved under string NAME in `bs-configurations'. | |
1081 When called interactively ask user for a configuration and apply selected | |
1082 configuration." | |
1083 (interactive (list (completing-read "Use configuration: " | |
30799 | 1084 bs-configurations |
1085 nil | |
1086 t))) | |
27016 | 1087 (let ((list (assoc name bs-configurations))) |
1088 (if list | |
30799 | 1089 (if (listp list) |
1090 (setq bs-current-configuration name | |
1091 bs-must-show-regexp (nth 1 list) | |
1092 bs-must-show-function (nth 2 list) | |
1093 bs-dont-show-regexp (nth 3 list) | |
1094 bs-dont-show-function (nth 4 list) | |
1095 bs-buffer-sort-function (nth 5 list)) | |
1096 ;; for backward compability | |
1097 (funcall (cdr list))) | |
27016 | 1098 ;; else |
1099 (ding) | |
1100 (bs-message-without-log "No bs-configuration named %S." name)))) | |
1101 | |
1102 (defun bs-help () | |
1103 "Help for `bs-show'." | |
1104 (interactive) | |
1105 (describe-function 'bs-mode)) | |
1106 | |
1107 (defun bs-next-config-aux (start-name list) | |
1108 "Get the next assoc after START-NAME in list LIST. | |
1109 Will return the first if START-NAME is at end." | |
1110 (let ((assocs list) | |
30799 | 1111 (length (length list)) |
1112 pos) | |
27016 | 1113 (while (and assocs (not pos)) |
85325
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
1114 (when (string= (car (car assocs)) start-name) |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
1115 (setq pos (- length (length assocs)))) |
27016 | 1116 (setq assocs (cdr assocs))) |
1117 (setq pos (1+ pos)) | |
1118 (if (eq pos length) | |
30799 | 1119 (car list) |
27016 | 1120 (nth pos list)))) |
1121 | |
1122 (defun bs-next-config (name) | |
1123 "Return next configuration with respect to configuration with name NAME." | |
1124 (bs-next-config-aux name bs-configurations)) | |
1125 | |
1126 (defun bs-select-next-configuration (&optional start-name) | |
1127 "Apply next configuration START-NAME and refresh buffer list. | |
1128 If START-NAME is nil the current configuration `bs-current-configuration' | |
1129 will be used." | |
1130 (interactive) | |
1131 (let ((config (bs-next-config (or start-name bs-current-configuration)))) | |
1132 (bs-set-configuration (car config)) | |
1133 (setq bs-default-configuration bs-current-configuration) | |
1134 (bs--redisplay t) | |
1135 (bs--set-window-height) | |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
1136 (bs-message-without-log "Selected configuration: %s" (car config)))) |
27016 | 1137 |
1138 (defun bs-show-in-buffer (list) | |
1139 "Display buffer list LIST in buffer *buffer-selection*. | |
1140 Select buffer *buffer-selection* and display buffers according to current | |
1141 configuration `bs-current-configuration'. Set window height, fontify buffer | |
1142 and move point to current buffer." | |
1143 (setq bs-current-list list) | |
1144 (switch-to-buffer (get-buffer-create "*buffer-selection*")) | |
1145 (bs-mode) | |
1146 (let* ((inhibit-read-only t) | |
30799 | 1147 (map-fun (lambda (entry) |
1148 (length (buffer-name entry)))) | |
1149 (max-length-of-names (apply 'max | |
1150 (cons 0 (mapcar map-fun list)))) | |
1151 (name-entry-length (min bs-maximal-buffer-name-column | |
1152 (max bs-minimal-buffer-name-column | |
1153 max-length-of-names)))) | |
27016 | 1154 (erase-buffer) |
1155 (setq bs--name-entry-length name-entry-length) | |
1156 (bs--show-header) | |
85325
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
1157 (dolist (buffer list) |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
1158 (bs--insert-one-entry buffer) |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
1159 (insert "\n")) |
27016 | 1160 (delete-backward-char 1) |
1161 (bs--set-window-height) | |
1162 (bs--goto-current-buffer) | |
1163 (font-lock-fontify-buffer) | |
68924
526bb84288e1
(bs-mode): Use `buffer-disable-undo'.
Juanma Barranquero <lekktu@gmail.com>
parents:
68651
diff
changeset
|
1164 (bs-apply-sort-faces) |
526bb84288e1
(bs-mode): Use `buffer-disable-undo'.
Juanma Barranquero <lekktu@gmail.com>
parents:
68651
diff
changeset
|
1165 (set-buffer-modified-p nil))) |
27016 | 1166 |
1167 (defun bs-next-buffer (&optional buffer-list sorting-p) | |
1168 "Return next buffer and buffer list for buffer cycling in BUFFER-LIST. | |
1169 Ignore sorting when SORTING-P is nil. | |
1170 If BUFFER-LIST is nil the result of `bs-buffer-list' will be used as | |
1171 buffer list. The result is a cons of normally the second element of | |
1172 BUFFER-LIST and the buffer list used for buffer cycling." | |
1173 (let* ((bs--current-sort-function (if sorting-p | |
30799 | 1174 bs--current-sort-function)) |
1175 (bs-buffer-list (or buffer-list (bs-buffer-list)))) | |
27016 | 1176 (cons (or (car (cdr bs-buffer-list)) |
30799 | 1177 (car bs-buffer-list) |
1178 (current-buffer)) | |
1179 bs-buffer-list))) | |
27016 | 1180 |
1181 (defun bs-previous-buffer (&optional buffer-list sorting-p) | |
1182 "Return previous buffer and buffer list for buffer cycling in BUFFER-LIST. | |
1183 Ignore sorting when SORTING-P is nil. | |
1184 If BUFFER-LIST is nil the result of `bs-buffer-list' will be used as | |
1185 buffer list. The result is a cons of last element of BUFFER-LIST and the | |
1186 buffer list used for buffer cycling." | |
1187 (let* ((bs--current-sort-function (if sorting-p | |
30799 | 1188 bs--current-sort-function)) |
1189 (bs-buffer-list (or buffer-list (bs-buffer-list)))) | |
27016 | 1190 (cons (or (car (last bs-buffer-list)) |
30799 | 1191 (current-buffer)) |
1192 bs-buffer-list))) | |
27016 | 1193 |
1194 (defun bs-message-without-log (&rest args) | |
1195 "Like `message' but don't log it on the message log. | |
47119
7a265d2c1031
(bs-message-without-log): Fix typo.
Juanma Barranquero <lekktu@gmail.com>
parents:
41312
diff
changeset
|
1196 All arguments ARGS are transferred to function `message'." |
27016 | 1197 (let ((message-log-max nil)) |
1198 (apply 'message args))) | |
1199 | |
1200 (defvar bs--cycle-list nil | |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
1201 "Current buffer list used for cycling.") |
27016 | 1202 |
1203 ;;;###autoload | |
1204 (defun bs-cycle-next () | |
1205 "Select next buffer defined by buffer cycling. | |
1206 The buffers taking part in buffer cycling are defined | |
1207 by buffer configuration `bs-cycle-configuration-name'." | |
1208 (interactive) | |
1209 (let ((bs--buffer-coming-from (current-buffer)) | |
30799 | 1210 (bs-dont-show-regexp bs-dont-show-regexp) |
1211 (bs-must-show-regexp bs-must-show-regexp) | |
1212 (bs-dont-show-function bs-dont-show-function) | |
1213 (bs-must-show-function bs-must-show-function) | |
36925
11256092b610
(bs-cycle-next, bs-cycle-previous): Fix handling of
Gerd Moellmann <gerd@gnu.org>
parents:
36415
diff
changeset
|
1214 (bs--show-all nil)) |
11256092b610
(bs-cycle-next, bs-cycle-previous): Fix handling of
Gerd Moellmann <gerd@gnu.org>
parents:
36415
diff
changeset
|
1215 (bs-set-configuration (or bs-cycle-configuration-name bs-default-configuration)) |
27016 | 1216 (let ((bs-buffer-sort-function nil) |
30799 | 1217 (bs--current-sort-function nil)) |
27016 | 1218 (let* ((tupel (bs-next-buffer (if (or (eq last-command |
30799 | 1219 'bs-cycle-next) |
1220 (eq last-command | |
1221 'bs-cycle-previous)) | |
1222 bs--cycle-list))) | |
1223 (next (car tupel)) | |
1224 (cycle-list (cdr tupel))) | |
77917
32e17b491f4f
(bs-cycle-previous): Don't modify the cycle list until
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
1225 (unless (window-dedicated-p (selected-window)) |
32e17b491f4f
(bs-cycle-previous): Don't modify the cycle list until
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
1226 ;; We don't want the frame iconified if the only window in the frame |
32e17b491f4f
(bs-cycle-previous): Don't modify the cycle list until
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
1227 ;; happens to be dedicated; let's get the error from switch-to-buffer |
32e17b491f4f
(bs-cycle-previous): Don't modify the cycle list until
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
1228 (bury-buffer)) |
32e17b491f4f
(bs-cycle-previous): Don't modify the cycle list until
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
1229 (switch-to-buffer next) |
30799 | 1230 (setq bs--cycle-list (append (cdr cycle-list) |
1231 (list (car cycle-list)))) | |
1232 (bs-message-without-log "Next buffers: %s" | |
1233 (or (cdr bs--cycle-list) | |
1234 "this buffer")))))) | |
27016 | 1235 |
1236 ;;;###autoload | |
1237 (defun bs-cycle-previous () | |
1238 "Select previous buffer defined by buffer cycling. | |
1239 The buffers taking part in buffer cycling are defined | |
1240 by buffer configuration `bs-cycle-configuration-name'." | |
1241 (interactive) | |
1242 (let ((bs--buffer-coming-from (current-buffer)) | |
30799 | 1243 (bs-dont-show-regexp bs-dont-show-regexp) |
1244 (bs-must-show-regexp bs-must-show-regexp) | |
1245 (bs-dont-show-function bs-dont-show-function) | |
1246 (bs-must-show-function bs-must-show-function) | |
36925
11256092b610
(bs-cycle-next, bs-cycle-previous): Fix handling of
Gerd Moellmann <gerd@gnu.org>
parents:
36415
diff
changeset
|
1247 (bs--show-all nil)) |
11256092b610
(bs-cycle-next, bs-cycle-previous): Fix handling of
Gerd Moellmann <gerd@gnu.org>
parents:
36415
diff
changeset
|
1248 (bs-set-configuration (or bs-cycle-configuration-name bs-default-configuration)) |
27016 | 1249 (let ((bs-buffer-sort-function nil) |
30799 | 1250 (bs--current-sort-function nil)) |
27016 | 1251 (let* ((tupel (bs-previous-buffer (if (or (eq last-command |
30799 | 1252 'bs-cycle-next) |
1253 (eq last-command | |
1254 'bs-cycle-previous)) | |
1255 bs--cycle-list))) | |
1256 (prev-buffer (car tupel)) | |
1257 (cycle-list (cdr tupel))) | |
77917
32e17b491f4f
(bs-cycle-previous): Don't modify the cycle list until
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
1258 (switch-to-buffer prev-buffer) |
30799 | 1259 (setq bs--cycle-list (append (last cycle-list) |
1260 (reverse (cdr (reverse cycle-list))))) | |
1261 (bs-message-without-log "Previous buffers: %s" | |
1262 (or (reverse (cdr bs--cycle-list)) | |
1263 "this buffer")))))) | |
27016 | 1264 |
1265 (defun bs--get-value (fun &optional args) | |
1266 "Apply function FUN with arguments ARGS. | |
1267 Return result of evaluation. Will return FUN if FUN is a number | |
1268 or a string." | |
1269 (cond ((numberp fun) | |
30799 | 1270 fun) |
1271 ((stringp fun) | |
1272 fun) | |
1273 (t (apply fun args)))) | |
27016 | 1274 |
1275 (defun bs--get-marked-string (start-buffer all-buffers) | |
1276 "Return a string which describes whether current buffer is marked. | |
1277 START-BUFFER is the buffer where we started buffer selection. | |
78972
3ae0d15a80ab
(bs--get-marked-string, bs--get-modified-string, bs--get-readonly-string,
Juanma Barranquero <lekktu@gmail.com>
parents:
78954
diff
changeset
|
1278 ALL-BUFFERS is the list of buffers appearing in Buffer Selection Menu. |
27016 | 1279 The result string is one of `bs-string-current', `bs-string-current-marked', |
1280 `bs-string-marked', `bs-string-show-normally', `bs-string-show-never', or | |
1281 `bs-string-show-always'." | |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
1282 (cond ;; current buffer is the buffer we started buffer selection. |
30799 | 1283 ((eq (current-buffer) start-buffer) |
1284 (if (memq (current-buffer) bs--marked-buffers) | |
1285 bs-string-current-marked ; buffer is marked | |
1286 bs-string-current)) | |
1287 ;; current buffer is marked | |
1288 ((memq (current-buffer) bs--marked-buffers) | |
1289 bs-string-marked) | |
1290 ;; current buffer hasn't a special mark. | |
1291 ((null bs-buffer-show-mark) | |
1292 bs-string-show-normally) | |
1293 ;; current buffer has a mark not to show itself. | |
1294 ((eq bs-buffer-show-mark 'never) | |
1295 bs-string-show-never) | |
1296 ;; otherwise current buffer is marked to show always. | |
1297 (t | |
1298 bs-string-show-always))) | |
27016 | 1299 |
1300 (defun bs--get-modified-string (start-buffer all-buffers) | |
1301 "Return a string which describes whether current buffer is modified. | |
1302 START-BUFFER is the buffer where we started buffer selection. | |
78972
3ae0d15a80ab
(bs--get-marked-string, bs--get-modified-string, bs--get-readonly-string,
Juanma Barranquero <lekktu@gmail.com>
parents:
78954
diff
changeset
|
1303 ALL-BUFFERS is the list of buffers appearing in Buffer Selection Menu." |
27016 | 1304 (if (buffer-modified-p) "*" " ")) |
1305 | |
1306 (defun bs--get-readonly-string (start-buffer all-buffers) | |
1307 "Return a string which describes whether current buffer is read only. | |
1308 START-BUFFER is the buffer where we started buffer selection. | |
78972
3ae0d15a80ab
(bs--get-marked-string, bs--get-modified-string, bs--get-readonly-string,
Juanma Barranquero <lekktu@gmail.com>
parents:
78954
diff
changeset
|
1309 ALL-BUFFERS is the list of buffers appearing in Buffer Selection Menu." |
27016 | 1310 (if buffer-read-only "%" " ")) |
1311 | |
1312 (defun bs--get-size-string (start-buffer all-buffers) | |
1313 "Return a string which describes the size of current buffer. | |
1314 START-BUFFER is the buffer where we started buffer selection. | |
78972
3ae0d15a80ab
(bs--get-marked-string, bs--get-modified-string, bs--get-readonly-string,
Juanma Barranquero <lekktu@gmail.com>
parents:
78954
diff
changeset
|
1315 ALL-BUFFERS is the list of buffers appearing in Buffer Selection Menu." |
27016 | 1316 (int-to-string (buffer-size))) |
1317 | |
1318 (defun bs--get-name (start-buffer all-buffers) | |
1319 "Return name of current buffer for Buffer Selection Menu. | |
1320 The name of current buffer gets additional text properties | |
1321 for mouse highlighting. | |
1322 START-BUFFER is the buffer where we started buffer selection. | |
78972
3ae0d15a80ab
(bs--get-marked-string, bs--get-modified-string, bs--get-readonly-string,
Juanma Barranquero <lekktu@gmail.com>
parents:
78954
diff
changeset
|
1323 ALL-BUFFERS is the list of buffers appearing in Buffer Selection Menu." |
68447
0d6e07750ed8
(bs--format-aux): Implement `middle' alignment as described in the docstring for
Juanma Barranquero <lekktu@gmail.com>
parents:
65286
diff
changeset
|
1324 (propertize (buffer-name) |
0d6e07750ed8
(bs--format-aux): Implement `middle' alignment as described in the docstring for
Juanma Barranquero <lekktu@gmail.com>
parents:
65286
diff
changeset
|
1325 'help-echo "mouse-2: select this buffer, mouse-3: select in other frame" |
0d6e07750ed8
(bs--format-aux): Implement `middle' alignment as described in the docstring for
Juanma Barranquero <lekktu@gmail.com>
parents:
65286
diff
changeset
|
1326 'mouse-face 'highlight)) |
27016 | 1327 |
1328 (defun bs--get-mode-name (start-buffer all-buffers) | |
1329 "Return the name of mode of current buffer for Buffer Selection Menu. | |
1330 START-BUFFER is the buffer where we started buffer selection. | |
78972
3ae0d15a80ab
(bs--get-marked-string, bs--get-modified-string, bs--get-readonly-string,
Juanma Barranquero <lekktu@gmail.com>
parents:
78954
diff
changeset
|
1331 ALL-BUFFERS is the list of buffers appearing in Buffer Selection Menu." |
87578
2a8a9f3362d6
(bs--get-mode-name): Fix typo in previous change.
Juanma Barranquero <lekktu@gmail.com>
parents:
87567
diff
changeset
|
1332 (format-mode-line mode-name nil nil start-buffer)) |
27016 | 1333 |
1334 (defun bs--get-file-name (start-buffer all-buffers) | |
1335 "Return string for column 'File' in Buffer Selection Menu. | |
1336 This is the variable `buffer-file-name' of current buffer. | |
27576 | 1337 If current mode is `dired-mode' or `shell-mode' it returns the |
27016 | 1338 default directory. |
1339 START-BUFFER is the buffer where we started buffer selection. | |
78954
fad130192ad9
(bs-string-show-normally, bs-sort-functions, bs--get-file-name):
Juanma Barranquero <lekktu@gmail.com>
parents:
78952
diff
changeset
|
1340 ALL-BUFFERS is the list of buffers appearing in Buffer Selection Menu." |
68924
526bb84288e1
(bs-mode): Use `buffer-disable-undo'.
Juanma Barranquero <lekktu@gmail.com>
parents:
68651
diff
changeset
|
1341 (propertize (if (member major-mode '(shell-mode dired-mode)) |
526bb84288e1
(bs-mode): Use `buffer-disable-undo'.
Juanma Barranquero <lekktu@gmail.com>
parents:
68651
diff
changeset
|
1342 default-directory |
526bb84288e1
(bs-mode): Use `buffer-disable-undo'.
Juanma Barranquero <lekktu@gmail.com>
parents:
68651
diff
changeset
|
1343 (or buffer-file-name "")) |
526bb84288e1
(bs-mode): Use `buffer-disable-undo'.
Juanma Barranquero <lekktu@gmail.com>
parents:
68651
diff
changeset
|
1344 'mouse-face 'highlight |
526bb84288e1
(bs-mode): Use `buffer-disable-undo'.
Juanma Barranquero <lekktu@gmail.com>
parents:
68651
diff
changeset
|
1345 'help-echo "mouse-2: select this buffer, mouse-3: select in other frame")) |
27016 | 1346 |
1347 (defun bs--insert-one-entry (buffer) | |
1348 "Generate one entry for buffer BUFFER in Buffer Selection Menu. | |
1349 It goes over all columns described in `bs-attributes-list' | |
1350 and evaluates corresponding string. Inserts string in current buffer; | |
1351 normally *buffer-selection*." | |
1352 (let ((string "") | |
30799 | 1353 (to-much 0) |
27016 | 1354 (apply-args (append (list bs--buffer-coming-from bs-current-list)))) |
1355 (save-excursion | |
85325
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
1356 (set-buffer buffer) |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
1357 (dolist (column bs-attributes-list) |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
1358 (let* ((min (bs--get-value (nth 1 column))) |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
1359 (new-string (bs--format-aux (bs--get-value (nth 4 column) ; fun |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
1360 apply-args) |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
1361 (nth 3 column) ; align |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
1362 (- min to-much))) |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
1363 (len (length new-string))) |
30799 | 1364 (setq string (concat string new-string)) |
85325
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
1365 (when (> len min) |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
1366 (setq to-much (- len min)))))) |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
1367 (insert string))) |
27016 | 1368 |
1369 (defun bs--format-aux (string align len) | |
78972
3ae0d15a80ab
(bs--get-marked-string, bs--get-modified-string, bs--get-readonly-string,
Juanma Barranquero <lekktu@gmail.com>
parents:
78954
diff
changeset
|
1370 "Pad STRING to length LEN with alignment ALIGN. |
27016 | 1371 ALIGN is one of the symbols `left', `middle', or `right'." |
68447
0d6e07750ed8
(bs--format-aux): Implement `middle' alignment as described in the docstring for
Juanma Barranquero <lekktu@gmail.com>
parents:
65286
diff
changeset
|
1372 (let* ((width (length string)) |
0d6e07750ed8
(bs--format-aux): Implement `middle' alignment as described in the docstring for
Juanma Barranquero <lekktu@gmail.com>
parents:
65286
diff
changeset
|
1373 (len (max len width))) |
0d6e07750ed8
(bs--format-aux): Implement `middle' alignment as described in the docstring for
Juanma Barranquero <lekktu@gmail.com>
parents:
65286
diff
changeset
|
1374 (format (format "%%%s%ds" (if (eq align 'right) "" "-") len) |
0d6e07750ed8
(bs--format-aux): Implement `middle' alignment as described in the docstring for
Juanma Barranquero <lekktu@gmail.com>
parents:
65286
diff
changeset
|
1375 (if (eq align 'middle) |
0d6e07750ed8
(bs--format-aux): Implement `middle' alignment as described in the docstring for
Juanma Barranquero <lekktu@gmail.com>
parents:
65286
diff
changeset
|
1376 (concat (make-string (/ (- len width) 2) ?\s) string) |
0d6e07750ed8
(bs--format-aux): Implement `middle' alignment as described in the docstring for
Juanma Barranquero <lekktu@gmail.com>
parents:
65286
diff
changeset
|
1377 string)))) |
27016 | 1378 |
1379 (defun bs--show-header () | |
1380 "Insert header for Buffer Selection Menu in current buffer." | |
85325
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
1381 (insert (bs--create-header-line #'identity) |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
1382 "\n" |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
1383 (bs--create-header-line (lambda (title) |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
1384 (make-string (length title) ?-))) |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
1385 "\n")) |
27016 | 1386 |
1387 (defun bs--get-name-length () | |
1388 "Return value of `bs--name-entry-length'." | |
1389 bs--name-entry-length) | |
1390 | |
85325
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
1391 (defun bs--create-header-line (col) |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
1392 "Generate a line for the header. |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
1393 COL is called for each column in `bs-attributes-list' as a |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
1394 function of one argument, the string heading for the column." |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
1395 (mapconcat (lambda (column) |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
1396 (bs--format-aux (funcall col (bs--get-value (car column))) |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
1397 (nth 3 column) ; align |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
1398 (bs--get-value (nth 1 column)))) |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
1399 bs-attributes-list |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
1400 "")) |
27016 | 1401 |
1402 (defun bs--show-with-configuration (name &optional arg) | |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
1403 "Display buffer list of configuration with name NAME. |
27016 | 1404 Set configuration NAME and determine window for Buffer Selection Menu. |
1405 Unless current buffer is buffer *buffer-selection* we have to save | |
1406 the buffer we started Buffer Selection Menu and the current window | |
1407 configuration to restore buffer and window configuration after a | |
1408 selection. If there is already a window displaying *buffer-selection* | |
1409 select this window for Buffer Selection Menu. Otherwise open a new | |
1410 window. | |
1411 The optional argument ARG is the prefix argument when calling a function | |
1412 for buffer selection." | |
1413 (bs-set-configuration name) | |
1414 (let ((bs--show-all (or bs--show-all arg))) | |
30799 | 1415 (unless (string= "*buffer-selection*" (buffer-name)) |
27016 | 1416 ;; Only when not in buffer *buffer-selection* |
1417 ;; we have to set the buffer we started the command | |
73850
c089b114a8ec
(bs--redisplay): Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
73642
diff
changeset
|
1418 (setq bs--buffer-coming-from (current-buffer))) |
30799 | 1419 (let ((liste (bs-buffer-list)) |
73859
75ac3e7c76de
(bs--window-for-buffer): Remove.
Juanma Barranquero <lekktu@gmail.com>
parents:
73850
diff
changeset
|
1420 (active-window (get-window-with-predicate |
85325
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
1421 (lambda (w) |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
1422 (string= (buffer-name (window-buffer w)) |
f885ff424d69
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
85170
diff
changeset
|
1423 "*buffer-selection*")) |
79104
4801bb53c00e
(bs--window-config-coming-from): Revert 2006-11-09 change.
Juanma Barranquero <lekktu@gmail.com>
parents:
78976
diff
changeset
|
1424 nil (selected-frame)))) |
30799 | 1425 (if active-window |
1426 (select-window active-window) | |
79104
4801bb53c00e
(bs--window-config-coming-from): Revert 2006-11-09 change.
Juanma Barranquero <lekktu@gmail.com>
parents:
78976
diff
changeset
|
1427 (bs--restore-window-config) |
4801bb53c00e
(bs--window-config-coming-from): Revert 2006-11-09 change.
Juanma Barranquero <lekktu@gmail.com>
parents:
78976
diff
changeset
|
1428 (setq bs--window-config-coming-from (current-window-configuration)) |
73850
c089b114a8ec
(bs--redisplay): Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
73642
diff
changeset
|
1429 (when (> (window-height (selected-window)) 7) |
c089b114a8ec
(bs--redisplay): Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
73642
diff
changeset
|
1430 (split-window-vertically) |
c089b114a8ec
(bs--redisplay): Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
73642
diff
changeset
|
1431 (other-window 1))) |
30799 | 1432 (bs-show-in-buffer liste) |
1433 (bs-message-without-log "%s" (bs--current-config-message))))) | |
27016 | 1434 |
1435 (defun bs--configuration-name-for-prefix-arg (prefix-arg) | |
1436 "Convert prefix argument PREFIX-ARG to a name of a buffer configuration. | |
1437 If PREFIX-ARG is nil return `bs-default-configuration'. | |
1438 If PREFIX-ARG is an integer return PREFIX-ARG element of `bs-configurations'. | |
1439 Otherwise return `bs-alternative-configuration'." | |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
1440 (cond ;; usually activation |
30799 | 1441 ((null prefix-arg) |
1442 bs-default-configuration) | |
1443 ;; call with integer as prefix argument | |
1444 ((integerp prefix-arg) | |
1445 (if (and (< 0 prefix-arg) (<= prefix-arg (length bs-configurations))) | |
1446 (car (nth (1- prefix-arg) bs-configurations)) | |
1447 bs-default-configuration)) | |
1448 ;; call by prefix argument C-u | |
1449 (t bs-alternative-configuration))) | |
27016 | 1450 |
1451 ;; ---------------------------------------------------------------------- | |
1452 ;; Main function bs-customize and bs-show | |
1453 ;; ---------------------------------------------------------------------- | |
1454 | |
1455 ;;;###autoload | |
1456 (defun bs-customize () | |
1457 "Customization of group bs for Buffer Selection Menu." | |
1458 (interactive) | |
1459 (customize-group "bs")) | |
1460 | |
1461 ;;;###autoload | |
1462 (defun bs-show (arg) | |
30799 | 1463 "Make a menu of buffers so you can manipulate buffers or the buffer list. |
27016 | 1464 \\<bs-mode-map> |
1465 There are many key commands similar to `Buffer-menu-mode' for | |
78954
fad130192ad9
(bs-string-show-normally, bs-sort-functions, bs--get-file-name):
Juanma Barranquero <lekktu@gmail.com>
parents:
78952
diff
changeset
|
1466 manipulating the buffer list and the buffers themselves. |
27016 | 1467 User can move with [up] or [down], select a buffer |
1468 by \\[bs-select] or [SPC]\n | |
1469 Type \\[bs-kill] to leave Buffer Selection Menu without a selection. | |
1470 Type \\[bs-help] after invocation to get help on commands available. | |
1471 With prefix argument ARG show a different buffer list. Function | |
1472 `bs--configuration-name-for-prefix-arg' determine accordingly | |
1473 name of buffer configuration." | |
1474 (interactive "P") | |
1475 (setq bs--marked-buffers nil) | |
1476 (bs--show-with-configuration (bs--configuration-name-for-prefix-arg arg))) | |
1477 | |
39568
e67950065cf9
Change ;;; to ;; for outline-minor-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
38095
diff
changeset
|
1478 ;; Now provide feature bs |
27016 | 1479 (provide 'bs) |
1480 | |
87567
4c3c683cdff8
* erc-ibuffer.el (erc-channel-modes):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85688
diff
changeset
|
1481 ;; arch-tag: c0d9ab34-bf06-4368-ae9d-af88878e6802 |
27016 | 1482 ;;; bs.el ends here |