MCPcopy Create free account
hub / github.com/codeaashu/claude-code / goNext

Function goNext

web/components/file-viewer/SearchBar.tsx:146–148  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

144 }
145
146 const goNext = () => {
147 setCurrentMatch((c) => (c >= totalMatches ? 1 : c + 1));
148 };
149
150 const goPrev = () => {
151 setCurrentMatch((c) => (c <= 1 ? totalMatches : c - 1));

Callers 10

ModelStepFunction · 0.85
ToolsStepFunction · 0.85
MethodStepFunction · 0.85
PromptStepFunction · 0.85
DescriptionStepFunction · 0.85
LocationStepFunction · 0.85
MemoryStepFunction · 0.85
ColorStepFunction · 0.85
TypeStepFunction · 0.85
handleKeyDownFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected