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.8.0
  • github.​com
  • github.​com
  • 2 months ago
  • 59 minutes ago
  • 12 years ago

Installs

  • Total 12K
  • Win 7K
  • Mac 3K
  • Linux 2K
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 29 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 Feb 9 Feb 8 Feb 7 Feb 6 Feb 5 Feb 4
Windows 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 1 1 0 0 0 1 1 1 1 0 2 0 0 0 0 1 0 1 0 3 0 1 2 0 1 0
Mac 0 0 1 0 0 1 0 0 0 0 0 1 1 0 2 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 2 2 1 0 1 0 0 0 0 0 0 1 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 1 0 0 1 0 1 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 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.