Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
ModelStep
Function · 0.85
ToolsStep
Function · 0.85
MethodStep
Function · 0.85
PromptStep
Function · 0.85
DescriptionStep
Function · 0.85
LocationStep
Function · 0.85
MemoryStep
Function · 0.85
ColorStep
Function · 0.85
TypeStep
Function · 0.85
handleKeyDown
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected