Skip to content

Instantly share code, notes, and snippets.

@bisby
Created June 27, 2018 20:16
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 bisby/5c81183ec12583107646cc5c748f9648 to your computer and use it in GitHub Desktop.
Save bisby/5c81183ec12583107646cc5c748f9648 to your computer and use it in GitHub Desktop.
Clipboard Editing Made Easy
#!/bin/bash
set -eo pipefail
# Move clipboard into vim
pbpaste > /tmp/vim-scratch
vim -c "set nofixendofline" /tmp/vim-scratch
# Move vim back into clipboard
cat /tmp/vim-scratch | pbcopy
# Cleanup
rm /tmp/vim-scratch
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment