Skip to content

Instantly share code, notes, and snippets.

@chiastolite
Created June 18, 2014 01:31
Show Gist options
  • Save chiastolite/c6daa0c2e035be9c9e35 to your computer and use it in GitHub Desktop.
Save chiastolite/c6daa0c2e035be9c9e35 to your computer and use it in GitHub Desktop.
function peco-git-log () {
if [ -d ".git" ]; then
local git_hash=$(git log --oneline | peco --query "$LBUFFER"|cut -d' ' -f1)
if [ -n "$git_hash" ]; then
BUFFER="git ${git_hash}"
fi
zle clear-screen
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment