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

Split Line

by Steve Basher ALL

Sublime text plugin to split single line arrays over multiple lines.

Details

Installs

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

Readme

Source
raw.​githubusercontent.​com

Split Line Sublime Plugin

Using ctrl+shift+\ (ctrl+shift+` for OSX) or the context menu option split a single-line array into multiple lines. Developed for Python but can be used with any comma-seperated array.

Turn recursive splitting on/off through the sublime-settings file for the plugin.

Examples

array = [1, 2, 3, 4, 5,]

# Becomes
array = [
    1,
    2,
    3,
    4,
    5,
]
array = (1, 2, {3, 4}, 5,)

# Normally:
array = (
    1,
    2,
    {3, 4},
    5,
)

# With recursive_split = true:
array = (
    1,
    2,
    {
        3,
        4,
    },
    5,
)
def my_function(a, b, c):
    pass

# Becomes
def my_function(
    a,
    b,
    c
):
    pass

Installation

Clone this repo into your sublime Packages folder.

Linux

cd ~/.config/sublime-text-3/Packages/
git clone https://github.com/stevebasher/Split-Line-Sublime-Plugin.git

OSX

cd ~/Library/Application\ Support/Sublime\ Text\ 3/Packages/
git clone https://github.com/stevebasher/Split-Line-Sublime-Plugin.git