Skip to content

Instantly share code, notes, and snippets.

@mogelbrod
Created June 11, 2018 09:03
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 mogelbrod/dab52ee42d0cdca47a9eb07b1de8fd66 to your computer and use it in GitHub Desktop.
Save mogelbrod/dab52ee42d0cdca47a9eb07b1de8fd66 to your computer and use it in GitHub Desktop.
Make Ctrl-] copy current input to system clipboard
# Make Ctrl-] copy current input to system clipboard
pbcopy-whole-line() {
echo -n $BUFFER | pbcopy
}; zle -N pbcopy-whole-line
bindkey '^]' pbcopy-whole-line
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment