ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Text​Formatting

Adds text-formatting tricks to Sublime Text. Mostly for PEP8 formatting.

Details

  • 2.10.2
  • github.​com
  • github.​com
  • 2 months ago
  • 4 minutes ago
  • 13 years ago

Installs

  • Total 13K
  • Win 8K
  • Mac 3K
  • Linux 2K
Oct 12 Oct 11 Oct 10 Oct 9 Oct 8 Oct 7 Oct 6 Oct 5 Oct 4 Oct 3 Oct 2 Oct 1 Sep 30 Sep 29 Sep 28 Sep 27 Sep 26 Sep 25 Sep 24 Sep 23 Sep 22 Sep 21 Sep 20 Sep 19 Sep 18 Sep 17 Sep 16 Sep 15 Sep 14 Sep 13 Sep 12 Sep 11 Sep 10 Sep 9 Sep 8 Sep 7 Sep 6 Sep 5 Sep 4 Sep 3 Sep 2 Sep 1 Aug 31 Aug 30 Aug 29
Windows 0 0 1 0 0 2 2 0 0 1 0 0 0 0 0 0 1 0 0 3 0 0 0 1 1 0 0 1 0 2 2 1 0 0 0 0 0 0 1 0 0 0 0 0 0
Mac 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 1 0 1 0 0 0 0 0 1 0 1 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 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

  1. Using Package Control, install “TextFormatting”

Or:

  1. Open the Sublime Text 3 Packages folder
- OS X: ~/Library/Application Support/Sublime Text 3/Packages/
- Windows: %APPDATA%/Sublime Text 3/Packages/
- Linux: ~/.Sublime Text 3/Packages/
  1. clone this repo
  2. Install keymaps for the commands (see Example.sublime-keymap for my preferred keys)

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.