mirror of
https://github.com/atom/atom.git
synced 2026-02-19 02:44:29 -05:00
34 lines
899 B
Plaintext
34 lines
899 B
Plaintext
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple//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>#!/bin/bash
|
|
|
|
function pre {
|
|
echo -n '<pre style="word-wrap: break-word;">'
|
|
perl -pe '$| = 1; s/&/&amp;/g; s/</&lt;/g; s/>/&gt;/g; s/$\\n/<br>/'
|
|
echo '</pre>'
|
|
}
|
|
|
|
${TM_COFFEE:=coffee} -scp --bare | pre
|
|
</string>
|
|
<key>fallbackInput</key>
|
|
<string>document</string>
|
|
<key>input</key>
|
|
<string>selection</string>
|
|
<key>keyEquivalent</key>
|
|
<string>@b</string>
|
|
<key>name</key>
|
|
<string>Compile and Display JS</string>
|
|
<key>output</key>
|
|
<string>showAsHTML</string>
|
|
<key>scope</key>
|
|
<string>source.coffee</string>
|
|
<key>uuid</key>
|
|
<string>D749F761-1740-4918-9490-90DF376BA72E</string>
|
|
</dict>
|
|
</plist>
|