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

Toggle Symbol to String

by zoomix ALL

No description provided

Details

  • 2015.02.18.12.08.00
  • github.​com
  • github.​com
  • 10 years ago
  • 3 hours ago
  • 13 years ago

Installs

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

Toggle Symbol for Sublime Text 2/3

A plugin useful for ruby developers. It toggles single and double quoted words into symbols and string. Only changing quotations for a semi colon here.

- :dude -> 'dude'
- 'dude' -> "dude"
- "dude" -> :dude

Install

Clone this repo into

- OS X: ~/Library/Application Support/Sublime Text 2/Packages/
- Windows: %APPDATA%/Sublime Text 2/Packages/
- Linux: ~/.Sublime Text 2/Packages/

If you're using Sublime 3, make that 2 a 3 and Bob's your uncle.

Troubleshooting

The default keymapping for this plugin is “ctrl+shift+;”. That requires an american keyboard layout to work. If you're not running an american keyboard, try changing that to something you use. “ctrl+shift+,” might do the trick? Go to the menu Preferences -> Key Binding - User and add this to the hash.

{ "keys": ["ctrl+shift+,"], "command": "toggle_symbol" }

That should work.