From c616831a8ff928d5f611b497251edd4e9e5ecedd Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sun, 14 Jul 2024 18:16:52 -0400 Subject: [PATCH] fix(org): TAB in org-mode (for corfu users) For evil users, TAB used to invoke `org-cycle` in insert mode, until recent changes with the corfu module undid them, making them invoke only completion. --- modules/lang/org/config.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/lang/org/config.el b/modules/lang/org/config.el index 9b25796ee..7f21b32e7 100644 --- a/modules/lang/org/config.el +++ b/modules/lang/org/config.el @@ -846,7 +846,7 @@ between the two." ;; Recently, a [tab] keybind in `outline-mode-cycle-map' has begun ;; overriding org's [tab] keybind in GUI Emacs. This is needed to undo ;; that, and should probably be PRed to org. - [tab] #'org-cycle + :ie [tab] #'org-cycle "C-c C-S-l" #'+org/remove-link "C-c C-i" #'org-toggle-inline-images