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

Function isVimWordChar

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

Source from the content-addressed store, hash-verified

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

Callers 4

isVimPunctuationFunction · 0.85
nextVimWordMethod · 0.85
endOfVimWordMethod · 0.85
prevVimWordMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected