Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 16 days ago
JSON representation
ARCHIVED: Automatically moves a semi-colon to the outside of the last bracket when pressed inside
- Host: GitHub
- URL: https://github.com/vivait/SublimeAutoSemiColon
- Owner: vivait
- Archived: true
- Created: 2012-03-03T16:30:46.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2018-09-08T16:57:25.000Z (about 6 years ago)
- Last Synced: 2024-08-01T05:24:03.812Z (3 months ago)
- Language: Python
- Homepage:
- Size: 6.84 KB
- Stars: 61
- Watchers: 7
- Forks: 12
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
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(;|)