pecoインストール
方法1
からバイナリダウンロード
方法2
sudo apt-get install gccgo-go
~/.bashrc
export GOPATH=$HOME/bin/go
export PATH=$PATH:$HOME/bin:$GOPATH/bin
source ~/.bashrc
mkdir -p $GOPATH
cd $GOPATH
go get github.com/peco/peco/cmd/peco
使い方
man man | peco
- ctrl-n, ctrl-p で上下に移動。
ctrl-r を強化する
~/.bashrc
# scp時、「bind: 警告: 行編集が有効になっていません」対策
if [ -z "$PS1" ]; then
return;
fi
peco-select-history() {
declare l=$(HISTTIMEFORMAT= history | sort -k1,1nr | perl -ne 'BEGIN { my @lines = (); } s/^\s*\d+\s*//; $in=$_; if (!(grep {$in eq $_} @lines)) { push(@lines, $in); print $in; }' | peco --query "$READLINE_LINE")
READLINE_LINE="$l"
READLINE_POINT=${#l}
}
bind -x '"\C-r": peco-select-history'
- ctrl-r を押すとpeco-select-historyが実行される。便利
Author And Source
この問題について(pecoインストール), 我々は、より多くの情報をここで見つけました https://qiita.com/tukiyo3/items/1548e50fe04d44b9a342著者帰属:元の著者の情報は、元の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 .