Index: MEL.tmbundle/Commands/Send to Maya.tmCommand
===================================================================
--- MEL.tmbundle/Commands/Send to Maya.tmCommand	(revision 0)
+++ MEL.tmbundle/Commands/Send to Maya.tmCommand	(revision 0)
@@ -0,0 +1,36 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
+<plist version="1.0">
+<dict>
+	<key>beforeRunningCommand</key>
+	<string>nop</string>
+	<key>command</key>
+	<string>#!/usr/bin/env ruby
+#  Created by Jon Roberts on 2007-10-18.
+# Maya must first run the command:
+# commandPort -n ":2222";
+
+require 'socket'
+
+begin
+  mel = STDIN.read
+  s = TCPSocket.open("localhost", 2222)
+  s.puts(mel)
+end
+</string>
+	<key>fallbackInput</key>
+	<string>document</string>
+	<key>input</key>
+	<string>selection</string>
+	<key>keyEquivalent</key>
+	<string>@r</string>
+	<key>name</key>
+	<string>Send to Maya</string>
+	<key>output</key>
+	<string>showAsTooltip</string>
+	<key>scope</key>
+	<string>source.mel</string>
+	<key>uuid</key>
+	<string>2B6729CD-70D5-4813-980A-B93745A087AB</string>
+</dict>
+</plist>
Index: MEL.tmbundle/Commands/Help.tmCommand
===================================================================
--- MEL.tmbundle/Commands/Help.tmCommand	(revision 0)
+++ MEL.tmbundle/Commands/Help.tmCommand	(revision 0)
@@ -0,0 +1,36 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
+<plist version="1.0">
+<dict>
+	<key>beforeRunningCommand</key>
+	<string>nop</string>
+	<key>command</key>
+	<string>. "$TM_SUPPORT_PATH/lib/webpreview.sh"
+html_header "Maya Embedded Language Help" "MEL"
+Markdown.pl &lt;&lt;'EOF'
+Help for MEL Bundle
+============================
+
+Send to Maya
+-------------------------
+
+Running this command will execute either the current selection or the entire script in Maya, using commandPort. Before doing this, Maya must run the following command:
+
+	commandPort -n ":2222";
+	
+It is recommended to save that command to a shelf.
+
+EOF
+html_footer</string>
+	<key>input</key>
+	<string>none</string>
+	<key>name</key>
+	<string>Help</string>
+	<key>output</key>
+	<string>showAsHTML</string>
+	<key>scope</key>
+	<string>source.mel</string>
+	<key>uuid</key>
+	<string>36FA9B9A-B21F-4948-B109-E874AE7D244F</string>
+</dict>
+</plist>
Index: MEL.tmbundle/Commands/Send to Maya.tmDelta
===================================================================
--- MEL.tmbundle/Commands/Send to Maya.tmDelta	(revision 0)
+++ MEL.tmbundle/Commands/Send to Maya.tmDelta	(revision 0)
@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
+<plist version="1.0">
+<dict>
+	<key>changed</key>
+	<dict>
+		<key>beforeRunningCommand</key>
+		<string>nop</string>
+		<key>command</key>
+		<string>#!/usr/bin/env ruby
+#  Created by Jon Roberts on 2007-10-18.
+# Maya must first run the command:
+# commandPort -eo -n ":2222";
+
+require 'socket'
+
+begin
+  mel = STDIN.read
+  s = TCPSocket.open("localhost", 2222)
+  s.puts(mel)
+end
+</string>
+		<key>scope</key>
+		<string>source.mel</string>
+	</dict>
+	<key>deleted</key>
+	<array/>
+	<key>isDelta</key>
+	<true/>
+	<key>uuid</key>
+	<string>6B16421E-015A-4A13-ACD3-CE13C9709D2A</string>
+</dict>
+</plist>
Index: MEL.tmbundle/info.plist
===================================================================
--- MEL.tmbundle/info.plist	(revision 8303)
+++ MEL.tmbundle/info.plist	(working copy)
@@ -14,6 +14,9 @@
 	<array>
 		<string>69554E52-391D-42BC-9F65-7A77444BA1CF</string>
 		<string>1C33AB7C-A008-4148-85CB-5303C7ED8CC5</string>
+		<string>2B6729CD-70D5-4813-980A-B93745A087AB</string>
+		<string>36FA9B9A-B21F-4948-B109-E874AE7D244F</string>
+		<string>7FC6AD09-BA7B-4A76-BDFC-9D52BE631802</string>
 	</array>
 	<key>uuid</key>
 	<string>59F874B0-94DD-4DB3-AD89-5BA5F79FC2E9</string>
