(ch: string)
| 136 | |
| 137 | // Exported helper functions for Vim character classification |
| 138 | export const isVimWordChar = (ch: string): boolean => |
| 139 | VIM_WORD_CHAR_REGEX.test(ch) |
| 140 | export const isVimWhitespace = (ch: string): boolean => |
| 141 | WHITESPACE_REGEX.test(ch) |
| 142 | export const isVimPunctuation = (ch: string): boolean => |
no outgoing calls
no test coverage detected