(ch: string)
| 115 | export const isVimWhitespace = (ch: string): boolean => |
| 116 | WHITESPACE_REGEX.test(ch) |
| 117 | export const isVimPunctuation = (ch: string): boolean => |
| 118 | ch.length > 0 && !isVimWhitespace(ch) && !isVimWordChar(ch) |
| 119 | |
| 120 | type WrappedText = string[] |
| 121 | type Position = { |
no test coverage detected