<html><head><meta http-equiv="content-type" content="text/html; charset=utf-8"></head><body dir="auto"><div>With the bundle editor selected, press Command + N.<br><br>Sent from my iPhone</div><div><br>On Apr 18, 2015, at 1:21 PM, jgalt <<a href="mailto:jgaltusa@gmail.com">jgaltusa@gmail.com</a>> wrote:<br><br></div><blockquote type="cite"><div>

<title>How do I create a new command in a bundle?</title>


<font face="Calibri, Verdana, Helvetica, Arial"><span style="font-size:11pt">I am trying to follow these instructions and I do not understand how to create a new command. Can someone please explain how this is done? <br>
<br>
<a href="https://coderwall.com/p/j7qqsa/minify-your-css-inside-of-textmate">https://coderwall.com/p/j7qqsa/minify-your-css-inside-of-textmate</a><br>
<br>
<br>
In your <b>Bundles</b> menu, go to <b>Edit Bundles</b> and select your favorite CSS Bundle (I am personally a huge proponent of mCss <<a href="http://minimaldesign.net/downloads/tools/textmate-css-bundle">http://minimaldesign.net/downloads/tools/textmate-css-bundle</a>> ). Add a new Command, and enter make the command contents the following code:<br>
<br>
</span></font><font size="1"><font face="Andale Mono"><span style="font-size:9pt"># Create the minified filename<br>
</span></font></font><font face="Andale Mono"><span style="font-size:11pt">NEWFILE=${TM_FILENAME%\.css}'.min.css'<br>
<br>
# Minify into that file<br>
curl -X POST -s --data-urlencode "input@${TM_FILENAME}" \<br>
    <a href="http://www.cssminifier.com/raw">http://www.cssminifier.com/raw</a> > $NEWFILE<br>
<br>
# And open it<br>
mate $NEWFILE<br>
<br>
<br>
</span></font><span style="font-size:11pt"><font face="Calibri, Verdana, Helvetica, Arial">You can make your key equivalent anything you'd like, I set mine to <i>Cmd + Shift + R</i>. Once you have done this, give it a whirl. You should see that your <i>styles.css</i> generates a <i>styles.min.css</i> in the same directory, as well as opens it in Textmate.<br>
<br>
To note: if you don't have the Textmate command line utility installed, simply delete the last line of this command to stop seeing errors.<br>
</font></span>



</div></blockquote><blockquote type="cite"><div><span></span><br><span>_______________________________________________</span><br><span>textmate mailing list</span><br><span><a href="mailto:textmate@lists.macromates.com">textmate@lists.macromates.com</a></span><br><span><a href="http://lists.macromates.com/listinfo/textmate">http://lists.macromates.com/listinfo/textmate</a></span></div></blockquote></body></html>