I don't think there is a display, but they are stored in ~/Library/Application 
Support/Quicksilver/Mnemonics.plist .
If you're a bit technical, you can use the following script as an inspiration 
(needs the plist gem):

require 'rubygems'
require 'plist'
entries = Plist::parse_xml(File.expand_path("~/Library/Application 
Support/Quicksilver/Mnemonics.plist"))["abbreviation"]
max_abbrev_len = [entries.keys.map(&:length).max, 20].min
entries.each do |abb, items|
puts "#{abb.ljust(max_abbrev_len)}: #{items.shift}"
puts "#{" " * [abb.length, max_abbrev_len].max}- #{items.shift}" until 
items.empty?
end


-- 
Best Regards
Eric Doughty-Papassideris

On Sunday, 24 April 2011 at 16:42, leronb wrote: 
> I feel your pain, especially if you are adding a lot of new triggers
> it can be difficult to remember. There is nothing in the application
> besides the triggers pane in the preferences. So what I do is to take
> a screen shot of the triggers pane and just print it out. Also helps
> if you need to reinstall your triggers for some reason.
> 
> On Apr 23, 1:29 am, pakiya <[email protected]> wrote:
> > Hi ,
> > 
> > Is there a way to see all the abbreviations that I have assigned to
> > applications in a list or some window , so I can remember them ..
> 

Reply via email to