LoginSignup
0
0

More than 1 year has passed since last update.

#peco で既にコンソールに入力済みのキーワードを候補に反映しつつコマンド履歴を検索する #zsh の設定例

Last updated at Posted at 2019-05-09

~/.zshrc

function peco-history-selection-keep() {
    BUFFER=$(history -n 1 | tail -r  | awk '!a[$0]++' | peco --layout=bottom-up --query="$BUFFER")

    CURSOR=$#BUFFER
}

zle -N peco-history-selection-keep
bindkey '^R' peco-history-selection-keep


--query="$BUFFER" がポイント

Original by Github issue

チャットメンバー募集

何か質問、悩み事、相談などあればLINEオープンチャットもご利用ください。

Twitter

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0