Created
April 26, 2015 03:32
-
-
Save nacyot/a3e9b4935965ac01aa09 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# http://qiita.com/uchiko/items/f6b1528d7362c9310da0 | |
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 -N peco-select-history | |
bindkey '^r' peco-select-history |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment