MCPcopy Index your code
hub / github.com/codeaashu/claude-code / isVimPunctuation

Function isVimPunctuation

src/utils/Cursor.ts:142–143  ·  view source on GitHub ↗
(ch: string)

Source from the content-addressed store, hash-verified

140export const isVimWhitespace = (ch: string): boolean =>
141 WHITESPACE_REGEX.test(ch)
142export const isVimPunctuation = (ch: string): boolean =>
143 ch.length > 0 && !isVimWhitespace(ch) && !isVimWordChar(ch)
144
145type WrappedText = string[]
146type Position = {

Callers 4

nextVimWordMethod · 0.85
endOfVimWordMethod · 0.85
prevVimWordMethod · 0.85
isPunctFunction · 0.85

Calls 2

isVimWhitespaceFunction · 0.85
isVimWordCharFunction · 0.85

Tested by

no test coverage detected