Something I throw in every version of WIM that I download is an update to the FuBar plugin.
In WIM_FuBar.lua modify WIM_FuBar.OnMenuRequest to be:
WIM_FuBar.OnMenuRequest = {
type = 'group',
args = {
shownew = {
type = 'execute',
name = "Show New Messages",
desc = "Show all new messages.",
func = function() WIM_ShowNewMessages(); end
},
showoptions = {
type = 'execute',
name = "WIM Options",
desc = "Open WIM configuration ( /wim )",
func = function() WIM_OptionsShow(); end
}
}
};
This just lets me right click the FuBar plugin and open the WIM Options rather than typing out /wim. Maybe I'm lazy but sometimes I don't want to type.