Variable: kfill:hanging-expression

kfill:hanging-expression is a variable defined in kfill.el.

Value

(or
 (looking-at " *(?\\([0-9][0-9a-z.]*\\|[a-z][0-9a-z.]\\)) +")
 (looking-at " *\\([0-9]+[a-z.]+[0-9a-z.]*\\|[0-9]+\\|[a-z]\\)\\([.>] +\\|  +\\)")
 (looking-at "[?!~*+ -]+ "))

Documentation

Conditional expression used to test for hanging indented lists.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/kfill.el
;;; ************************************************************************
;;; Private variables
;;; ************************************************************************

(defconst kfill:hanging-expression
  (cons 'or
	(delq nil (mapcar (lambda (pattern-type)
			    (when (eq (cdr pattern-type) 'kfill:hanging-list)
			      (list 'looking-at (car pattern-type))))
			  kfill:prefix-table)))
  "Conditional expression used to test for hanging indented lists.")