Variable: tildify-space-pattern
tildify-space-pattern is a customizable variable defined in
tildify.el.gz.
Value
"[,:;(][ ]*[a]\\|\\<[AIKOSUVWZikosuvwz]"
Documentation
Pattern specifying whether to insert a hard space at point.
If the pattern matches looking-back, a hard space needs to be inserted instead
of a space at point. The regexp is always case sensitive, regardless of the
current case-fold-search setting.
This variable was added, or its default value changed, in Emacs 25.1.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/tildify.el.gz
;;; *** Tildify Mode ***
(defcustom tildify-space-pattern "[,:;(][ \t]*[a]\\|\\<[AIKOSUVWZikosuvwz]"
"Pattern specifying whether to insert a hard space at point.
If the pattern matches `looking-back', a hard space needs to be inserted instead
of a space at point. The regexp is always case sensitive, regardless of the
current `case-fold-search' setting."
:version "25.1"
:type 'regexp)