(ch: string)
| 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 | |
| 145 | type WrappedText = string[] |
| 146 | type Position = { |
no test coverage detected