Variable: ibuffer-auto-mode
ibuffer-auto-mode is a buffer-local variable defined in
ibuf-ext.el.gz.
Documentation
Non-nil if Ibuffer-Auto mode is enabled.
Use the command ibuffer-auto-mode(var)/ibuffer-auto-mode(fun) to change this variable.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/ibuf-ext.el.gz
;;;###autoload
(define-minor-mode ibuffer-auto-mode
"Toggle use of Ibuffer's auto-update facility (Ibuffer Auto mode)."
:lighter nil
(unless (derived-mode-p 'ibuffer-mode)
(error "This buffer is not in Ibuffer mode"))
(cond (ibuffer-auto-mode
(frame-or-buffer-changed-p 'ibuffer-auto-buffers-changed) ; Initialize state vector
(add-hook 'post-command-hook #'ibuffer-auto-update-changed))
(t
(remove-hook 'post-command-hook #'ibuffer-auto-update-changed))))