I use firefox 4 with vimperator. I got tired of using "panorama switch blah" all the time, so I decided to set up a user defined command. It follows:
command! -nargs=1 pitch panorama switch <args>
Fairly straight-forward. With this setup I can type "pitch vim" and that will take me to the named tab-group for my vim tutorials and vim related junk. I quickly began to miss auto-completion, though, and so I changed the command as follows:
command! -nargs=1 -complete something pitch panorama switch <args>
The problem is I couldn't figure out which "something" would do the trick. Does anyone know which auto-completion category contains the tab-group names? Will I have to make my own (and if so, anyone know a good tutorial for that? :help wasn't quite helpful enough with regards to custom completions...
Thanks!