Function: ibuffer-bury-buffer

ibuffer-bury-buffer is an interactive and byte-compiled function defined in ibuffer.el.gz.

Signature

(ibuffer-bury-buffer)

Documentation

Bury the buffer on this line.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/ibuffer.el.gz
(defun ibuffer-bury-buffer ()
  "Bury the buffer on this line."
  (interactive)
  (let ((buf (ibuffer-current-buffer t))
	(line (+ 1 (count-lines 1 (point)))))
    (bury-buffer buf)
    (ibuffer-update nil t)
    (goto-char (point-min))
    (forward-line (1- line))))