hello, i started from https://orgmode.org/manual/Plain-Lists.html#DOCF13
> If you do not want the item to be split, customize the variable > org-M-RET-may-split-line. i found out from the documentation that i can stop M-RET from splitting the heading, and keep the functionality for items, tables. so i arrived at (setq org-M-RET-may-split-line '((default . t) (heading . nil))) which i would want to convert it for use-package :custom i tested and i got: ⛔ Warning (emacs): Value ‘((default . t) (heading))’ does not match type (choice (const :tag Always t) (const :tag Never nil) (repeat :greedy t :tag Individual contexts (cons (choice :tag Context (const headline) (const item) (const table) (const default)) (boolean)))) i have no idea what i am doing, so can you help me?
