From 17d24aa240c8a64b54f456b8cad2dcef7a314b75 Mon Sep 17 00:00:00 2001 From: James Nguyen Date: Thu, 14 Apr 2022 13:37:15 -0400 Subject: [PATCH] Tweak --- readme.org | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) 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.