I found two C# text mate bundles.

My questions are

  1. What is the "official" C# text mate bundle?
  2. If csharp-tmbundle is the only one to use for C#, how can I install it without the .tmbundle format?
link|improve this question

74% accept rate
feedback

1 Answer

up vote 3 down vote accepted

There are two ways to install. Note that .tmbundle is actually just a folder. But there's an easy way to install it over the GUI.

… using GetBundles

Use GetBundles, which is a meta-bundle for installing third party bundles. It lists all "official" and third party bundles for TextMate.

Open Terminal.app and enter:

mkdir -p ~/Library/Application\ Support/TextMate/Bundles
cd !$
svn co http://svn.textmate.org/trunk/Review/Bundles/GetBundles.tmbundle/
osascript -e 'tell app "TextMate" to reload bundles'

Then, find GetBundles under your Bundles menu. Here, you can select the C# bundle from GitHub:

enter image description here

… straight from the Git source

There's a wiki entry on the GitHub page, which says the following commands are necessary to install the bundle:

mkdir -p /Library/Application\ Support/TextMate/Bundles
cd /Library/Application\ Support/TextMate/Bundles
git clone https://github.com/wintermi/csharp-tmbundle csharp.tmbundle
osascript -e 'tell app "TextMate" to reload bundles'
link|improve this answer
+1 Just what I was looking for. I did run into an error trying to run that apple script though. Strange error, "no suitable image found". Anyhoo, if anyone else gets that, just go to TextMate >> Bundles >> Bundle Editor >> Reload Bundles. Same thing, just less geektastic as the apple script. – Stephano Jan 10 at 1:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.