gist
Sublime Text plugin for creating new Gists from selected text
Details
Installs
- Total 4K
- Win 3K
- Mac 622
- Linux 381
Nov 21 | Nov 20 | Nov 19 | Nov 18 | Nov 17 | Nov 16 | Nov 15 | Nov 14 | Nov 13 | Nov 12 | Nov 11 | Nov 10 | Nov 9 | Nov 8 | Nov 7 | Nov 6 | Nov 5 | Nov 4 | Nov 3 | Nov 2 | Nov 1 | Oct 31 | Oct 30 | Oct 29 | Oct 28 | Oct 27 | Oct 26 | Oct 25 | Oct 24 | Oct 23 | Oct 22 | Oct 21 | Oct 20 | Oct 19 | Oct 18 | Oct 17 | Oct 16 | Oct 15 | Oct 14 | Oct 13 | Oct 12 | Oct 11 | Oct 10 | Oct 9 | Oct 8 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 2 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 2 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 2 | 0 | 1 | 1 | 2 | 1 | 3 | 5 | 1 | 1 | 0 | 1 | 1 | 4 | 1 | 0 | 2 | 0 | 1 | 2 | 2 |
Mac | 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 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
Gist
A Sublime Text 3 plugin for creating and editing Gists.
Installation
Package Control
Install Package Control. Gist will show up in the package list. This is the recommended installation method.
Manual installation
Go to the “Packages” directory (Preferences
/ Browse Packages…
). Then clone this repository:
git clone git://github.com/condemil/Gist
Generating Access Token
As of 2013-05-16, you can generate API Access Tokens via the Web UI or via the GitHub API. All other authorization methods is deprecated.
Web
- Account Settings -> Personal access tokens
- “Generate new token” under “Personal access tokens”
- For “Token description” you should give it a meaningful name, Example: sublime gist
- Under “Select scopes” you can just select gist
Paste the token in the settings section under the token option.
API
Here's a command you can run from your terminal to generate a token via curl:
curl -v -u USERNAME -X POST https://api.github.com/authorizations --data "{\"scopes\":[\"gist\"], \"note\": \"SublimeText 2/3 Gist plugin\"}"
Where USERNAME is your Github username. Save the token generated and paste it in the settings section under the token option.
If OTP is enabled on your account, this will return 401 error code, use:
curl -v -u USERNAME -H "X-GitHub-OTP: OTPCODE" -X POST https://api.github.com/authorizations --data "{\"scopes\":[\"gist\"], \"note\": \"SublimeText 2/3 Gist plugin\"}"
Where OTPCODE is the code your authenticator app shows you.
Options
Edit the settings file (it should open automatically the first time you use a Gist command) to specify either token.
"token": ""
You must enter your GitHub token here
"https_proxy": http://user:pass@proxy:port
You can enter https proxy here Format: “http://user:pass@proxy:port”
"api_url": ""
Set the url of the enterprise version of github you want to use. Defaults to github.com
"max_gists": 100
Set the maximum number of Gists that can will fetched by the plugin. It can't be higher than 100, because of GitHub API limitations.
"gist_prefix": ""
Limit the Gists displayed in the
Open Gist
list by prefix. Leave blank to display all Gists. Example:"gist_prefix": "Snippet:"
will only list Gists with names starting with the text Snippet:."save-update-hook": true
Set the on-save behaviour of a loaded Gist. True implies that when the Gist is saved, it'll update the online Gist. False implies that it'll bring up a save dialog for the Gist to be saved to disk.
Usage
All functionality of the plugin is available in the Tools
/ Gist
menu and in the command pallette.
Creating Gists
Use the Gist
/ Create Public Gist
or Gist
/ Create Private Gist
commands. If you don't have anything selected, a Gist will be created with contents of current file, URL of that Gist will be copied to the clipboard and then the file will switch to Gist editing mode. If you have selected some text, a Gist will be created using only that text and then immediately opened for editing. In case of multiple selections, you'll get one Gist with multiple files.
Editing existing Gists
Use the Gist
/ Open Gist
command to see a list of your Gists. Selecting one will open the files from that Gist in new tabs. You can then edit the files normally and save to update the Gist, or use other commands to change Gist description, remove or rename files, or delete the Gist.
Adding new files to existing Gists
Use the Gist
/ Add File To Gist
command to see a list of your Gists. Selecting one will add contents of current file as a new file to that Gist and switch the file to Gist editing mode.
Default key bindings:
Create Public Gist
- Windows and Linux:
Ctrl+K
Ctrl+I
- OS X:
Super+K
Super+I
Create Private Gist
- Windows and Linux:
Ctrl+K
Ctrl+P
- OS X:
Super+K
Super+P
Update File
- Windows and Linux:
Ctrl+K
Ctrl+S
- OS X:
Super+K
Super+S
Open Gist
- Windows and Linux:
Ctrl+K
Ctrl+O
- OS X:
Super+K
Super+O
Insert Gist
- Windows and Linux:
Ctrl+K
Ctrl+[
- OS X:
Super+K
Super+[
Add File
- Windows and Linux:
Ctrl+K
Ctrl+]
- OS X:
Super+K
Super+]
Information
Source: https://github.com/condemil/Gist
Authors: Dmitry Budaev, Alexey Ermakov