Vim Tips Wiki
Advertisement

Use this page to discuss script 2519 dpaste: send your buffer or selection to dpaste.com

  • Add constructive comments, bug reports, or discuss improvements (see the guideline).
  • Do not document the script here (the author should do that on vim.org).
  • This page may be out of date: check the script's vim.org page above, and its release notes.

Comments[]

You can automatically paste the URL of your code into your clipboard (@* is the middle mouse button clipboard):

Change line or add one below vim.command('let b:dpaste_url="%s"' % paste_url)

vim.command('let @*="%s"' % paste_url)

Advertisement