forked from Southclaws/pawn-sublime-language
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathirc.inc.sublime-completions
57 lines (56 loc) · 5.98 KB
/
irc.inc.sublime-completions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"scope": "source.pawn - variable.other.pawn",
"completions":
[
{"trigger": "IRC_Connect", "contents": "IRC_Connect(${1:const server[]}, ${2:port}, ${3:const nickname[]}, ${4:const realname[]}, ${5:const username[]}, ${6:bool:ssl = false}, ${7:const localip[] = \"\"}, ${8:const serverpassword[] = \"\"})"},
{"trigger": "IRC_Quit", "contents": "IRC_Quit(${1:botid}, ${2:const message[] = \"\"})"},
{"trigger": "IRC_JoinChannel", "contents": "IRC_JoinChannel(${1:botid}, ${2:const channel[]}, ${3:const key[] = \"\"})"},
{"trigger": "IRC_PartChannel", "contents": "IRC_PartChannel(${1:botid}, ${2:const channel[]}, ${3:const message[] = \"\"})"},
{"trigger": "IRC_ChangeNick", "contents": "IRC_ChangeNick(${1:botid}, ${2:const nick[]})"},
{"trigger": "IRC_SetMode", "contents": "IRC_SetMode(${1:botid}, ${2:const target[]}, ${3:const mode[]})"},
{"trigger": "IRC_Say", "contents": "IRC_Say(${1:botid}, ${2:const target[]}, ${3:const message[]})"},
{"trigger": "IRC_Notice", "contents": "IRC_Notice(${1:botid}, ${2:const target[]}, ${3:const message[]})"},
{"trigger": "IRC_IsUserOnChannel", "contents": "IRC_IsUserOnChannel(${1:botid}, ${2:const channel[]}, ${3:const user[]})"},
{"trigger": "IRC_InviteUser", "contents": "IRC_InviteUser(${1:botid}, ${2:const channel[]}, ${3:const user[]})"},
{"trigger": "IRC_KickUser", "contents": "IRC_KickUser(${1:botid}, ${2:const channel[]}, ${3:const user[]}, ${4:const message[] = \"\"})"},
{"trigger": "IRC_GetUserChannelMode", "contents": "IRC_GetUserChannelMode(${1:botid}, ${2:const channel[]}, ${3:const user[]}, ${4:dest[]})"},
{"trigger": "IRC_GetChannelUserList", "contents": "IRC_GetChannelUserList(${1:botid}, ${2:const channel[]}, ${3:dest[]}, ${4:maxlength = sizeof dest})"},
{"trigger": "IRC_SetChannelTopic", "contents": "IRC_SetChannelTopic(${1:botid}, ${2:const channel[]}, ${3:const topic[]})"},
{"trigger": "IRC_RequestCTCP", "contents": "IRC_RequestCTCP(${1:botid}, ${2:const user[]}, ${3:const message[]})"},
{"trigger": "IRC_ReplyCTCP", "contents": "IRC_ReplyCTCP(${1:botid}, ${2:const user[]}, ${3:const message[]})"},
{"trigger": "IRC_SendRaw", "contents": "IRC_SendRaw(${1:botid}, ${2:const message[]})"},
{"trigger": "IRC_CreateGroup", "contents": "IRC_CreateGroup()"},
{"trigger": "IRC_DestroyGroup", "contents": "IRC_DestroyGroup(${1:groupid})"},
{"trigger": "IRC_AddToGroup", "contents": "IRC_AddToGroup(${1:groupid}, ${2:botid})"},
{"trigger": "IRC_RemoveFromGroup", "contents": "IRC_RemoveFromGroup(${1:groupid}, ${2:botid})"},
{"trigger": "IRC_GroupSay", "contents": "IRC_GroupSay(${1:groupid}, ${2:const target[]}, ${3:const message[]})"},
{"trigger": "IRC_GroupNotice", "contents": "IRC_GroupNotice(${1:groupid}, ${2:const target[]}, ${3:const message[]})"},
{"trigger": "IRC_SetIntData", "contents": "IRC_SetIntData(${1:botid}, ${2:data}, ${3:value})"},
{"trigger": "IRC_OnConnect", "contents": "IRC_OnConnect(${1:botid}, ${2:ip[]}, ${3:port})"},
{"trigger": "IRC_OnDisconnect", "contents": "IRC_OnDisconnect(${1:botid}, ${2:ip[]}, ${3:port}, ${4:reason[]})"},
{"trigger": "IRC_OnConnectAttempt", "contents": "IRC_OnConnectAttempt(${1:botid}, ${2:ip[]}, ${3:port})"},
{"trigger": "IRC_OnConnectAttemptFail", "contents": "IRC_OnConnectAttemptFail(${1:botid}, ${2:ip[]}, ${3:port}, ${4:reason[]})"},
{"trigger": "IRC_OnJoinChannel", "contents": "IRC_OnJoinChannel(${1:botid}, ${2:channel[]})"},
{"trigger": "IRC_OnLeaveChannel", "contents": "IRC_OnLeaveChannel(${1:botid}, ${2:channel[]}, ${3:message[]})"},
{"trigger": "IRC_OnInvitedToChannel", "contents": "IRC_OnInvitedToChannel(${1:botid}, ${2:channel[]}, ${3:invitinguser[]}, ${4:invitinghost[]})"},
{"trigger": "IRC_OnKickedFromChannel", "contents": "IRC_OnKickedFromChannel(${1:botid}, ${2:channel[]}, ${3:oppeduser[]}, ${4:oppedhost[]}, ${5:message[]})"},
{"trigger": "IRC_OnUserDisconnect", "contents": "IRC_OnUserDisconnect(${1:botid}, ${2:user[]}, ${3:host[]}, ${4:message[]})"},
{"trigger": "IRC_OnUserJoinChannel", "contents": "IRC_OnUserJoinChannel(${1:botid}, ${2:channel[]}, ${3:user[]}, ${4:host[]})"},
{"trigger": "IRC_OnUserLeaveChannel", "contents": "IRC_OnUserLeaveChannel(${1:botid}, ${2:channel[]}, ${3:user[]}, ${4:host[]}, ${5:message[]})"},
{"trigger": "IRC_OnUserKickedFromChannel", "contents": "IRC_OnUserKickedFromChannel(${1:botid}, ${2:channel[]}, ${3:kickeduser[]}, ${4:oppeduser[]}, ${5:oppedhost[]}, ${6:message[]})"},
{"trigger": "IRC_OnUserNickChange", "contents": "IRC_OnUserNickChange(${1:botid}, ${2:oldnick[]}, ${3:newnick[]}, ${4:host[]})"},
{"trigger": "IRC_OnUserSetChannelMode", "contents": "IRC_OnUserSetChannelMode(${1:botid}, ${2:channel[]}, ${3:user[]}, ${4:host[]}, ${5:mode[]})"},
{"trigger": "IRC_OnUserSetChannelTopic", "contents": "IRC_OnUserSetChannelTopic(${1:botid}, ${2:channel[]}, ${3:user[]}, ${4:host[]}, ${5:topic[]})"},
{"trigger": "IRC_OnUserSay", "contents": "IRC_OnUserSay(${1:botid}, ${2:recipient[]}, ${3:user[]}, ${4:host[]}, ${5:message[]})"},
{"trigger": "IRC_OnUserNotice", "contents": "IRC_OnUserNotice(${1:botid}, ${2:recipient[]}, ${3:user[]}, ${4:host[]}, ${5:message[]})"},
{"trigger": "IRC_OnUserRequestCTCP", "contents": "IRC_OnUserRequestCTCP(${1:botid}, ${2:user[]}, ${3:host[]}, ${4:message[]})"},
{"trigger": "IRC_OnUserReplyCTCP", "contents": "IRC_OnUserReplyCTCP(${1:botid}, ${2:user[]}, ${3:host[]}, ${4:message[]})"},
{"trigger": "IRC_OnReceiveNumeric", "contents": "IRC_OnReceiveNumeric(${1:botid}, ${2:numeric}, ${3:message[]})"},
{"trigger": "IRC_OnReceiveRaw", "contents": "IRC_OnReceiveRaw(${1:botid}, ${2:message[]})"},
{"trigger": "IRC_IsVoice", "contents": "IRC_IsVoice(${1:botid}, ${2:channel[]}, ${3:user[]})"},
{"trigger": "IRC_IsHalfop", "contents": "IRC_IsHalfop(${1:botid}, ${2:channel[]}, ${3:user[]})"},
{"trigger": "IRC_IsOp", "contents": "IRC_IsOp(${1:botid}, ${2:channel[]}, ${3:user[]})"},
{"trigger": "IRC_IsAdmin", "contents": "IRC_IsAdmin(${1:botid}, ${2:channel[]}, ${3:user[]})"},
{"trigger": "IRC_IsOwner", "contents": "IRC_IsOwner(${1:botid}, ${2:channel[]}, ${3:user[]})"}
]
}