summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Nguyen <james@jojojames.com>2022-04-14 13:37:15 -0400
committerJames Nguyen <james@jojojames.com>2022-04-14 13:37:15 -0400
commit17d24aa240c8a64b54f456b8cad2dcef7a314b75 (patch)
tree3941c3c465b541e14e1d714bf2a490fe3f655776
parente29669bd671de62d5b064d8fd3e1b81eddcb9ac1 (diff)
Tweak
-rw-r--r--readme.org14
1 files changed, 13 insertions, 1 deletions
diff --git a/readme.org b/readme.org
index 8e8ae88..4f6cd22 100644
--- a/readme.org
+++ b/readme.org
@@ -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.