Skip to content

Commit

Permalink
Hmm. I thought these were committed last time. Let's try again.
Browse files Browse the repository at this point in the history
Added error message and support for TM_OPML_APPLICATION.  
By default, it's OmniOutliner (not Pro).



git-svn-id: http://svn.textmate.org/trunk/Outlines.tmbundle@325 dfb7d73b-c2ec-0310-8fea-fb051d288c6d
  • Loading branch information
Eric Hsu committed Feb 21, 2005
1 parent 904b379 commit 8f83d44
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 235 deletions.
13 changes: 10 additions & 3 deletions Commands/Tabs to OmniOutliner.plist
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,24 @@
<key>beforeRunningCommand</key>
<string>nop</string>
<key>command</key>
<string>perl "$TM_BUNDLE_PATH/Tools/t2o.pl" &gt; /tmp/tm2oo.opml &amp;&amp; open -a "OmniOutliner Professional" /tmp/tm2oo.opml
<string># Change the application name if you are using OmniOutliner or another program. You can edit this command or go to Prefs/Advanced/ShellVariables and set TM_OPML_APPLICATION to the name of your favorite program.
# Change the application name if you are using OmniOutliner</string>
if [ -z $TM_OPML_APPLICATION ] ; then
TM_OPML_APPLICATION="OmniOutliner"
fi
perl "$TM_BUNDLE_PATH/Tools/t2o.pl" &gt; /tmp/tm2oo.opml
open -a "$TM_OPML_APPLICATION" /tmp/tm2oo.opml || echo "$TM_OPML_APPLICATION can't be found. Edit the command and replace TM_OPML_APPLICATION with an existing application."
</string>
<key>input</key>
<string>selection</string>
<key>keyEquivalent</key>
<string>^@o</string>
<key>name</key>
<string>Tabs to OmniOutliner</string>
<key>output</key>
<string>discard</string>
<string>showAsTooltip</string>
<key>uuid</key>
<string>DBF2B50A-8303-11D9-8C1E-000D9332809C</string>
</dict>
Expand Down
232 changes: 0 additions & 232 deletions Tools/Outline Scripts.tmproj

This file was deleted.

0 comments on commit 8f83d44

Please sign in to comment.