diff options
| author | James Nguyen <james@jojojames.com> | 2022-04-14 13:37:15 -0400 |
|---|---|---|
| committer | James Nguyen <james@jojojames.com> | 2022-04-14 13:37:15 -0400 |
| commit | 17d24aa240c8a64b54f456b8cad2dcef7a314b75 (patch) | |
| tree | 3941c3c465b541e14e1d714bf2a490fe3f655776 | |
| parent | e29669bd671de62d5b064d8fd3e1b81eddcb9ac1 (diff) | |
Tweak
| -rw-r--r-- | readme.org | 14 |
1 files changed, 13 insertions, 1 deletions
@@ -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. |
