diff options
| author | Campbell Barton <ideasman42@gmail.com> | 2025-02-22 18:03:28 +1100 |
|---|---|---|
| committer | Tom Dalziel <33435574+tomdl89@users.noreply.github.com> | 2025-02-26 18:04:15 +0000 |
| commit | 5cc78bb22533482fdd5905f10950408156eb40a1 (patch) | |
| tree | d397e361abe27243c8cf2687db824acbff7069a2 | |
| parent | c222ce1ea6fbefaed08308c061371ebdf01b078f (diff) | |
Correct typos in evil-repeat.el
| -rw-r--r-- | evil-repeat.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/evil-repeat.el b/evil-repeat.el index 6ca53de..75727ef 100644 --- a/evil-repeat.el +++ b/evil-repeat.el @@ -131,7 +131,7 @@ (evil-repeat-abort))) (defsubst evil-repeat-recording-p () - "Return non-nil iff a recording is in progress." + "Return non-nil if a recording is in progress." (eq evil-recording-repeat t)) (defun evil-repeat-start () @@ -245,7 +245,7 @@ If COMMAND doesn't have this property, return DEFAULT." "Whether the current command should abort the recording of repeat information. Return non-nil if so." (or (evil-repeat-different-buffer-p) ; ... buffer changed - (eq repeat-type 'abort) ; ... explicitely forced + (eq repeat-type 'abort) ; ... explicitly forced (eq evil-recording-repeat 'abort) ; ... already aborted (evil-emacs-state-p) ; ... in Emacs state (and (evil-mouse-events-p ; ... mouse events @@ -579,7 +579,7 @@ If SAVE-POINT is non-nil, do not move point." (evil-change-state evil--execute-normal-return-state) (evil-normal-state)))))) -;; TODO: the same issue concering disabled undos as for `evil-paste-pop' +;; TODO: the same issue concerning disabled undos as for `evil-paste-pop' (evil-define-command evil-repeat-pop (count &optional save-point) "Replace the just repeated command with a previously executed command. Only allowed after `evil-repeat', `evil-repeat-pop' or |
