Function: ibuffer-jump-to-filter-group

ibuffer-jump-to-filter-group is an autoloaded, interactive and byte-compiled function defined in ibuf-ext.el.gz.

Signature

(ibuffer-jump-to-filter-group NAME)

Documentation

Move point to the filter group whose name is NAME.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/ibuf-ext.el.gz
;;;###autoload
(defun ibuffer-jump-to-filter-group (name)
  "Move point to the filter group whose name is NAME."
  (interactive
   (list (ibuffer-read-filter-group-name "Jump to filter group: ")))
  (if-let* ((it (assoc name (ibuffer-current-filter-groups-with-position))))
      (goto-char (cdr it))
    (error "No filter group with name %s" name)))