mirror of
https://github.com/atom/atom.git
synced 2026-01-25 23:08:18 -05:00
33 lines
819 B
Plaintext
33 lines
819 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} -s | pre
|
|
</string>
|
|
<key>input</key>
|
|
<string>selection</string>
|
|
<key>keyEquivalent</key>
|
|
<string>@r</string>
|
|
<key>name</key>
|
|
<string>Run</string>
|
|
<key>output</key>
|
|
<string>showAsHTML</string>
|
|
<key>scope</key>
|
|
<string>source.coffee</string>
|
|
<key>uuid</key>
|
|
<string>30395DAB-44A6-44F7-99E1-02D64621303A</string>
|
|
</dict>
|
|
</plist>
|