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

Wrap​Statement

by shagabutdinov ALL

Attempt to make nice statements wrapping that hits first ruler (80 symbols by default) length

Details

Installs

  • Total 470
  • Win 225
  • Mac 144
  • Linux 101
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 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
Mac 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 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 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 0

Readme

Source
raw.​githubusercontent.​com

Sublime WrapStatement plugin (beta)

Attempt to make statements wrapping that hits first ruler (80 symbols by default) length.

Demo

Reason

It is crusial to keep source code clean and well-wrapped to keep it readability. Even if you have 30"-display it is hardly recommended to keep code wrapped at number of symbols before 120 because the problem not with the size of screen but with how humans perceive written text (any text, not only source code).

Most of books, magazines and newspapers have 120 symbols and less text wrapping. I don't think that they do it without reason. They are professionals and know that it is easier to read if text is well-wrapped.

If you wrap your code before 120 symbols you'll make the life of developers that use laptops and small screens a bit easier. You'll probably will make your own life easier if one day you'd like to work from your home or hotel using only laptop.

Note that many software companies defined maximum line length as 80 (hey, google) so I highly advise you to keep 80-symbols wrapping.

I know that there can be many arguing around this advise. I did this plugin because I personally keep this rule in mind when I program and I needed an instrument that helps me to execute this rule faster.

Installation

This plugin is part of sublime-enhanced plugin set. You can install sublime-enhanced and this plugin will be installed automatically.

If you would like to install this package separately check “Installing packages separately” section of sublime-enhanced package.

WARNING

This plugin is in beta. This plugin can corrupt source code and get it to uniterpreted state. Use this plugin with care.

Features

Inserts new lines at positions that calculated by plugin. Also could split quoted strings to avoid code to be too long.

Example:

# before
  matches = expression.find_matches(view, 0, '(.{' + str(ruler - 1) + '}).{2}', {'nesting': True, 'scope': 'source(?!.*json)(?!.*source)'})

  # after
  matches = expression.find_matches(view, 0, '(.{' + str(ruler - 1) + '}).{2}',
    {'nesting': True, 'scope': 'source(?!.*json)(?!.*source)'})

Also can unwrap statements (remove new lines from statement).

Usage

Hit keyboard shortcut to wrap/unwrap/rewrap statement.

Commands

Description Keyboard shortcuts Command palette
Wrap statement ctrl+m, ctrl+e WrapStatement: wrap
Unwrap statement ctrl+m, e WrapStatement: unwrap
Rewrap statement ctrl+alt+w WrapStatement: rewrap

Dependencies