TextFormatting
Adds text-formatting tricks to Sublime Text. Mostly for PEP8 formatting.
Details
Installs
- Total 13K
- Win 8K
- Mac 3K
- Linux 2K
Jun 30 | Jun 29 | Jun 28 | Jun 27 | Jun 26 | Jun 25 | Jun 24 | Jun 23 | Jun 22 | Jun 21 | Jun 20 | Jun 19 | Jun 18 | Jun 17 | Jun 16 | Jun 15 | Jun 14 | Jun 13 | Jun 12 | Jun 11 | Jun 10 | Jun 9 | Jun 8 | Jun 7 | Jun 6 | Jun 5 | Jun 4 | Jun 3 | Jun 2 | Jun 1 | May 31 | May 30 | May 29 | May 28 | May 27 | May 26 | May 25 | May 24 | May 23 | May 22 | May 21 | May 20 | May 19 | May 18 | May 17 | May 16 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 2 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 |
Mac | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 |
Linux | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 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 |
Readme
- Source
- raw.githubusercontent.com
Text Formatting
Adds text-formatting tricks to Sublime Text. Mostly for PEP8 formatting.
Installation
Using Package Control, install “TextFormatting” or clone this repo in your packages folder.
I recommended you add key bindings for the commands. I've included my preferred bindings below. Copy them to your key bindings file (⌘⇧,).
Commands
text_formatting_maxlength
: Wraps text to maxlength
(default: 80) characters.
Select a bunch of docstrings or README content and it will not just warp lines,
but it will also combine lines that are too short, so you can with aplomb
and reformat when you're done.
Also works with comments. Lines that have #
or //
are considered part of the
“indent”, and so they'll be removed and re-added.
text_formatting_prettify_json
: Select some gnarly JSON and this command will make it well formatted.
text_formatting_line_numbers
: Just prints the current line number under the cursor.
Key Bindings
Copy these to your user key bindings file.
{ "keys": ["super+shift+space"], "command": "text_formatting_maxlength" },
{ "keys": ["ctrl+l"], "command": "text_formatting_line_numbers" },
{ "keys": ["ctrl+alt+t"], "command": "text_formatting_tree" },
{ "keys": ["f5"], "command": "text_formatting_sort" },
{ "keys": ["ctrl+f5"], "command": "text_formatting_sort", "args": {"case_sensitive": true} },
// not pertinant to this plugin, but useful for anyone who writes JSDoc/JavaDocs
{ "keys": ["/"], "command": "chain",
"args": {
"commands": [
["left_delete"],
["insert_snippet", {"contents": "/"}]
]
},
"context": [
{ "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true },
{ "key": "preceding_text", "operator": "regex_match", "operand": "^ +\\* ", "match_all": true }
]
},