history = $history; } /** * {@inheritdoc} */ public function execute(Buffer $buffer, Terminal $terminal, Readline $readline): bool { if ($buffer->moveToPreviousVisualRow( $terminal->getWidth(), $readline->getPromptWidthForCurrentLine($buffer) )) { return true; } if ($readline->isMultilineMode() && !$buffer->isOnFirstLine()) { $buffer->moveToPreviousLine(); return true; } $enteringHistory = !$this->history->isInHistory(); $text = $buffer->getText(); // Set the search term when first entering history navigation if ($enteringHistory) { $this->history->setSearchTerm($text !== '' ? $text : null); } $entry = $this->history->getPrevious(); if ($entry === null) { $terminal->bell(); return true; } // Save current input before navigating away so we can restore it if ($enteringHistory && $text !== '') { $this->history->saveTemporaryEntry($text); } $buffer->setText($entry); return true; } /** * {@inheritdoc} */ public function getName(): string { return 'previous-history'; } }