summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--evil-org-agenda.el5
-rw-r--r--evil-org.el3
2 files changed, 5 insertions, 3 deletions
diff --git a/evil-org-agenda.el b/evil-org-agenda.el
index 433089e..be53e92 100644
--- a/evil-org-agenda.el
+++ b/evil-org-agenda.el
@@ -50,9 +50,10 @@
;; open
(kbd "<tab>") 'org-agenda-goto
- (kbd "<return>") 'org-agenda-switch-to
(kbd "S-<return>") 'org-agenda-goto
- (kbd "M-<return>") 'org-agenda-recenter
+ (kbd "g TAB") 'org-agenda-goto
+ (kbd "RET") 'org-agenda-switch-to
+ (kbd "M-RET") 'org-agenda-recenter
(kbd "SPC") 'org-agenda-show-and-scroll-up
(kbd "<delete>") 'org-agenda-show-scroll-down
diff --git a/evil-org.el b/evil-org.el
index 9bf7ff6..8057cb0 100644
--- a/evil-org.el
+++ b/evil-org.el
@@ -657,7 +657,8 @@ Includes tables, list items and subtrees."
org-insert-todo-heading-respect-content))
(evil-define-key '(normal visual) evil-org-mode-map
(kbd "<tab>") 'org-cycle
- (kbd "<S-tab>") 'org-shifttab
+ (kbd "g TAB") 'org-cycle
+ (kbd "<backtab>") 'org-shifttab
(kbd "<") 'evil-org-<
(kbd ">") 'evil-org->))