Re: [O] evil-mode movement keys in the agenda?

2013-04-15 Thread Marcelo de Moraes Serpa
Works like a charm! Thank you very much! On Thu, Apr 11, 2013 at 5:06 AM, Michael Strey mst...@strey.biz wrote: Marcelo, I'm using only the following two lines. #+BEGIN_SRC emacs-lisp ;;; org agenda -- leave in emacs mode but add j k (define-key org-agenda-mode-map j 'evil-next-line)

[O] evil-mode movement keys in the agenda?

2013-04-11 Thread Michael Strey
Marcelo, I'm using only the following two lines. #+BEGIN_SRC emacs-lisp ;;; org agenda -- leave in emacs mode but add j k (define-key org-agenda-mode-map j 'evil-next-line) (define-key org-agenda-mode-map k 'evil-previous-line) #+END_SRC It's a good compromise. Regards -- Michael Strey

[O] evil-mode movement keys in the agenda?

2013-04-10 Thread Marcelo de Moraes Serpa
Hi list, Is there a way to setup the movement keys in the agenda to hjkl? I use evil-mode with my org files, and when I open the agenda, I always have to remember not to use hjkl to move around, which is kind of annoying :) Cheers! - Marcelo.

Re: [O] evil-mode movement keys in the agenda?

2013-04-10 Thread Bastien
Hi Marcelo, Marcelo de Moraes Serpa celose...@gmail.com writes: Is there a way to setup the movement keys in the agenda to hjkl? You can play around with `org-agenda-mode-map'. -- Bastien