(ch: string)
| 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 => |
| 143 | ch.length > 0 && !isVimWhitespace(ch) && !isVimWordChar(ch) |
| 144 |
no outgoing calls
no test coverage detected