Variable: hui-select-bigger-alist

hui-select-bigger-alist is a variable defined in hui-select.el.

Value

((char nil)
 (whitespace hui-select-whitespace)
 (word hui-select-word)
 (symbol hui-select-symbol)
 (punctuation nil)
 (string hui-select-string)
 (text nil)
 (comment hui-select-comment)
 (markup-pair nil)
 (preprocessor-def nil)
 (sexp hui-select-sexp)
 (sexp-start nil)
 (sexp-end nil)
 (sexp-up hui-select-sexp-up)
 (line hui-select-line)
 (sentence hui-select-sentence)
 (brace-def-or-declaration hui-select-brace-def-or-declaration)
 (indent-def hui-select-indent-def)
 (paragraph hui-select-paragraph)
 (page hui-select-page)
 (buffer hui-select-buffer))

Documentation

Unordered list of (<region-type-symbol> <region-selection-function>) pairs.

Used to go from one thing to a bigger thing. See hui-select-bigger-thing. Nil value for <region-selection-function> means that region type is skipped over when trying to grow the region and is only used when a selection is made with point on a character that triggers that type of selection.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hui-select.el
(defvar hui-select-bigger-alist
  '((char			 nil)
    (whitespace			 hui-select-whitespace)
    (word			 hui-select-word)
    (symbol			 hui-select-symbol)
    (punctuation		 nil)
    (string			 hui-select-string)
    (text			 nil)
    (comment			 hui-select-comment)
    (markup-pair		 nil)
    (preprocessor-def		 nil)
    (sexp			 hui-select-sexp)
    (sexp-start			 nil)
    (sexp-end			 nil)
    (sexp-up			 hui-select-sexp-up)
    (line			 hui-select-line)
    (sentence			 hui-select-sentence)
    (brace-def-or-declaration	 hui-select-brace-def-or-declaration)
    (indent-def			 hui-select-indent-def)
    (paragraph			 hui-select-paragraph)
    (page			 hui-select-page)
    (buffer			 hui-select-buffer))
  "Unordered list of (<region-type-symbol> <region-selection-function>) pairs.
Used to go from one thing to a bigger thing.  See `hui-select-bigger-thing'.
Nil value for <region-selection-function> means that region type is skipped
over when trying to grow the region and is only used when a selection is made
with point on a character that triggers that type of selection.")