summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSomelauw <Somelauw>2017-08-08 13:03:59 +0200
committerSomelauw <Somelauw>2017-08-08 13:03:59 +0200
commit1725325eae0e3bf3609cb1a86effaa790afcc5de (patch)
tree900b8e59e3e64f5d733a7ae7167a926c93560307
parentb708d70325fcf9a400cdfd73af6a2e70b407386d (diff)
Explain how to fix `TAB` in terminal Emacs
Cherry-picked from NicholasTD07-patch-1 Author: Nicholas T <NicholasTD07@users.noreply.github.com> Date: Sun Aug 6 14:08:34 2017 +1000 Explain how to fix `TAB` not working as expected `TAB` won't work as expected in some cases. All you have to do is disable `evil-want-C-i-jump`. Author: Somelauw <Somelauw> Date: Tue Aug 8 12:59:43 2017 +0200 Add heading "common issues" above tab-explanation
-rw-r--r--README.org13
1 files changed, 12 insertions, 1 deletions
diff --git a/README.org b/README.org
index 1cd1105..5c6134a 100644
--- a/README.org
+++ b/README.org
@@ -100,7 +100,18 @@ See [[file:doc/changelog.org][changelog]] for a history of changes.
(evil-org-set-key-theme))))
#+END_SRC
-For a more elaborate setup, take a look at [[file:doc/example_config.el][this example]].
+ For a more elaborate setup, take a look at [[file:doc/example_config.el][this example]].
+
+** Common issues
+
+ In case you run Emacs in a terminal, you might find that =TAB= does not work
+ as expected (being bound to =evil-jump-forward= instead of =org-tab=).
+ You can add this to your configuration to get =org-tab= instead at the cost
+ of losing =C-i= to jump.
+
+ #+BEGIN_SRC emacs-lisp
+ (setq evil-want-C-i-jump nil)
+ #+END_SRC
** See also