Function: ibuffer-jump
ibuffer-jump is an autoloaded, interactive and byte-compiled function
defined in ibuffer.el.gz.
Signature
(ibuffer-jump &optional OTHER-WINDOW)
Documentation
Call Ibuffer and set point at the line listing the current buffer.
If optional arg OTHER-WINDOW is non-nil, then use another window.
Probably introduced at or before Emacs version 26.1.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/ibuffer.el.gz
;;;###autoload
(defun ibuffer-jump (&optional other-window)
"Call Ibuffer and set point at the line listing the current buffer.
If optional arg OTHER-WINDOW is non-nil, then use another window."
(interactive "P")
(let ((name (buffer-name)))
(ibuffer other-window)
(ignore-errors (ibuffer-jump-to-buffer name))))