diff options
| author | Fabian Wilk <mail@fabianwilk.de> | 2015-10-19 17:14:02 +0100 |
|---|---|---|
| committer | Fabian Wilk <mail@fabianwilk.de> | 2015-10-19 17:14:02 +0100 |
| commit | 852a335974a5e300daafe50570a598e492524391 (patch) | |
| tree | e5ffe61ddb0ac8721650b445bc834280324f20d0 | |
| parent | ef5f5c95a5a0aeb6d59144e1fb7d21b44c803300 (diff) | |
Use <tab> binding instead of TAB to allow separate binding of C-i. Cf. http://www.gnu.org/software/emacs/manual/html_node/elisp/Function-Keys.html
| -rw-r--r-- | evil-org.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/evil-org.el b/evil-org.el index 2999b49..46d31c2 100644 --- a/evil-org.el +++ b/evil-org.el @@ -141,7 +141,7 @@ FUN function callback" "<" 'org-metaleft ">" 'org-metaright "-" 'org-cycle-list-bullet - (kbd "TAB") 'org-cycle) + (kbd "<tab>") 'org-cycle) ;; leader maps (evil-leader/set-key-for-mode 'org-mode |
