Skip to content

Instantly share code, notes, and snippets.

@justinoboyle
Last active June 12, 2016 05:05
Show Gist options
  • Save justinoboyle/6f188702ab0ecfc114f600f5f0679493 to your computer and use it in GitHub Desktop.
Save justinoboyle/6f188702ab0ecfc114f600f5f0679493 to your computer and use it in GitHub Desktop.
alias vimput='
function _vimput(){
file=~/.vimput-temp-$(date +"%s");
touch $file;
vim $file +startinsert;
cat $file;
rm -rf $file;
};
_vimput
';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment