zsh + peco-select-histroy でhistoryをユニークにする
update: 同じことをしている方がいて、そちらのほうが優秀なので、下記参照
巷に公開されている peco-select-history だと、同じコマンドの履歴が沢山表示されて不便なので、ユニークに表示されるようにした。
ユニークにしたときに、順番が崩れないようにソートしなおしてる。
function peco-select-history() {
BUFFER=$(\history 1 | \
sort -r -k 2 |\
uniq -1 | \
sort -r | \
awk '$1=$1' | \
cut -d" " -f 2- | \
peco --query "$LBUFFER")
CURSOR=$#BUFFER
zle clear-screen
}
zle -N peco-select-history
bindkey '^r' peco-select-history
Author And Source
この問題について(zsh + peco-select-histroy でhistoryをユニークにする), 我々は、より多くの情報をここで見つけました https://qiita.com/tutuming/items/9b32a55053426159e3b2著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .