public
Description: A TextMate bundle to support development of Clojure code
Homepage:
Clone URL: git://github.com/nullstyle/clojure-tmbundle.git
clojure-tmbundle / Commands / Get help.tmCommand
100644 29 lines (26 sloc) 0.737 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?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>#!/usr/bin/env ruby -wKU
 
require ENV['TM_BUNDLE_SUPPORT'] + '/clojure.rb'
 
Clojure::Mate.get_help</string>
<key>fallbackInput</key>
<string>word</string>
<key>input</key>
<string>selection</string>
<key>keyEquivalent</key>
<string>^h</string>
<key>name</key>
<string>Get help</string>
<key>output</key>
<string>showAsHTML</string>
<key>scope</key>
<string>source.clojure</string>
<key>uuid</key>
<string>AA09D978-BE1F-4026-927F-817733923226</string>
</dict>
</plist>