Variable: evil-cjk-word-combining-categories
evil-cjk-word-combining-categories is a customizable variable defined
in evil-vars.el.
Value
((nil . 94) (94) (114 . 107) (114 . 65) (114 . 71) (107 . 114)
(107 . 65) (107 . 71) (65 . 114) (65 . 107) (65 . 71) (71 . 114)
(71 . 107) (71 . 65))
Documentation
List of pair (cons) of categories to determine word boundary
used in evil-cjk-word-boundary-p. See the documentation of
word-combining-categories. Use describe-categories to see the
list of categories.
Source Code
;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-vars.el
(defcustom evil-cjk-word-combining-categories
'(;; default value in word-combining-categories
(nil . ?^) (?^ . nil)
;; Roman
(?r . ?k) (?r . ?A) (?r . ?G)
;; half-width Katakana
(?k . ?r) (?k . ?A) (?k . ?G)
;; full-width alphanumeric
(?A . ?r) (?A . ?k) (?A . ?G)
;; full-width Greek
(?G . ?r) (?G . ?k) (?G . ?A)
)
"List of pair (cons) of categories to determine word boundary
used in `evil-cjk-word-boundary-p'. See the documentation of
`word-combining-categories'. Use `describe-categories' to see the
list of categories."
:type '(alist :key-type (choice character (const nil))
:value-type (choice character (const nil)))
:group 'evil-cjk)