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 840
  • Linux 591
May 17 May 16 May 15 May 14 May 13 May 12 May 11 May 10 May 9 May 8 May 7 May 6 May 5 May 4 May 3 May 2 May 1 Apr 30 Apr 29 Apr 28 Apr 27 Apr 26 Apr 25 Apr 24 Apr 23 Apr 22 Apr 21 Apr 20 Apr 19 Apr 18 Apr 17 Apr 16 Apr 15 Apr 14 Apr 13 Apr 12 Apr 11 Apr 10 Apr 9 Apr 8 Apr 7 Apr 6 Apr 5 Apr 4 Apr 3 Apr 2
Windows 0 0 0 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 1 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 1
Linux 0 0 0 0 0 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 0 0 0 0 0 0 0 0 0 0 0 1 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.