MCPcopy
hub / github.com/VSCodeVim/Vim / InvalidRegisterName

Method InvalidRegisterName

src/error.ts:196–198  ·  view source on GitHub ↗
(register: string)

Source from the content-addressed store, hash-verified

194 return new VimError(ErrorCode.NothingInRegister, `Nothing in register ${register}`);
195 }
196 static InvalidRegisterName(register: string): VimError {
197 return new VimError(ErrorCode.InvalidRegisterName, `Invalid register name: '${register}'`);
198 }
199 static SearchHitTop(pattern: string): VimError {
200 return new VimError(ErrorCode.SearchHitTop, `Search hit TOP without match for: ${pattern}`);
201 }

Callers 1

execMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected