diff options
| author | James Nguyen <james@jojojames.com> | 2022-05-31 18:34:08 -0400 |
|---|---|---|
| committer | James Nguyen <james@jojojames.com> | 2022-05-31 18:34:08 -0400 |
| commit | cd34af6067e29aa2c46e8cac5dd4dc5c9ae0d3af (patch) | |
| tree | 8a21f3ad55441c79c8d6f91c0b559ecd1895da02 | |
| parent | 514494a9973a29f070c5b5c40c05dcb80e724a5f (diff) | |
Fix quoting
| -rw-r--r-- | evil-collection.el | 5 |
1 files 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 |
