(keyName)
| 542 | let promptPos; |
| 543 | |
| 544 | function checkAndSetDirectionKey(keyName) { |
| 545 | if (!labels[keyName]) { |
| 546 | return false; |
| 547 | } |
| 548 | if (dir !== keyName) { |
| 549 | // Reset the already matched set in case the direction is changed. That |
| 550 | // way it's possible to find those entries again. |
| 551 | alreadyMatched.clear(); |
| 552 | dir = keyName; |
| 553 | } |
| 554 | return true; |
| 555 | } |
| 556 | |
| 557 | function goToNextHistoryIndex() { |
| 558 | // Ignore this entry for further searches and continue to the next |
no test coverage detected
searching dependent graphs…