Variable: hywiki-allow-plurals-flag
hywiki-allow-plurals-flag is a customizable variable defined in
hywiki.el.
Value
t
Documentation
Non-nil means plural HyWikiWords have the same referent as the singular form.
Non-nil is the default.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hywiki.el
(defcustom hywiki-allow-plurals-flag t
"Non-nil means plural HyWikiWords have the same referent as the singular form.
Non-nil is the default."
:initialize #'custom-initialize-default
:set (lambda (option value)
(set option value)
(setq hywiki--any-wikiword-regexp-list nil))
:type 'boolean
:group 'hyperbole-hywiki)