I\'d like to be able to send the HTML file I\'m currently editing in vim to my web browser, Chrome. I\'m running Linux.
vim
This gets me very close:
You can exec chrome silently:
exec
silent
nmap w :exec 'silent !google-chrome % &'
:exe[cute] {expr1} .. Executes the string that results from the evaluation of {expr1} as an Ex command.
:exe[cute] {expr1} ..