Skip to content

Instantly share code, notes, and snippets.

@weplay
Created June 2, 2010 18:40
Show Gist options
  • Save weplay/422785 to your computer and use it in GitHub Desktop.
Save weplay/422785 to your computer and use it in GitHub Desktop.
Line up/Line down macros for Textmate
<?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>commands</key>
<array>
<dict>
<key>command</key>
<string>selectHardLine:</string>
</dict>
<dict>
<key>command</key>
<string>moveSelectionLineDown:</string>
</dict>
</array>
<key>keyEquivalent</key>
<string>^@</string>
<key>name</key>
<string>line down</string>
<key>uuid</key>
<string>58477CD2-E3A6-44F6-A14D-5AC85444165D</string>
</dict>
</plist>
<?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>commands</key>
<array>
<dict>
<key>command</key>
<string>selectHardLine:</string>
</dict>
<dict>
<key>command</key>
<string>moveSelectionLineUp:</string>
</dict>
</array>
<key>keyEquivalent</key>
<string>^@</string>
<key>name</key>
<string>line up</string>
<key>uuid</key>
<string>30678B6C-4371-45C8-A50F-C18ADFBA9CD8</string>
</dict>
</plist>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment