AutoWidth
Sublime Text plugin to automatically adjust the text wrap width
Details
Installs
- Total 2K
- Win 1K
- Mac 465
- Linux 305
Nov 21 | Nov 20 | Nov 19 | Nov 18 | Nov 17 | Nov 16 | Nov 15 | Nov 14 | Nov 13 | Nov 12 | Nov 11 | Nov 10 | Nov 9 | Nov 8 | Nov 7 | Nov 6 | Nov 5 | Nov 4 | Nov 3 | Nov 2 | Nov 1 | Oct 31 | Oct 30 | Oct 29 | Oct 28 | Oct 27 | Oct 26 | Oct 25 | Oct 24 | Oct 23 | Oct 22 | Oct 21 | Oct 20 | Oct 19 | Oct 18 | Oct 17 | Oct 16 | Oct 15 | Oct 14 | Oct 13 | Oct 12 | Oct 11 | Oct 10 | Oct 9 | Oct 8 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 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 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 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 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 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 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
AutoWidth
A Sublime Text plugin to automatically adjust the text wrap width when the view becomes narrower than the pre-defined wrap width.
If you set a fixed wrap_width
in the syntax specific settings for editing text (e.g. Markdown, reStructuredText), but sometimes have a window that's narrower than this wrap_width
(for example when using several panes next to each other), this plugin will dynamically adjust the wrap_width
to fit the view.
By default, the font size is also reduced by 1 when reducing wrap width. This behavior can be adjusted in the AutoWidth settings file, accessible in the Sublime Text preferences menu.
Installation
Tested on Sublime Text 3 only.
Via Package Control.
Use
Set "auto_width": true
either in your global settings, or, more usefully, in syntax-specific settings. For example, consider these syntax-specific settings for Markdown:
{
"draw_centered": true,
"font_size": 14,
"line_numbers": false,
"wrap_width": 98,
"auto_width": true
}
These settings will display Markdown text in a 98 character wide and centered column, without line numbers, and in a larger font.
With auto_width
enabled, Sublime Text will also automatically adjust the wrap width downwards if necessary if the view becomes too narrow, and then reset it to its default specified in the settings file when the view is wide enough again.
Wrap width is adjusted whenever a view becomes active. If you resize a window you can force an adjust by pressing F10
(FN+F10
on OS X).