diff options
Diffstat (limited to 'lisp/ibuf-ext.el')
-rw-r--r-- | lisp/ibuf-ext.el | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/lisp/ibuf-ext.el b/lisp/ibuf-ext.el index 1dc8acbe1f3..5b69a878e21 100644 --- a/lisp/ibuf-ext.el +++ b/lisp/ibuf-ext.el @@ -332,6 +332,17 @@ where NAME is a unique but arbitrary name and FILTER-GROUP-LIST is a list of filter groups with the same structure as allowed for `ibuffer-filter-groups'. +For instance: + + (setq ibuffer-saved-filter-groups + \\='((\"Home\" + (\"Modified\" (predicate buffer-modified-p (current-buffer))) + (\"Helm\" (name . \"\\\\*helm.+\")) + (\"Dev\" (or (filename . \".+\\\\.css\\\\'\") + (filename . \".+\\\\.html?\\\\'\") + (mode . android-mode) + (mode . clojure-mode)))))) + See also the functions `ibuffer-save-filter-groups' and `ibuffer-switch-to-saved-filter-groups' for saving and switching between sets of filter groups, and the variable @@ -682,7 +693,7 @@ To evaluate a form without viewing the buffer, see `ibuffer-do-eval'." (defun ibuffer-included-in-filters-p (buf filters) "Return non-nil if BUF passes all FILTERS. -BUF is a lisp buffer object, and FILTERS is a list of filter +BUF is a Lisp buffer object, and FILTERS is a list of filter specifications with the same structure as `ibuffer-filtering-qualifiers'." (not @@ -703,7 +714,7 @@ where operand d is itself a cons cell, or nil. Returns d." (defun ibuffer-included-in-filter-p (buf filter) "Return non-nil if BUF pass FILTER. -BUF is a lisp buffer object, and FILTER is a filter +BUF is a Lisp buffer object, and FILTER is a filter specification, with the same structure as an element of the list `ibuffer-filtering-qualifiers'." (if (eq (car filter) 'not) @@ -1199,7 +1210,7 @@ Interactively, prompt for NAME, and use the current filters." (_ (let ((type (assq (car qualifier) ibuffer-filtering-alist))) (unless qualifier - (error "Ibuffer: bad qualifier %s" qualifier)) + (error "Ibuffer: Bad qualifier %s" qualifier)) (concat " [" (cadr type) ": " (format "%s]" (cdr qualifier))))))) (defun ibuffer-list-buffer-modes (&optional include-parents) |