Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add command to convert 1.8 hash syntax into new alternate (hashrocket-free) syntax #19

Merged
merged 2 commits into from Oct 11, 2011
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
29 changes: 29 additions & 0 deletions Commands/Convert Ruby hash to 1_9 syntax.tmCommand
@@ -0,0 +1,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

print case str = STDIN.read
when /=&gt;/; str.gsub(/:(\w+)[\s]+=&gt;[\s]+/, '\1: ')
when /(\w+):/; str.gsub(/(\w+):(\s*(?:"(?:\\"|[^"])*"|'(?:\\'|[^'])*'|\w+\([^)]*\)|[^,]+))/, ":\\1 =&gt;\\2")
else; str
end
</string>
<key>fallbackInput</key>
<string>line</string>
<key>input</key>
<string>selection</string>
<key>keyEquivalent</key>
<string>^=</string>
<key>name</key>
<string>Toggle Ruby Hash 1.8/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
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