Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/vivait/SublimeAutoSemiColon

ARCHIVED: Automatically moves a semi-colon to the outside of the last bracket when pressed inside
https://github.com/vivait/SublimeAutoSemiColon

Last synced: about 2 months ago
JSON representation

ARCHIVED: Automatically moves a semi-colon to the outside of the last bracket when pressed inside

Awesome Lists containing this project

README

        

SublimeAutoSemiColon
================
**This project has been archived**

This plugin automatically moves a semi-colon to outside of the last bracket when pressed inside one of more pairs of brackets.

Installing
----------
**Without Git:** Download the latest source from `GitHub `_ and copy the whole directory into the Packages directory.

**With Git:** Clone the repository in your Sublime Text 2 Packages directory, located somewhere in user's "Home" directory::

git clone git://github.com/LewisW/SublimeAutoSemiColon.git

The "Packages" packages directory is located at:

* OS X::

~/Library/Application Support/Sublime Text 2/Packages/

* Linux::

~/.Sublime Text 2/Packages/

* Windows::

%APPDATA%/Sublime Text 2/Packages/

Using
-----

Pressing the semi-colon in the following scenario:

function(|)

Would result in:

function();|

It does it in 2 steps, meaning that pressing ctrl + z will move the semi-colon back it its original location:

function(;|)