branch: externals/orgalist commit 66be8396ec465916c5277c0285c16ba486cb65b1 Author: Nicolas Goaziou <m...@nicolasgoaziou.fr> Commit: Nicolas Goaziou <m...@nicolasgoaziou.fr>
Really prevent any indentation at items * orgalist.el (orgalist--indent-line): Return t instead of `noindent' at a non-empty item. Returning `noindent' still allows `indent-line-function' default value to kick in, according to `indent-according-to-mode'. --- orgalist.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orgalist.el b/orgalist.el index 808fe3a..e7fb69d 100644 --- a/orgalist.el +++ b/orgalist.el @@ -536,7 +536,7 @@ This function is meant to be used as a piece of advice on (skip-chars-backward " \r\t\n") (point))) ;; If the item is not empty, do not cycle indentation. - 'noindent + t (orgalist--cycle-indentation struct) t))) ;; Within an item, indent according to the current bullet.