(pattern: string)
| 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 | } |
| 202 | static SearchHitBottom(pattern: string): VimError { |
| 203 | return new VimError( |
| 204 | ErrorCode.SearchHitBottom, |
no outgoing calls
no test coverage detected