diff options
author | Bibiko <bibiko@eva.mpg.de> | 2011-01-05 12:15:15 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2011-01-05 12:15:15 +0000 |
commit | b1dc43ce1aa2871753321174239c973a9637a602 (patch) | |
tree | 2ce3a1e67dc369959484b550d9908fa542cee95c /SharedSupport/Default Bundles/WrapInDelimiter.spBundle | |
parent | 2d6c795da8a79126bb25c646f43369df02593f19 (diff) | |
download | sequelpro-b1dc43ce1aa2871753321174239c973a9637a602.tar.gz sequelpro-b1dc43ce1aa2871753321174239c973a9637a602.tar.bz2 sequelpro-b1dc43ce1aa2871753321174239c973a9637a602.zip |
• fixed bug for Bundle commands to detect if current textview is the Query Editor
• added some more Default Bundles
Diffstat (limited to 'SharedSupport/Default Bundles/WrapInDelimiter.spBundle')
-rw-r--r-- | SharedSupport/Default Bundles/WrapInDelimiter.spBundle/command.plist | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/SharedSupport/Default Bundles/WrapInDelimiter.spBundle/command.plist b/SharedSupport/Default Bundles/WrapInDelimiter.spBundle/command.plist new file mode 100644 index 00000000..93816f00 --- /dev/null +++ b/SharedSupport/Default Bundles/WrapInDelimiter.spBundle/command.plist @@ -0,0 +1,45 @@ +<?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>author</key> + <string>Hans-Jörg Bibiko</string> + <key>category</key> + <string>Query Editor</string> + <key>command</key> + <string>echo "DELIMITER \${0:;;}" +echo "\${1:`cat`}\${1:\$0}" +echo "DELIMITER ;"</string> + <key>contact</key> + <string>znvy@ovovxb.qr</string> + <key>description</key> + <string>Wrap the current query or the selection in DELIMITER inserted as snippet to allow to modify the default delimiter ;; + +Version 1.0</string> + <key>input</key> + <string>selectedtext</string> + <key>input_fallback</key> + <string>currentquery</string> + <key>internalKeyEquivalent</key> + <dict> + <key>characters</key> + <string>W</string> + <key>keyCode</key> + <integer>13</integer> + <key>modifierFlags</key> + <integer>1835008</integer> + </dict> + <key>keyEquivalent</key> + <string>^~@w</string> + <key>name</key> + <string>Wrap query/selection in DELIMITER</string> + <key>output</key> + <string>insertassnippet</string> + <key>scope</key> + <string>inputfield</string> + <key>tooltip</key> + <string>Wrap the current query or selection in DELIMITER ;;</string> + <key>uuid</key> + <string>A67BDE10-0A76-45C2-98DB-B35AC731E8DA</string> +</dict> +</plist> |