How to convert Coda 2 clips to Sublime Text snippets? - sublimetext2

I want to switch from Coda 2 to Sublime Text 2. The only reason I'm stuck in Coda 2 is my long collection of clips of my own.
Any idea on how to convert the clips from Coda to snippets for Sublime Text?

There is an OSX tool called clips2snippets that will help converting your Coda 2 clips into Sublime Text snippets.
Once you have it installed, just run:
clips2snippets gen HTML.clips
Replace HTML.clips with your current clips.

You don't have write permissions for the /Library/Ruby/Gems/2.0.0 directory

Run this in terminal and clip2snippets will be installed without any error:
sudo gem install clips2snippets

Related

Is there a spotlight-like search in sublime text?

Is there a way to bring up a search box in Sublime Text that you can start typing in possible commands to see what you have installed, and what it might be mapped to? Kind of like what OSX has?
Command Palette (hat tip to Tommi)
Ctrl-Shift-P (Windows)
Cmd-Alt-P (OSX)

SideBarGit missing from Package Install on Sublime Text 2

Also GitGutter's features are not working (icons not showing up).
I am new to SublimeText 2, I did install Package Control 2 and set Git/bin/ to PATH in variables in Windows 8 and it works on command line.
If you look at SideBarGit's page on the Package Control website, you'll see that it's for Sublime Text 3 only.

SublimeText - Few commands missing from command palette

I was trying some plugins on my Sublime Text yesterday and today I noticed that some commands were missing form my command palette window, namely:
New file into view (Not "new view into file", that one is still there)
Open in Browser as Testing Server(maybe the word "server" here is wrong)
Open in Browser as Development Server(maybe the word "server" here is wrong)
These three were really helpful to me, How can i get them back?
sublime text menu is a json PATH_TO_SUBLIME\Data\Packages\Default\Main.sublime-menu you can edit it or replace
These commands are added by a package called SideBarEnhancements. Install this package and you will get these commands back.
SideBarEnhancements on GitHub

building shortcut for 'grunt test' inside sublime

How would I go about having a shortcut / macro to run 'grunt test' from within sublime/ Preferably with just 1 keystroke. Best would be to see the output in the sublime console. Any plugin for this?
You don't need plugin.
Sublime Text 2 has extensive, extensible, build system:
http://docs.sublimetext.info/en/latest/file_processing/build_systems.html
Create your build configuration for grunt test
Trigger it with a hotkey

Sweave syntax highlighting for Sublime Text

Currently Sublime Text 2 with installed LaTeXTools bundle stumbles over Sweave/knitr code blocks. How can I tell ST to either ignore everything of the form
<<arguments here>>=
#
or, even better, to treat it as R source code?
The Sweave Textmate bundle (or at least the essential parts) will also work with Sublime Text 2. Just download the bundle from https://github.com/textmate/sweave.tmbundle and move it to the Packages directory.
There's now the SublimeKnitr bundle that's made specifically made for Sublime Text. Install from GitHub source or via Package Control.