Arch-Linux

在 apricity os 的 gnome 終端中啟用歷史記錄

  • October 18, 2016

我無法讓 gnome 終端或任何其他終端記住命令歷史記錄。每次我關閉終端並重新打開它時,我都無法訪問以前的命令(通常使用向上箭頭鍵完成)。

我終於做到了!Apricity OS 使用Zsh作為 shell,要啟用歷史記錄,您必須編輯文件~/.zshrc並使其如下所示:

source /usr/share/zsh/site-contrib/powerline.zsh
zstyle ':completion:*' menu select
bindkey "^R" history-incremental-pattern-search-backward
HISTSIZE=10000
SAVEHIST=10000
HISTFILE=~/.zsh_history

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