()
| 462 | } |
| 463 | |
| 464 | setIndicator() { |
| 465 | if (windowIsFocused()) { |
| 466 | const typedCharacters = this.markerMatcher.linkTextKeystrokeQueue |
| 467 | ? this.markerMatcher.linkTextKeystrokeQueue.join("") |
| 468 | : ""; |
| 469 | const indicator = this.mode.indicator + (typedCharacters ? `: \"${typedCharacters}\"` : "") + |
| 470 | "."; |
| 471 | this.hintMode.setIndicator(indicator); |
| 472 | } |
| 473 | } |
| 474 | |
| 475 | // Creates a link marker for the given link. |
| 476 | createMarkerFor(desc) { |
no test coverage detected