You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
102 lines
2.6 KiB
102 lines
2.6 KiB
|
3 years ago
|
<!--
|
||
|
|
Name: Prat_KeyBindings
|
||
|
|
Revision: $Revision: 80432 $
|
||
|
|
Author(s): Curney (asml8ed@gmail.com)
|
||
|
|
Krtek (krtek4@gmail.com)
|
||
|
|
Website: http://files.wowace.com/Prat/
|
||
|
|
Documentation: http://www.wowace.com/wiki/Prat/Integrated_Modules#KeyBindings
|
||
|
|
SVN: http://svn.wowace.com/wowace/trunk/Prat/
|
||
|
|
Discussions: http://groups.google.com/group/wow-prat
|
||
|
|
Issues and feature requests: http://code.google.com/p/prat/issues/list
|
||
|
|
License: http://groups.google.com/group/wow-prat/web/license
|
||
|
|
Description: Module for Prat that adds keybindings for modules.
|
||
|
|
Dependencies: Prat
|
||
|
|
-->
|
||
|
|
|
||
|
|
<Bindings>
|
||
|
|
<!-- ChannelNames -->
|
||
|
|
<Binding name="officer" header="Prat">
|
||
|
|
ChatFrame_OpenChat("/o");
|
||
|
|
</Binding>
|
||
|
|
<Binding name="guild" >
|
||
|
|
ChatFrame_OpenChat("/g");
|
||
|
|
</Binding>
|
||
|
|
<Binding name="party" >
|
||
|
|
ChatFrame_OpenChat("/p");
|
||
|
|
</Binding>
|
||
|
|
<Binding name="raid" >
|
||
|
|
ChatFrame_OpenChat("/raid");
|
||
|
|
</Binding>
|
||
|
|
<Binding name="raidwarn" >
|
||
|
|
ChatFrame_OpenChat("/rw");
|
||
|
|
</Binding>
|
||
|
|
<Binding name="instance" >
|
||
|
|
ChatFrame_OpenChat("/i");
|
||
|
|
</Binding>
|
||
|
|
<Binding name="say" >
|
||
|
|
ChatFrame_OpenChat("/say");
|
||
|
|
</Binding>
|
||
|
|
<Binding name="yell" >
|
||
|
|
ChatFrame_OpenChat("/yell");
|
||
|
|
</Binding>
|
||
|
|
<Binding name="whisper" >
|
||
|
|
ChatFrame_OpenChat("/w");
|
||
|
|
</Binding>
|
||
|
|
<Binding name="one">
|
||
|
|
ChatFrame_OpenChat("/1");
|
||
|
|
</Binding>
|
||
|
|
<Binding name="two">
|
||
|
|
ChatFrame_OpenChat("/2");
|
||
|
|
</Binding>
|
||
|
|
<Binding name="three">
|
||
|
|
ChatFrame_OpenChat("/3");
|
||
|
|
</Binding>
|
||
|
|
<Binding name="four">
|
||
|
|
ChatFrame_OpenChat("/4");
|
||
|
|
</Binding>
|
||
|
|
<Binding name="five">
|
||
|
|
ChatFrame_OpenChat("/5");
|
||
|
|
</Binding>
|
||
|
|
<Binding name="six">
|
||
|
|
ChatFrame_OpenChat("/6");
|
||
|
|
</Binding>
|
||
|
|
<Binding name="seven">
|
||
|
|
ChatFrame_OpenChat("/7");
|
||
|
|
</Binding>
|
||
|
|
<Binding name="eight">
|
||
|
|
ChatFrame_OpenChat("/8");
|
||
|
|
</Binding>
|
||
|
|
<Binding name="nine">
|
||
|
|
ChatFrame_OpenChat("/9");
|
||
|
|
</Binding>
|
||
|
|
<Binding name="SmartGroup">
|
||
|
|
ChatFrame_OpenChat("/smart");
|
||
|
|
</Binding>
|
||
|
|
<Binding name="NextTab">
|
||
|
|
local mod = Prat.Addon:GetModule("KeyBindings", true)
|
||
|
|
if mod then
|
||
|
|
mod:CycleChatTabs()
|
||
|
|
end
|
||
|
|
</Binding>
|
||
|
|
<!-- TellTarget -->
|
||
|
|
<Binding name="TellTarget">
|
||
|
|
local mod = Prat.Addon:GetModule("TellTarget", true)
|
||
|
|
if mod then
|
||
|
|
mod:SendTellToTarget(SELECTED_CHAT_FRAME, "");
|
||
|
|
end
|
||
|
|
</Binding>
|
||
|
|
<!-- CopyChat -->
|
||
|
|
<Binding name="Copy Selected Chat Frame">
|
||
|
|
local mod = Prat.Addon:GetModule("CopyChat", true)
|
||
|
|
if mod then
|
||
|
|
mod:CopyChat();
|
||
|
|
end
|
||
|
|
</Binding>
|
||
|
|
<Binding name="Scroll To Bottom">
|
||
|
|
SELECTED_CHAT_FRAME:ScrollToBottom()
|
||
|
|
</Binding>
|
||
|
|
<Binding name="Scroll To Top">
|
||
|
|
SELECTED_CHAT_FRAME:ScrollToTop()
|
||
|
|
</Binding>
|
||
|
|
</Bindings>
|