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

Space​Snippets

by shagabutdinov ALL

Insert some chars and spaces will be added automatically

Details

Installs

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

It inserts spaces instead of you where it assumed to be inserted. Requires a lot of adaptation.

There is not much help from this plugin in writing code but when I personally started to use it, I liked it and prefer to write code with this plugin rather than without.

Features

Provides spaces insertion for certain characters. Spaces style are adapted to my personal coding style so it can be worthless for others.

Example:

# type "myvar"
    myvar| # <- cursor is |

    # type "+"
    myvar+|

    # plugin will convert "+" to " + " (with spaces)
    myvar + |

    # some special cases are handled too:
    # type "myvar":
    myvar| # <- cursor is |

    # than type "+"
    MyClass + |

    # than type "=" (automatically removes space between "+" and "=")
    MyClass += |

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.

Commands

Description Keyboard shortcuts
Insert spaced “,” ,
Insert spaced “:” :
Insert spaced “>” >
Insert spaced “<” <
Insert spaced “*” *
Insert spaced “/” /
Insert spaced “+” +
Insert spaced “-” -
Insert spaced “&” &
Insert spaced “
Insert spaced “=” =
Insert spaced “!” !
Insert spaced “.” .