Undo 1f23eecd: un-homogenize TAB/RET/ESC

This is more trouble than its worth. Better to deal with the old edge
cases than the new ones this causes.

Addresses #1218
This commit is contained in:
Henrik Lissner 2019-03-14 14:24:04 -04:00
parent 60c965ded8
commit 90f36bceff
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395
3 changed files with 49 additions and 50 deletions

View file

@ -386,8 +386,10 @@ between the two."
:ni "C-S-k" #'org-metaup
:ni "C-S-j" #'org-metadown
;; more intuitive RET keybinds
:i "RET" #'org-return-indent
:n "RET" #'+org/dwim-at-point
:i [return] #'org-return-indent
:i "RET" #'org-return-indent
:n [return] #'+org/dwim-at-point
:n "RET" #'+org/dwim-at-point
;; more vim-esque org motion keys (not covered by evil-org-mode)
:m "]]" (λ! (org-forward-heading-same-level nil) (org-beginning-of-line))
:m "[[" (λ! (org-backward-heading-same-level nil) (org-beginning-of-line))