diff options
| author | Frank Fischer <frank-fischer@shadow-soft.de> | 2016-06-20 07:39:46 +0200 |
|---|---|---|
| committer | Frank Fischer <frank-fischer@shadow-soft.de> | 2016-06-20 07:39:46 +0200 |
| commit | ff5266881271d93aecffe99fa9962e50a6697caa (patch) | |
| tree | 9281cff75446e67ae8f385043b2f2204a85ed706 | |
| parent | 44541938764235edbbadf79664079c40c3f0f4b4 (diff) | |
Add wrapper for `avy-goto-char-in-line` (fix #679)
| -rw-r--r-- | evil-integration.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/evil-integration.el b/evil-integration.el index 247c1ec..a6b5f96 100644 --- a/evil-integration.el +++ b/evil-integration.el @@ -472,6 +472,7 @@ the mark and entering `recursive-edit'." (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-char-in-line "avy") (declare-function 'avy-goto-word-0 "avy") (declare-function 'avy-goto-word-1 "avy") (declare-function 'avy-goto-word-1-above "avy") @@ -511,6 +512,7 @@ Based on `evil-enclose-ace-jump-for-motion'." (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-char-in-line 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) @@ -525,6 +527,7 @@ Based on `evil-enclose-ace-jump-for-motion'." avy-goto-char-2 avy-goto-char-2-above avy-goto-char-2-below + avy-goto-char-in-line avy-goto-word-0 avy-goto-word-1 avy-goto-word-1-above |
