From cd34af6067e29aa2c46e8cac5dd4dc5c9ae0d3af Mon Sep 17 00:00:00 2001 From: James Nguyen Date: Tue, 31 May 2022 18:34:08 -0400 Subject: [PATCH] Fix quoting --- evil-collection.el | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/evil-collection.el b/evil-collection.el index bd19f7a..bfda994 100644 --- a/evil-collection.el +++ b/evil-collection.el @@ -401,7 +401,8 @@ This function takes care of checking the whitelist/blacklist against the full binding. For example: -(evil-collection-define-operator-key 'yank 'pass-mode-map \"f\" 'pass-copy-field) +(evil-collection-define-operator-key \='yank + \='pass-mode-map \"f\" \='pass-copy-field) This will check \"yf\" against a user's white/blacklist and also record the binding in `annalist' as so." @@ -823,7 +824,7 @@ forwarded to `require'." Alternatively, you may register select bindings manually, for instance: - (with-eval-after-load 'calendar + (with-eval-after-load \='calendar (evil-collection-calendar-setup)) If MODES is specified (as either one mode or a list of modes), use those modes