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

Go Toggle Declare

by waigani ALL

GoToggleDeclare is a Golang plugin for Sublime Text which toggles the short variable declaration := and the assignment operator =.

Labels go

Details

  • 0.1.2
  • github.​com
  • github.​com
  • 11 years ago
  • 33 minutes ago
  • 11 years ago

Installs

  • Total 708
  • Win 348
  • Mac 199
  • Linux 161
Oct 9 Oct 8 Oct 7 Oct 6 Oct 5 Oct 4 Oct 3 Oct 2 Oct 1 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
Windows 0 0 0 0 0 0 0 1 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
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 0 0 0 0 0 0 0 0 0 0 0 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

GoToggleDeclare

GoToggleDeclare is a Golang plugin for Sublime Text which toggles the short variable declaration := and the assignment operator =.

Please checkout GoAutoDeclare for automatic correction on save.

Usage

Given the following line of code:

sum = func(a, b int) int { return a+b } (3, 4)

Place your cursor on the line and press shift+tab. You'll get:

sum := func(a, b int) int { return a+b } (3, 4)

GoToggleDeclare replaced = with :=, press shift+tab again and it will change it back.

Install

  1. Install Sublime Package Control (if you haven't done so already) from http://wbond.net/sublime_packages/package_control. Be sure to restart ST to complete the installation.

  2. Bring up the command palette (default ctrl+shift+p or cmd+shift+p) and start typing Package Control: Install Package then press return or click on that option to activate it. You will be presented with a new Quick Panel with the list of available packages. Type GoToggleDeclare and press return or on its entry to install GoToggleDeclare. If there is no entry for GoToggleDeclare, you most likely already have it installed.

Default key binding:

[
    { 
        "keys": ["shift+tab"], "command": "go_toggle_declare"
    }
]

You can set your own keybinding by copying the above into Preferences > Keybindings - User and replacing shift+tab with your preferred key(s).

License

GoAutoDeclare is released under the MIT license. See LICENSE.md