MCPcopy Create free account
hub / github.com/VSCodeVim/Vim / PatternNotFound

Method PatternNotFound

src/error.ts:229–234  ·  view source on GitHub ↗
(pattern: string | undefined)

Source from the content-addressed store, hash-verified

227 return new VimError(ErrorCode.NoRangeAllowed, 'No range allowed');
228 }
229 static PatternNotFound(pattern: string | undefined): VimError {
230 return new VimError(
231 ErrorCode.PatternNotFound,
232 pattern !== undefined ? `Pattern not found: ${pattern}` : 'Pattern not found',
233 );
234 }
235 static TrailingCharacters(chars?: string): VimError {
236 return new VimError(
237 ErrorCode.TrailingCharacters,

Callers 5

execActionMethod · 0.80
execActionMethod · 0.80
runMethod · 0.80
setStatusBarTextMethod · 0.80
resolveMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected