(register: string)
| 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 | } |
no outgoing calls
no test coverage detected