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
If you have Package Control installed:
- In Sublime Text, open the Command Palette by typing Command+Shift+P (Mac) or Ctrl+Shift+P (Linux / Windows).
- Type
install
and selectPackage Control: Install Package
- A text prompt should appear shortly after Package Control loads a list of packages from the internet.
- Type
token generator
and press Enter - That's it! The token generator is now installed.
- 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.
Once Installed, you will be able to create new / random / five character / alpha-numeric tokens in 1 of 3 ways:
- Keyboard Shortcut: Command+Option+Shift+T (Mac) or Ctrl+Alt+Shift+T (Linux / Windows).
- Context Menu: right click within Sublime Text and select
New Token
. - Command Palette: open the Command Palette, type
new token
, and selectToken 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.
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.
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.