i LOVE the new bundle stuff deally.
I just wish I could open it up with a shortcut key.
You can already get around in the menus with the keyboard.

I wrote an applescript to pop open the regular menu (using gui scripting)
but, I can't get applescript to see the bundle stuff deally.
I also can't seem to make an osascript textmate command that doesn't totally freeze textMate.
Anything to keep from having to grab the mouse.

It'd probly be easier (for me) for you to just add it to the app itself instead. ;)

Thanks much for the continued breakneck pace of development.




activate application "TextMate"
tell application "System Events"
    tell process "TextMate"
        -- GUI Scripting statements:
        click menu 1 of menu bar item "Automation" of menu bar 1
        click menu item "Insert Snippet" of menu 1 of menu bar item "Automation" of menu bar 1
        --click menu item "x51" of menu 1 of menu item "Insert Snippet" of menu 1 of menu bar item "Automation" of menu bar 1
        
    end tell
end tell