Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
vimfiles/plugin/copy_html.vim
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
14 lines (11 sloc)
366 Bytes
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
" Convert selected region to HTML and copy to clipboard | |
" Mac OSX only | |
" | |
" See :help TOhtml to format configuration | |
"let g:html_number_lines = 0 " Disable line numbers | |
command! -nargs=0 -range=% CopyHtml call s:copy_html() | |
function! s:copy_html() abort " {{{ | |
'<,'>TOhtml | |
w !textutil -format html -convert rtf -stdin -stdout | pbcopy | |
bdelete! | |
endfunction " }}} |