edwtjo / evil-org-mode

Supplemental evil-mode keybindings to emacs org-mode
204 stars 37 forks source link

Not working when in agenda-view #32

Closed japhir closed 8 years ago

japhir commented 8 years ago

Hi! This might be me, but when I open my agenda view (week or day or month) and press j to navigate down to other tasks/appointments, emacs thinks I'm trying to reschedule the apointment! Kind regards

japhir commented 8 years ago

Fixed this by manually adding the following to the config of org-mode, maybe the mode should add this?

(add-hook 'org-agenda-mode-hook
    (lambda ()
      (define-key org-agenda-mode-map "j" 'evil-next-line)
      (define-key org-agenda-mode-map "k" 'evil-previous-line)))