On 07/09/2017 23:47, Peter Shenkin wrote:
  For example, is there a way to get MacVim to use Acrobat Reader as its 
.pdf print app rather than Preview?
I have this snippet in my vimrc, which you may adapt:
   if has('mac')
     fun! PrintFile(fname)
       call system('pstopdf ' . a:fname)
       call system('open -a Preview ' . a:fname . '.pdf')
       call delete(a:fname)
       call delete(a:fname.'.pdf')
       return v:shell_error
     endf
     set printexpr=PrintFile(v:fname_in)
   endif
Enjoy,
Life.
-- 
-- 
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
--- 
You received this message because you are subscribed to the Google Groups "vim_use" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vim_use+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Subscribe to:
Post Comments (Atom)
 
No comments:
Post a Comment