Bash

在 zsh 中使用上下箭頭鍵的類似 bash 的歷史上的最後一個命令

  • January 12, 2016

在 bash 中,我們可以使用向上和向下箭頭鍵來獲取歷史中的最後一個或第 n個上一個命令。

我們可以在 zsh 中做到這一點嗎?

根據man zshzle你應該能夠

  • ctrl+n下一個歷史
  • ctrl+p以前的歷史

man zshzle:

down-history (unbound) (^N) (unbound)
      Move to the next event in the history list

up-history (unbound) (^P) (unbound)
      Move to the previous event in the history list.

哦,我的-zsh

另外,不確定您是否已經知道,但也有oh-my-zsh。zsh 的這種定制確實帶有down/up以及前面提到的ctrl+ n/ ctrl+p用於歷史列表中的下一個/上一個,分別

引用自:https://unix.stackexchange.com/questions/254938