Send vim selection to gist

pull/2/head
Bodaniel Jeanes 2011-12-28 21:00:16 -06:00
parent c0891c5312
commit 5e4eb2967c
1 changed files with 6 additions and 2 deletions

View File

@ -4,11 +4,15 @@ source ~/.vim/ui.vim
source ~/.vim/autocommands.vim
source ~/.vim/bundles.vim
" This helps with RVM etc
set shell=zsh
" For when you forget to sudo.. Really Write the file.
cmap w!! w !sudo tee % >/dev/null
" This helps with RVM etc
set shell=zsh
" Send visual selection to gist.github.com
" Requires gist (brew install gist)
vnoremap <leader>G :w !gist -p -t %:e \| pbcopy<cr>
" CTags
map <Leader>rt :!ctags --extra=+f -R *<CR><CR>