Skip to content

Instantly share code, notes, and snippets.

@changs
Created June 25, 2012 09:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save changs/2987535 to your computer and use it in GitHub Desktop.
Save changs/2987535 to your computer and use it in GitHub Desktop.
ESC-i to put git commit -am "[#pivotal_id_from_clipboard]
function git_commit() {
cmd='git commit -am "[#'
space=' "'
BUFFER=$cmd$(pbpaste)]$space
zle get-line
zle end-of-line
zle backward-char
}
zle -N git_commit
bindkey "^[i" git_commit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment