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

Method SearchHitBottom

src/error.ts:202–207  ·  view source on GitHub ↗
(pattern: string)

Source from the content-addressed store, hash-verified

200 return new VimError(ErrorCode.SearchHitTop, `Search hit TOP without match for: ${pattern}`);
201 }
202 static SearchHitBottom(pattern: string): VimError {
203 return new VimError(
204 ErrorCode.SearchHitBottom,
205 `Search hit BOTTOM without match for: ${pattern}`,
206 );
207 }
208 static CannotCloseLastWindow(): VimError {
209 return new VimError(ErrorCode.CannotCloseLastWindow, 'Cannot close last window');
210 }

Callers 5

execActionMethod · 0.80
execActionMethod · 0.80
execMethod · 0.80
runMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected