自分の環境構築用メモ。
$ histry
してからの
ctrl+r
でもいいんだけど
ctrl+r
だけで検索したいなっていうあれ。
pecoをinstall
macでbrewはいってる前提です。
$ brew install peco
.zshrcに追記
function peco-select-history() {
local tac
if which tac > /dev/null; then
tac="tac"
else
tac="tail -r"
fi
BUFFER=$(\history -n 1 | \
eval $tac | \
peco --query "$LBUFFER")
CURSOR=$#BUFFER
zle clear-screen
}
zle -N peco-select-history
bindkey '^r' peco-select-history
追記したら
source ~/.zshrc
して反映。
ctrl+r
でコマンドヒストリー検索だ!