This commit is contained in:
James Nguyen 2022-04-14 13:37:15 -04:00
parent e29669bd67
commit 17d24aa240
1 changed files with 13 additions and 1 deletions

View File

@ -713,7 +713,19 @@ Then use the above template as an example or, using [[yasnippet][yasnippet]],
;;; evil-collection-eldoc.el ends here
#+end_src
Finally, add eldoc to ~evil-collection--supported-modes~.
Finally, add ~eldoc~ to ~evil-collection--supported-modes~.
#+begin_src emacs-lisp :tangle yes
(defvar evil-collection--supported-modes
`(
;; ...
eldoc
;; ...
)
"List of modes supported by evil-collection. Elements are
either target mode symbols or lists which `car' is the mode
symbol and `cdr' the packages to register.")
#+end_src
** Contributing
We welcome any additional modes that are not already supported.