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

Function fromOperatorFind

src/vim/transitions.ts:334–348  ·  view source on GitHub ↗
(
  state: {
    type: 'operatorFind'
    op: Operator
    count: number
    find: FindType
  },
  input: string,
  ctx: TransitionContext,
)

Source from the content-addressed store, hash-verified

332}
333
334function fromOperatorFind(
335 state: {
336 type: 'operatorFind'
337 op: Operator
338 count: number
339 find: FindType
340 },
341 input: string,
342 ctx: TransitionContext,
343): TransitionResult {
344 return {
345 execute: () =>
346 executeOperatorFind(state.op, state.find, input, state.count, ctx),
347 }
348}
349
350function fromOperatorTextObj(
351 state: {

Callers 1

transitionFunction · 0.85

Calls 1

executeOperatorFindFunction · 0.85

Tested by

no test coverage detected