diff options
| author | Somelauw <Somelauw> | 2017-08-08 13:03:59 +0200 |
|---|---|---|
| committer | Somelauw <Somelauw> | 2017-08-08 13:03:59 +0200 |
| commit | 1725325eae0e3bf3609cb1a86effaa790afcc5de (patch) | |
| tree | 900b8e59e3e64f5d733a7ae7167a926c93560307 /README.org | |
| parent | b708d70325fcf9a400cdfd73af6a2e70b407386d (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
Diffstat (limited to 'README.org')
| -rw-r--r-- | README.org | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -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 |
