From 29fab40d02e354e681898694bbb4be216390c643 Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Wed, 20 Mar 2024 10:35:15 +0000 Subject: [PATCH] org-mode set M-RET to not split line unless in a table --- config/org-mode.org | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/config/org-mode.org b/config/org-mode.org index 3d5e78e..ea10305 100644 --- a/config/org-mode.org +++ b/config/org-mode.org @@ -36,6 +36,10 @@ For reference information, see [[https://orgmode.com][Org-mode website]] (use-package org :ensure t :custom + (org-M-RET-may-split-line '((default . nil) + (headline . nil) + (item . nil) + (table . t))) (org-babel-load-languages '((emacs-lisp . t) (lua . t) (python . t)))