From 0e24e044f5cbc460b0e7680a6172d5f6aec398f3 Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Fri, 24 Oct 2025 17:18:47 +0200 Subject: [PATCH] Do not use buttons for outline folding Sometimes RET mistakenly folds the current headline instead of inserting a new line. Since I neither use RET nor the in-margin buttons for folding anyway, this feature can safely be disabled. --- init.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.el b/init.el index 45e6584..2f68903 100644 --- a/init.el +++ b/init.el @@ -643,7 +643,7 @@ split horizontally again, but this extra work should not matter much." (use-package outline :diminish outline-minor-mode - :init (setopt outline-minor-mode-use-buttons 'in-margins)) + :init (setopt outline-minor-mode-use-buttons nil)) (use-package outline-indent :init (setopt outline-indent-ellipsis " ▼ "))