(count, options)
| 247 | }, |
| 248 | |
| 249 | passNextKey(count, options) { |
| 250 | // TODO(philc): OK to remove return statement? |
| 251 | if (options.registryEntry.options.normal) { |
| 252 | return enterNormalMode(count); |
| 253 | } else { |
| 254 | return new PassNextKeyMode(count); |
| 255 | } |
| 256 | }, |
| 257 | |
| 258 | goPrevious() { |
| 259 | const previousPatterns = Settings.get("previousPatterns") || ""; |
nothing calls this directly
no test coverage detected