aboutsummaryrefslogtreecommitdiff
path: root/dot_emacs
diff options
context:
space:
mode:
authorRyan Kavanagh <rak@rak.ac>2022-04-23 17:30:49 -0400
committerRyan Kavanagh <rak@rak.ac>2022-04-23 17:30:49 -0400
commit617ebe0f4802e38abe99fcc75a4513203649fe3b (patch)
treedb4bb1e04eac0973cec7f509a191c013f9270002 /dot_emacs
parentAdd company-org-block to emacs (diff)
<tab> should always map to org-cycle in org-mode
company-mode was rebinding it for completion. Don't do this
Diffstat (limited to 'dot_emacs')
-rw-r--r--dot_emacs2
1 files changed, 2 insertions, 0 deletions
diff --git a/dot_emacs b/dot_emacs
index 15d2e08..4285bec 100644
--- a/dot_emacs
+++ b/dot_emacs
@@ -484,6 +484,8 @@ Otherwise split the current paragraph into one sentence per line."
:mode ("\\.m\'" . octave-mode))
(use-package org
+ :bind (:map org-mode-map
+ ("<tab>" . org-cycle))
:hook
(org-mode . visual-line-mode)
:custom