Skip to content

Commit

Permalink
Add command to convert hashrocket syntax to 1.9 hash syntax
Browse files Browse the repository at this point in the history
* Uses option-command-equals for shortcut key
* Converts current line or selected text
  • Loading branch information
whatcould committed Oct 10, 2011
1 parent db93f16 commit 96020fb
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
26 changes: 26 additions & 0 deletions Commands/Convert Ruby hash to 1_9 syntax.tmCommand
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<?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
str = STDIN.read
print str.gsub(/:(\w+)[\s]+=&gt;[\s]+/, '\1: ')
</string>
<key>fallbackInput</key>
<string>line</string>
<key>input</key>
<string>selection</string>
<key>keyEquivalent</key>
<string>~@=</string>
<key>name</key>
<string>Convert Ruby Hash to 1.9 syntax</string>
<key>output</key>
<string>replaceSelectedText</string>
<key>uuid</key>
<string>F4EEB2B6-07D8-402F-8FC3-79B7308D2576</string>
</dict>
</plist>
1 change: 1 addition & 0 deletions info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -433,6 +433,7 @@
<key>ordering</key>
<array>
<string>35222962-C50D-4D58-A6AE-71E7AD980BE4</string>
<string>F4EEB2B6-07D8-402F-8FC3-79B7308D2576</string>
<string>5289EE40-86B8-11D9-A8D4-000A95E13C98</string>
<string>63F3B3B7-CBE2-426B-B551-657733F3868B</string>
<string>1AD6A138-2E89-4D6A-AB3F-416BF9CE968D</string>
Expand Down

0 comments on commit 96020fb

Please sign in to comment.