diff options
| author | justbur <justin@burkett.cc> | 2016-05-23 14:14:58 -0400 |
|---|---|---|
| committer | justbur <justin@burkett.cc> | 2016-05-23 14:14:58 -0400 |
| commit | 86012bc64bee6ee640b9fd4d649b407a0dcc4775 (patch) | |
| tree | 05afc71806366f7ed3769686d589169d2706b855 /evil-integration.el | |
| parent | a259dfa5db8e9ebb295d3eeb8eb07f806b08eac0 (diff) | |
evil-integration.el: Add support for 4 new avy functions
Diffstat (limited to 'evil-integration.el')
| -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 |
