pub const FS_GREP_WORD: u8 = _; // 8u8
Match only whole words: the pattern is wrapped in \b(?:...)\b after any literal escaping, so it composes with either mode. Same semantics as blit terminal grep --word-regexp.
\b(?:...)\b
blit terminal grep --word-regexp