Function: evil-list-view-mode
evil-list-view-mode is an interactive and byte-compiled function
defined in evil-common.el.
Signature
(evil-list-view-mode)
Documentation
Major mode derived from tabulated-list-mode by define-derived-mode.
It inherits all of the parent's attributes, but has its own keymap, abbrev table and syntax table:
evil-list-view-mode-map, evil-list-view-mode-abbrev-table and
evil-list-view-mode-syntax-table
which more-or-less shadow tabulated-list-mode's corresponding tables.
In addition to any hooks its parent mode might have run, this mode
runs the hook evil-list-view-mode-hook, as the final or penultimate
step during initialization.
<follow-link> nil
<mouse-1> evil-list-view-goto-entry
<return> evil-list-view-goto-entry
q evil-list-view-quit
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-common.el
(define-derived-mode evil-list-view-mode tabulated-list-mode
"Evil List View"
(tabulated-list-init-header)
(tabulated-list-print))