diff options
| author | Axel Forsman <axel@axelf.se> | 2023-08-24 10:56:27 +0200 |
|---|---|---|
| committer | Axel Forsman <axelsfor@gmail.com> | 2023-08-27 13:07:58 +0200 |
| commit | 2d8918e827b970623cf1ab5ef073412c33196d04 (patch) | |
| tree | 5f0ca57012a1c63c3467e5beaabbbc8e57c899c6 /evil-integration.el | |
| parent | a667d8857f8a64249b53a4c45805ed6d62da4e5d (diff) | |
Do not silence unused evil-define-command argument
Diffstat (limited to 'evil-integration.el')
| -rw-r--r-- | evil-integration.el | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/evil-integration.el b/evil-integration.el index 02f7e52..e7f156a 100644 --- a/evil-integration.el +++ b/evil-integration.el @@ -308,7 +308,7 @@ the mark and entering `recursive-edit'." (remove-hook 'post-command-hook #'evil-ace-jump-exit-recursive-edit) (exit-recursive-edit)))) -(evil-define-motion evil-ace-jump-char-mode (count) +(evil-define-motion evil-ace-jump-char-mode (_count) "Jump visually directly to a char using ace-jump." :type inclusive (evil-without-repeat @@ -325,7 +325,7 @@ the mark and entering `recursive-edit'." ((eq evil-this-type 'exclusive) 'inclusive) ((eq evil-this-type 'inclusive) 'exclusive))))))) -(evil-define-motion evil-ace-jump-char-to-mode (count) +(evil-define-motion evil-ace-jump-char-to-mode (_count) "Jump visually to the char in front of a char using ace-jump." :type inclusive (evil-without-repeat @@ -343,7 +343,7 @@ the mark and entering `recursive-edit'." ((eq evil-this-type 'inclusive) 'exclusive)))) (backward-char))))) -(evil-define-motion evil-ace-jump-line-mode (count) +(evil-define-motion evil-ace-jump-line-mode (_count) "Jump visually to the beginning of a line using ace-jump." :type line :repeat abort @@ -351,7 +351,7 @@ the mark and entering `recursive-edit'." (evil-enclose-ace-jump-for-motion (call-interactively 'ace-jump-line-mode)))) -(evil-define-motion evil-ace-jump-word-mode (count) +(evil-define-motion evil-ace-jump-word-mode (_count) "Jump visually to the beginning of a word using ace-jump." :type exclusive :repeat abort @@ -396,7 +396,7 @@ Based on `evil-enclose-ace-jump-for-motion'." (declare (indent defun) (debug t)) (let ((name (intern (format "evil-%s" command)))) - `(evil-define-motion ,name (count) + `(evil-define-motion ,name (_count) ,(format "Evil motion for `%s'." command) :type ,type :jump t |
