diff options
| author | Adrian Staniec <adrianstaniec@gmail.com> | 2015-12-01 01:04:19 +0100 |
|---|---|---|
| committer | Adrian Staniec <adrianstaniec@gmail.com> | 2015-12-01 01:04:19 +0100 |
| commit | 4d7251202572c62c2cfc3d780717771675486598 (patch) | |
| tree | e4ead1d7b5e79fa6c745108292638a61cb197462 | |
| parent | ef5f5c95a5a0aeb6d59144e1fb7d21b44c803300 (diff) | |
fixed shift+hjkl mappings for consistency
| -rw-r--r-- | README.org | 6 | ||||
| -rw-r--r-- | evil-org.el | 6 |
2 files changed, 8 insertions, 4 deletions
@@ -30,8 +30,10 @@ Here are the keys introduced by evil-org | gl | outline-next-visible-heading | | t | org-todo | | T | org-insert-todo-heading nil | - | H | org-beginning-of-line | - | L | org-end-of-line | + | H | org-shiftleft | + | J | org-shiftdown | + | K | org-shiftup | + | L | org-shiftright | | o | always-insert-item | | O | org-insert-heading | | '$' | org-end-of-line | diff --git a/evil-org.el b/evil-org.el index 2999b49..8b9a917 100644 --- a/evil-org.el +++ b/evil-org.el @@ -132,8 +132,10 @@ FUN function callback" "gl" 'outline-next-visible-heading "t" 'org-todo "T" '(lambda () (interactive) (evil-org-eol-call (lambda() (org-insert-todo-heading nil)))) - "H" 'org-beginning-of-line - "L" 'org-end-of-line + "H" 'org-shiftleft + "J" 'org-shiftdown + "K" 'org-shiftup + "L" 'org-shiftright "o" '(lambda () (interactive) (evil-org-eol-call 'clever-insert-item)) "O" '(lambda () (interactive) (evil-org-eol-call 'org-insert-heading)) "$" 'org-end-of-line |
