Skip to content

Instantly share code, notes, and snippets.

@brentvatne
Created August 15, 2012 20:53
Show Gist options
  • Save brentvatne/3363554 to your computer and use it in GitHub Desktop.
Save brentvatne/3363554 to your computer and use it in GitHub Desktop.
twitter from vim
" first install and authorize the twitter command line gem "t" `gem install t`
" authorize the t client, and put the following in your vimrc and you're good to go
function Twitter()
let result = system('t timeline -n 4')
echo "\n"
echo "\n"
echo "Four most recent tweets in your timeline:\n"
echo "\n"
echo result
endfunction
map <leader>t :call Twitter()<cr>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment