diff options
| author | John Mathena <jmmathena@gmail.com> | 2021-10-25 11:48:16 -0500 |
|---|---|---|
| committer | John Mathena <jmmathena@gmail.com> | 2021-11-11 21:04:54 -0600 |
| commit | 730db86f775ea08cefe9c260b20426e16bbb3e19 (patch) | |
| tree | 77ddceff104a2fd438153daf835dc928cfcd8aa7 | |
| parent | 80ef38fb378541937f6ddfe836809e76eda1e355 (diff) | |
Fix issue with evil-digit-bound-motions
| -rw-r--r-- | evil-org.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/evil-org.el b/evil-org.el index a4df0f5..c04eae4 100644 --- a/evil-org.el +++ b/evil-org.el @@ -632,9 +632,8 @@ Includes tables, list items and subtrees." ;;; Keythemes (defun evil-org--populate-base-bindings () "Bindings that are always available." - (let ((motion-map (evil-get-minor-mode-keymap 'motion 'evil-org-mode))) - (evil-redirect-digit-argument motion-map "0" 'evil-org-beginning-of-line)) (evil-define-key 'motion 'evil-org-mode + (kbd "0") 'evil-org-beginning-of-line (kbd "$") 'evil-org-end-of-line (kbd ")") 'evil-org-forward-sentence (kbd "(") 'evil-org-backward-sentence |
