Random Everything
Plugin for sublime text to generate random, ints, floats, strings and words
Details
Installs
- Total 25K
- Win 13K
- Mac 7K
- Linux 5K
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 | Feb 16 | Feb 15 | Feb 14 | Feb 13 | Feb 12 | Feb 11 | Feb 10 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 33 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 13 | 1 | 1 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 2 | 2 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 |
Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 2 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 3 |
Linux | 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 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
random-sublime-text-plugin
Plugin for sublime text to generate random, ints, floats, strings and words.
It works in Sublime Text 2 and ST3
Example
Usage
This plugin can only be accessed through the Cmd/Ctrl+Shift+P command.
Type random and you get the following choices:
- Random:Int - requires a range from a-b separated with a: -. Default: 1-100
- Random:Float - requires a range from a-b separated with a: -. Default: 1-100
- Random:Letters - generatates a random string of lower and upper -case letters with a length between 3 and 17
- Random:Letters and numbers - generatates a random string of lower and upper -case letters and numbers with a length between 3 and 17
- Random:Country - picks a random country
- Random:Word - picks a random word from /usr/share/dict/words
- Random:Text - picks 24 random words from /usr/share/dict/words
- Random:Date - picks a random ISO-8601 Date
- Random:First name - picks a random first name from the built-in datafile
- Random:Last name - picks a random last name from the built-in datafile
- Random:Full name - picks a random full name from the built-in datafiles
- Random:E-mail - picks a random E-mail address
- Random:Url - generates a URL using random words from /usr/share/dict/words
- Random:Hex Color - generates a random hex color formatted “#abc123”
- Random:IPv4 Address - generates a random ipv4 ip address
- Random:IPV6 Address - generates a random ivp6 ip address
Overridable Settings
Random: E-Mail
- random_email_top_level_domain_override - Allows overriding available email TLDs e.g.
["com","org"]
. Defaults are["com", "net", "co.uk", "org", "edu"]
random_email_main_domain_override - Allows overriding of available email main domains e.g.
["gmail","yahoo", "hotmail"]
. If not specified, a random string will be used.max_year
andmin_year
defines a date range
Complete Settings Example
{
"random_email_top_level_domain_override": ["com", "net", "co.uk", "org", "edu"],
"max_year": 2000,
"min_year": 1999
}