On Oct 25, 8:50 pm, elspub <
els...@gmail.com> wrote:
> The one thing that I can't get to work in Snow is that in the
> Preferences >> Extras settings there's an option to "pull selection
> from front application instead of Finder". I can't get that to work.
> Right now QS Selection trigger only works with selected Finder objects.
However, the Send to Quicksilver service in the Services menu does
work with more than just the Finder selection. Just assign a keyboard
shortcut to that in the operating system's Services Preferences
(inside the Keyboard Preferences), and you are good to go. The only
drawbacks to using the service instead of QS's own trigger are:
1. The focus will be in the first pane when using the service, whereas
QS's own trigger also automatically set the focus on the second pane.
All this really means is that if you want to run a different action
than the default one for whatever this selection, you will have to
press Tab once before you can choose the action you want.
2. The Keyboard Preferences GUI won't let you use the Escape key (⎋)
in a keyboard shortcut. However, if you really want to use ⌘⎋, you do
this via AppleScript using the following bit of code (note, it needs
to be all on one line, so remove the line breaks that Google Groups
introduces before you try to run it in AppleScript Editor):
tell application "System Events" to set value of property list item
"com.blacktree.Quicksilver - Quicksilver/Send to Quicksilver -
performService" of property list item "NSServicesStatus" of property
list file "~/Library/Preferences/pbs.plist" to {key_equivalent:"@⎋",
enabled_context_menu:true, enabled_services_menu:true}
And yes, that @ symbol in the script code is correct. Oddly, in this
particular case the @ symbol is used to represent the Command key,
instead of the normal ⌘ symbol.