ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Send​To​Paste​Bin

by xaro ALL

Paste code directly from Sublime Text 3 (and 2) to PasteBin.com

Details

  • 2019.11.25.01.50.20
  • github.​com
  • github.​com
  • 5 years ago
  • 2 hours ago
  • 13 years ago

Installs

  • Total 3K
  • Win 2K
  • Mac 892
  • Linux 868
Jan 15 Jan 14 Jan 13 Jan 12 Jan 11 Jan 10 Jan 9 Jan 8 Jan 7 Jan 6 Jan 5 Jan 4 Jan 3 Jan 2 Jan 1 Dec 31 Dec 30 Dec 29 Dec 28 Dec 27 Dec 26 Dec 25 Dec 24 Dec 23 Dec 22 Dec 21 Dec 20 Dec 19 Dec 18 Dec 17 Dec 16 Dec 15 Dec 14 Dec 13 Dec 12 Dec 11 Dec 10 Dec 9 Dec 8 Dec 7 Dec 6 Dec 5 Dec 4 Dec 3 Dec 2
Windows 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Mac 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

Sublime Text 3 (and 2) SendToPasteBin Plugin

Sublime Text 3 (and 2) plugin uploads code to Pastebin.com directly from the editor, with the correct syntax highlighting.

Usage

Use shortcuts or commands in the command prompt (prefix SendToPasteBin).

Shortcuts

  • ctrl+alt+c: copy the current selection in Pastebin.com. The resulting Url will be copied to your clipboard
  • ctrl+alt+shift+c: same as ctrl+alt+c, but with a custom name of resulting pasted file

Configuration

SendToPasteBin.sublime-settings:

{
    // See https://pastebin.com/api for api key information.
    "api_dev_key": "your key",
    "api_user_key": "your key",

    // Choose privacy for pastes:
    // 0 = Public, 1 = Unlisted, 2 = Private
    "paste_privacy": 0,

    // Choose expiration for pastes:
    // N = Never, 10M = 10 Minutes, 1H = 1 Hour, 1D = 1 Day, 1W = 1 Week, 2W = 2 Weeks, 1M = 1 Month
    "paste_expiration": "1D",

    // Choose url type:
    // "default", "raw"
    "paste_url_type": "default"
}

To get the dev_key, go to: https://pastebin.com/api

To generate the user_key, go to: https://pastebin.com/api/api_user_key.html and fill in your dev_key and account info.

Installation

Install through package control or clone this repo in your Sublime Packages/ folder with the name SendToPasteBin