Created
August 15, 2012 20:53
-
-
Save brentvatne/3363554 to your computer and use it in GitHub Desktop.
twitter from vim
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" 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