Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion evil-common.el
Original file line number Diff line number Diff line change
Expand Up @@ -3783,6 +3783,7 @@ should be left-aligned for left justification."
;;; View helper

(defvar-local evil-list-view-select-action nil)
(put 'evil-list-view-select-action 'permanent-local t)

(define-derived-mode evil-list-view-mode tabulated-list-mode
"Evil List View"
Expand Down Expand Up @@ -3827,8 +3828,8 @@ PROPERTIES is a property-list which supports the following properties:
(with-current-buffer buf
(setq tabulated-list-format ,(plist-get properties :format))
(setq tabulated-list-entries ,(plist-get properties :entries))
(setq evil-list-view-select-action ,(plist-get properties :select-action))
(evil-list-view-mode)
(setq evil-list-view-select-action ,(plist-get properties :select-action))
(setq mode-name ,(plist-get properties :mode-name))
(evil-motion-state))
(switch-to-buffer-other-window buf))))
Expand Down
2 changes: 1 addition & 1 deletion evil-jumps.el
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ Otherwise the jump commands act only within the current buffer."
:repeat nil
(evil-with-view-list
:name "evil-jumps"
:mode "Evil Jump List"
:mode-name "Evil Jump List"
:format [("Jump" 5 nil)
("Marker" 8 nil)
("File/text" 1000 t)]
Expand Down