Token Generator
Generate random, alpha-numeric tokens within Sublime Text.
Details
Installs
- Total 11
- Win 8
- Mac 3
- Linux 0
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 | 1 | 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
Token Generator
A Sublime Text package that lets you generate new / random / five character / alpha-numeric strings with a hotkey, from the context menu (right clicking), or from the Command Palette.
Example output: a1b2c
Installation
Package Control
If you have Package Control installed:
1. In Sublime Text, open the Command Palette by typing Command+Shift+P (Mac) or Ctrl+Shift+P (Linux / Windows).
2. Type install
and select Package Control: Install Package
3. A text prompt should appear shortly after Package Control loads a list of
packages from the internet.
4. Type token generator
and press Enter
5. That's it! The token generator is now installed.
Manual Download
- Click here to download the GitHub repository, and unzip the downloaded file.
- In Sublime Text, open the Command Palette by typing Command+Shift+P (Mac) or Ctrl+Shift+P (Linux / Windows).
- Type
browse
and selectPreferences: Browse Packages
- A window should appear with the “Packages” directory selected. Move the unzipped file into the “Packages” directory.
- That's it! The token generator is now installed.
Usage
Once Installed, you will be able to create new / random / five character / alpha-numeric tokens in 1 of 3 ways:
1. Keyboard Shortcut: Command+Option+Shift+T (Mac) or Ctrl+Alt+Shift+T (Linux / Windows).
2. Context Menu: right click within Sublime Text and select New Token
.
3. Command Palette: open the Command Palette, type new token
, and select Token Generator: New Token
By default, the Keyboard Shortcut option is disabled. To enable the Keyboard Shortcut, open the Command Palette, type key binding
and select Token Generator: Key Binding
.
By default, the Context Menu option is enabled. To disable the context menu option, open the Command Palette, type settings
and select Token Generator: Settings
.
The Command Palette option is always available.
Settings
There are 4 settings:
- String Length,
5
by default - Character Set,
abcdef0123456789
by default (aka. hexadecimal / base-16) - Force alpha numeric inclusion,
true
by default (aka. ensures string has at least 1 letter and 1 number) - Show in context menu,
true
by default (aka. it will be available in the context menu)
There are 940,800 unique tokens with these settings (165 - 105 - 65). This is more than sufficient for the intended purpose. Don't go generating passwords with these settings.
To change these settings, open the Command Palette, type token settings
and select Token Generator: Settings
. Edit the settings as you would any other Sublime Text feature.
But … why?
Short randomized tokens are useful in a variety of contexts. The inspiration for this plugin was to help with CSS specificity issues. Notably to…
- Mitigate name space collisions
- Improve style management
Appending tokens to the end of an id or class name helps ensure uniqueness without silently breaking previous styles. No more name space collisions!
Creating a new id or class name? Easily append a unique token using the hot key (or right clicking) and .btn
becomes .btn-a1b2c
.
Want to find each instance of an existing style? In Sublime Text, type Command+Shift+F (Mac) or Ctrl+Shift+F (Linux / Windows) to find where btn-a1b2c
lives in your project. Good luck finding / editing the correct btn
style!
Naturally this raises questions around tree shaking. Want keep your style sheet from bloating? When you append unique tokens to id / class names (effectively treating them like GUIDs) you can delete the useless bits without silently breaking stuff.
All of this is to say: this Sublime Text plugin makes random token generation convenient, supporting better CSS management (among other use cases). No more copy / pasting from some other list of random tokens, or Googling for a generator. Now you can get a fresh token without ever leaving your code.