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