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

Trailing Punctuation

by spadgos ST3

Sublime Text plugin which will add and toggle punctuation at the end of a line

Details

Installs

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

Trailing Punctuation

This is a Sublime Text 3 plugin which will add or toggle punctuation at the end of a line.

Installation

Use Package Control, search for “Trailing Punctuation”.

Usage

This adds two keyboard shortcuts: Alt+, and Alt+;. Respectively, these will add a comma and a semicolon at the end of the current line (or lines, in the case of multiple selections or a multiple-line selection).

If the line already ends with the character, it is removed (toggled).

If the line ends with the other character, it is replaced (comma becomes semicolon, semicolon becomes comma).

For example, assume the cursor is on this line and you press Alt+,. Each line shows the behaviour of pressing the shortcut key again.

var foo = 1;
var foo = 1,
var foo = 1
var foo = 1,

First, the semicolon is replaced with a comma. The second time, it removes the comma. The third time, it inserts a trailing comma.

In all cases, the current cursor position and selection is unchanged.

It is even smart enough to ignore comments and whitespace at the end of lines. (· represents whitespace below)

var·whyDoPeople····
var·notUseSemicolons·//·???···

// select all, press `Alt+;`

var·whyDoPeople;····
var·notUseSemicolons;·//·???···

On lines which are empty, or only contain whitespace or comments, no characters are inserted.