Skip to content

Commit

Permalink
add generate password with spec symbols to default.sublime-commands
Browse files Browse the repository at this point in the history
  • Loading branch information
ildarkhasanshin committed Oct 8, 2016
1 parent ce305d7 commit c30703f
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions Default.sublime-commands
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,41 @@
"command": "generate_password",
"args": {"length": "64"}
},
{
"caption": "String Utilities: Insert Password (6 char)",
"command": "generate_password_spec_symbols",
"args": {"length": "6"}
},
{
"caption": "String Utilities: Insert Password (8 char)",
"command": "generate_password_spec_symbols",
"args": {"length": "8"}
},
{
"caption": "String Utilities: Insert Password (12 char)",
"command": "generate_password_spec_symbols",
"args": {"length": "12"}
},
{
"caption": "String Utilities: Insert Password (16 char)",
"command": "generate_password_spec_symbols",
"args": {"length": "16"}
},
{
"caption": "String Utilities: Insert Password (32 char)",
"command": "generate_password_spec_symbols",
"args": {"length": "32"}
},
{
"caption": "String Utilities: Insert Password (40 char)",
"command": "generate_password_spec_symbols",
"args": {"length": "40"}
},
{
"caption": "String Utilities: Insert Password (64 char)",
"command": "generate_password_spec_symbols",
"args": {"length": "64"}
},
{
"caption": "String Utilities: Decode HeidiSQL password",
"command": "decode_heidi_sql"
Expand Down

0 comments on commit c30703f

Please sign in to comment.