diff options
| -rw-r--r-- | evil-integration.el | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/evil-integration.el b/evil-integration.el index d1175a9..247c1ec 100644 --- a/evil-integration.el +++ b/evil-integration.el @@ -470,8 +470,12 @@ the mark and entering `recursive-edit'." (declare-function 'avy-goto-line "avy") (declare-function 'avy-goto-char "avy") (declare-function 'avy-goto-char-2 "avy") +(declare-function 'avy-goto-char-2-above "avy") +(declare-function 'avy-goto-char-2-below "avy") (declare-function 'avy-goto-word-0 "avy") (declare-function 'avy-goto-word-1 "avy") +(declare-function 'avy-goto-word-1-above "avy") +(declare-function 'avy-goto-word-1-below "avy") (declare-function 'avy-goto-subword-0 "avy") (declare-function 'avy-goto-subword-1 "avy") @@ -505,8 +509,12 @@ Based on `evil-enclose-ace-jump-for-motion'." (evil-define-avy-motion avy-goto-line line) (evil-define-avy-motion avy-goto-char inclusive) (evil-define-avy-motion avy-goto-char-2 inclusive) +(evil-define-avy-motion avy-goto-char-2-above inclusive) +(evil-define-avy-motion avy-goto-char-2-below inclusive) (evil-define-avy-motion avy-goto-word-0 exclusive) (evil-define-avy-motion avy-goto-word-1 exclusive) +(evil-define-avy-motion avy-goto-word-1-above exclusive) +(evil-define-avy-motion avy-goto-word-1-below exclusive) (evil-define-avy-motion avy-goto-subword-0 exclusive) (evil-define-avy-motion avy-goto-subword-1 exclusive) @@ -515,8 +523,12 @@ Based on `evil-enclose-ace-jump-for-motion'." avy-goto-line avy-goto-char avy-goto-char-2 + avy-goto-char-2-above + avy-goto-char-2-below avy-goto-word-0 avy-goto-word-1 + avy-goto-word-1-above + avy-goto-word-1-below avy-goto-subword-0 avy-goto-subword-1)) (define-key evil-motion-state-map |
