Snipplr
Sublime Text 2 package for uploading/downloading code snippets to/from Snipplr.
Details
Installs
- Total 1K
- Win 813
- Mac 427
- Linux 187
Apr 2 | Apr 1 | Mar 31 | Mar 30 | Mar 29 | Mar 28 | Mar 27 | Mar 26 | Mar 25 | Mar 24 | Mar 23 | Mar 22 | Mar 21 | Mar 20 | Mar 19 | Mar 18 | Mar 17 | Mar 16 | Mar 15 | Mar 14 | Mar 13 | Mar 12 | Mar 11 | Mar 10 | Mar 9 | Mar 8 | Mar 7 | Mar 6 | Mar 5 | Mar 4 | Mar 3 | Mar 2 | Mar 1 | Feb 28 | Feb 27 | Feb 26 | Feb 25 | Feb 24 | Feb 23 | Feb 22 | Feb 21 | Feb 20 | Feb 19 | Feb 18 | Feb 17 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
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 | 0 | 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
Snipplr 1.0.3
Snipplr is a Sublime Text 2 package which is used to upload and download snippets from snipplr.com.
Installation
With Package Control
If you have the Package Control package installed, you can install Snipplr from inside Sublime Text itself. Open the Command Palette and select “Package Control: Install Package”, then search for Snipplr and you're done!
Without Package Control
Go to your Sublime Text 2 Packages directory and clone the repository using the command below:
git clone https://github.com/jonasdp/Snipplr/zipball/1.0.3 Snipplr Don't forget to keep updating it, though!
Without Git
Download the latest version from the tags page. Unzip to your Sublime Text Packages folder (you can find this by opening ST2 and selecting Preferences -> Browse Packages…). You may need to rename the folder from the default to Snipplr. That's it – you shouldn't even need to restart ST2.
Configuration
In order for package to work you need to insert your API-key from snipplr.com in the snipplr.sublime-settings file.
{
"api_key": ""
}
Note that there are no menu items to trigger Snipplr but there are keyboard shortcuts to trigger upload or download(search your snippets).
Pressing ctrl+alt+p will open a textfield where you can search and insert your snippets from snipplr.com. If you select something in Sublime you can press ctrl+alt+u to upload your snippet. If you want to change the keyboard shortcuts edit the keymap-file for your OS.
[
{
"keys": ["ctrl+alt+p"], "command": "snipplr_insert"
},
{
"keys": ["ctrl+alt+u"], "command": "snipplr_upload"
}
]
Special thanks to Johannes who did the hard work and started the project!