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

Method NothingInRegister

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

Source from the content-addressed store, hash-verified

191 return new VimError(ErrorCode.NoStringUnderCursor, 'No string under cursor');
192 }
193 static NothingInRegister(register: string): VimError {
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 }

Callers 5

execFunction · 0.80
runMethod · 0.80
execMethod · 0.80
runMethod · 0.80
displayRegisterValueMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected