Skip to content

ccampbell/SublimeAutoSemiColon

 
 

Repository files navigation

SublimeAutoSemiColon ================

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(;|)

About

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

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 57.2%
  • JavaScript 42.8%